/* ============================================================
   Tinglem's Travel — Production Stylesheet
   ============================================================ */

:root {
  --primary: #1a56db;
  --primary-dark: #1341b0;
  --primary-light: #e8effc;
  --primary-50: #eff6ff;
  --accent: #0b6e4f;
  --accent-light: #ecfdf5;
  --success: #059669;
  --text: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --bg: #f8fafc;
  --white: #ffffff;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 2px rgb(0 0 0 / 0.05);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.07), 0 2px 4px -2px rgb(0 0 0 / 0.05);
  --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.05);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.08);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: 0.2s ease;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.25;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--text);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  transition: all var(--transition);
  white-space: nowrap;
  border: 1.5px solid transparent;
  line-height: 1.4;
}

.btn svg {
  flex-shrink: 0;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(26, 86, 219, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26, 86, 219, 0.4);
}

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

.btn-secondary:hover {
  background: var(--primary-light);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

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

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  border-radius: 10px;
  padding: 12px 20px;
}

.btn-whatsapp:hover {
  background: #1da851;
}

.btn-call {
  background: var(--primary);
  color: white;
  border-radius: 10px;
  padding: 12px 20px;
}

.btn-call:hover {
  background: var(--primary-dark);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.btn-block {
  width: 100%;
}

.btn-next {
  width: 100%;
  margin-top: 28px;
  padding: 14px 24px;
  font-size: 15px;
  border-radius: 12px;
}

/* Navbar */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.tagline {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 500;
}

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

.nav-links a {
  padding: 8px 13px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: all 0.15s;
  position: relative;
}

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

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

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 13px;
  right: 13px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 8px;
}

.mobile-menu-btn:hover {
  background: var(--border-light);
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s;
  margin: 0 auto;
}

.mobile-menu-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: calc(100dvh - var(--nav-height));
  max-height: calc(100dvh - var(--nav-height));
  background: var(--white);
  z-index: 9999;
  padding: 20px 24px;
  overflow-y: auto;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--border);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 10px;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: var(--primary-light);
  color: var(--primary);
}

.mobile-nav .btn {
  margin-top: 16px;
}

/* Home Hero */

.hero-home {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-home .hero-bg {
  position: absolute;
  inset: 0;
}

.hero-home .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-home .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(8, 20, 40, 0.9) 0%,
    rgba(8, 20, 40, 0.75) 40%,
    rgba(8, 20, 40, 0.45) 70%,
    rgba(8, 20, 40, 0.3) 100%
  );
}

.hero-home .hero-content {
  position: relative;
  z-index: 2;
  padding: 64px 0 80px;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero-home h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.hero-home .hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin-bottom: 32px;
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.hero-stat strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
}

.hero-stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* Sections */

.section {
  padding: 72px 0;
}

.section-sm {
  padding: 48px 0;
}

.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 48px;
}

.section-header .eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: clamp(24px, 3.5vw, 32px);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Feature cards */

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

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #c7d7fe;
  transform: translateY(-3px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Destination cards */

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

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

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

.dest-card-lg .dest-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.dest-card-lg .dest-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.dest-card-lg .dest-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.95);
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 999px;
}

.dest-card-lg .dest-body {
  padding: 18px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dest-card-lg h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.dest-card-lg p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 14px;
  flex: 1;
  line-height: 1.5;
}

.dest-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.dest-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
}

.dest-price span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

/* How it works */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-card::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: var(--primary);
  color: white;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(26, 86, 219, 0.3);
}

.step-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Values */

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

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.value-item .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-item strong {
  display: block;
  font-size: 14.5px;
  margin-bottom: 2px;
}

.value-item span {
  font-size: 13px;
  color: var(--text-muted);
}

/* CTA band */

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  color: white;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0b6e4f 100%);
}

.cta-band h2 {
  color: white;
  font-size: clamp(24px, 3vw, 30px);
  margin-bottom: 12px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  max-width: 480px;
  margin-bottom: 24px;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Page hero (inner) */

.page-hero {
  position: relative;
  padding: 64px 0 56px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  color: white;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=60') center/cover;
  opacity: 0.25;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
}

.page-hero .breadcrumb a:hover {
  color: white;
}

.page-hero h1 {
  color: white;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
}

/* Booking hero */

.hero-booking {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-booking .hero-bg {
  position: absolute;
  inset: 0;
}

.hero-booking .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-booking .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 25, 47, 0.88) 0%,
    rgba(10, 25, 47, 0.72) 45%,
    rgba(10, 25, 47, 0.35) 70%,
    rgba(10, 25, 47, 0.2) 100%
  );
}

.hero-booking .hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 56px;
}

.hero-booking .hero-text h1 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero-booking .hero-sub {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 10px;
}

.hero-booking .hero-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 440px;
  margin-bottom: 28px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 10px 14px;
  color: white;
}

.badge svg {
  flex-shrink: 0;
  opacity: 0.9;
}

.badge strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
}

.badge span {
  font-size: 11.5px;
  opacity: 0.75;
}

.hero-vehicle {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.vehicle-img {
  max-width: 420px;
  width: 100%;
  border-radius: 12px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
  object-fit: contain;
}

/* Booking form */

.booking-section {
  margin-top: -48px;
  position: relative;
  z-index: 10;
  padding-bottom: 40px;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

.booking-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px 32px 32px;
  border: 1px solid var(--border);
}

.form-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.form-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-header h2 {
  font-size: 20px;
}

.form-header p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: 2px;
}

.steps {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e2e8f0;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step span {
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.step.active .step-num {
  background: var(--primary);
  color: white;
  box-shadow: 0 0 0 4px rgba(26, 86, 219, 0.2);
}

.step.active span {
  color: var(--primary);
  font-weight: 600;
}

.step-line {
  flex: 1;
  height: 2px;
  background: #e2e8f0;
  margin: 0 8px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 18px;
}

.label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.label svg {
  color: var(--primary);
  opacity: 0.8;
}

.input {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.12);
}

.input::placeholder {
  color: #94a3b8;
}

.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.select.small {
  min-width: 70px;
}

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

.trip-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.trip-type-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 12px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  transition: all 0.2s;
  text-align: center;
}

.trip-type-btn svg {
  color: var(--text-muted);
}

.trip-type-btn strong {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
}

.trip-type-btn span {
  font-size: 11.5px;
  color: var(--text-muted);
}

.trip-type-btn:hover {
  border-color: #93c5fd;
  background: #f0f7ff;
}

.trip-type-btn.active {
  border-color: var(--primary);
  background: var(--primary-light);
  box-shadow: 0 0 0 1px var(--primary);
}

.trip-type-btn.active svg,
.trip-type-btn.active strong {
  color: var(--primary);
}

.travelers-row {
  display: flex;
  gap: 12px;
}

.traveler-field {
  flex: 1;
}

.traveler-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 500;
}

.suggested {
  margin-top: 8px;
}

.suggested h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.suggested h3 span {
  font-weight: 400;
  color: var(--text-muted);
}

.dest-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.dest-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  background: var(--white);
  transition: all 0.2s;
  text-align: left;
  padding: 0;
  cursor: pointer;
}

.dest-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(26, 86, 219, 0.12);
  transform: translateY(-2px);
}

.dest-card img {
  width: 100%;
  height: 72px;
  object-fit: cover;
}

.dest-info {
  padding: 8px 10px 10px;
}

.dest-info strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.dest-info span {
  font-size: 10.5px;
  color: var(--text-muted);
}

.dest-card.view-all {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-color: #bfdbfe;
  min-height: 110px;
}

.dest-card.view-all span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary);
  text-align: center;
  line-height: 1.4;
}

.dest-card.selected {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}

/* Summary */

.summary-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 24px;
  position: sticky;
  top: calc(var(--nav-height) + 16px);
}

.summary-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.summary-header svg {
  color: var(--primary);
}

.summary-header h3 {
  font-size: 16px;
}

.summary-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.summary-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
}

.summary-list svg {
  color: var(--primary);
  flex-shrink: 0;
  opacity: 0.85;
}

.price-box {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border-radius: 12px;
  padding: 16px 18px;
  text-align: center;
  margin-bottom: 16px;
  border: 1px solid #a7f3d0;
}

.price-label {
  display: block;
  font-size: 12.5px;
  color: #047857;
  font-weight: 500;
  margin-bottom: 4px;
}

.price-value {
  font-size: 28px;
  font-weight: 800;
  color: #065f46;
}

.price-note {
  font-size: 12px;
  color: #059669;
}

.support-note {
  display: flex;
  gap: 10px;
  background: #eff6ff;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 18px;
  border: 1px solid #dbeafe;
}

.support-note svg {
  color: #3b82f6;
  flex-shrink: 0;
  margin-top: 2px;
}

.support-note p {
  font-size: 12.5px;
  color: #1e40af;
  line-height: 1.45;
}

.explore-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 200px;
}

.explore-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.explore-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.2) 60%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  color: white;
}

.explore-overlay h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 4px;
  color: white;
}

.explore-overlay p {
  font-size: 12.5px;
  opacity: 0.85;
  margin-bottom: 12px;
}

.explore-overlay .btn {
  align-self: flex-start;
  padding: 8px 16px;
  font-size: 12.5px;
}

/* Trust bar */

.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.trust-item span {
  font-size: 12.5px;
  color: var(--text-muted);
}

/* FAQ */

.faq-section {
  padding: 48px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: start;
}

.faq-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: var(--shadow);
}

.faq-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.faq-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-header h3 {
  font-size: 17px;
}

.faq-header p {
  font-size: 13px;
  color: var(--text-muted);
}

.accordion {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.acc-item {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.15s;
}

.acc-item.open {
  border-color: var(--primary);
}

.acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  background: var(--white);
}

.acc-btn:hover {
  background: #f8fafc;
}

.acc-btn svg {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.2s;
}

.acc-item.open .acc-btn svg {
  transform: rotate(180deg);
  color: var(--primary);
}

.acc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.acc-item.open .acc-content {
  max-height: 200px;
}

.acc-content p {
  padding: 0 16px 14px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

.help-card {
  background: linear-gradient(160deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: var(--radius-lg);
  border: 1px solid #bfdbfe;
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.help-icon {
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(26, 86, 219, 0.15);
}

.help-card h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.help-card > p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

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

/* Bottom CTA */

.cta-section {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(10, 25, 47, 0.85) 0%,
    rgba(10, 25, 47, 0.6) 50%,
    rgba(10, 25, 47, 0.4) 100%
  );
}

.cta-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 48px;
}

.cta-text h2 {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}

.cta-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 480px;
  margin-bottom: 24px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.traveler-silhouette {
  width: 140px;
  opacity: 0.9;
}

.traveler-silhouette svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
}

.quote {
  font-size: 15px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Gallery */

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

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.25s;
}

.gallery-item:hover .caption {
  opacity: 1;
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.about-content h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.about-content p {
  font-size: 15.5px;
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.7;
}

.about-content .btn {
  margin-top: 12px;
}

/* Contact */

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

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 15px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-method .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}

.contact-method span,
.contact-method a {
  font-size: 14px;
  color: var(--text-muted);
}

.contact-method a:hover {
  color: var(--primary);
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

.contact-form-card h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

.contact-form-card .form-group {
  margin-bottom: 16px;
}

.contact-form-card label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-form-card textarea.input {
  min-height: 120px;
  resize: vertical;
}

/* Auth */

.auth-section {
  min-height: calc(100vh - var(--nav-height) - 200px);
  display: flex;
  align-items: center;
  padding: 48px 0;
}

.auth-card {
  max-width: 420px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}

.auth-card h1 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 8px;
}

.auth-card .subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 28px;
}

.auth-tabs {
  display: flex;
  background: var(--border-light);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 24px;
}

.auth-tab {
  flex: 1;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  color: var(--text-muted);
  transition: all 0.15s;
}

.auth-tab.active {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.auth-form .form-group {
  margin-bottom: 16px;
}

.auth-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.auth-form .btn {
  width: 100%;
  margin-top: 8px;
  border-radius: 10px;
  padding: 13px;
}

.auth-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 13.5px;
  color: var(--text-muted);
}

.auth-footer a {
  color: var(--primary);
  font-weight: 600;
}

.auth-footer a:hover {
  text-decoration: underline;
}

/* Charity */

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

.mission-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}

.mission-card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.mission-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Footer */

.footer {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 56px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  margin-bottom: 14px;
}

.footer-brand .brand {
  color: white;
}

.footer-brand .tagline {
  color: rgba(255, 255, 255, 0.5);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 12px;
  max-width: 280px;
}

.footer-col h4 {
  color: white;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.15s;
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.15s;
}

.footer-social a:hover {
  background: var(--primary);
  color: white;
}

/* Responsive */

@media (max-width: 1024px) {
  .features-grid,
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .summary-card {
    position: static;
    order: -1;
  }

  .dest-cards {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .hero-booking .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-vehicle {
    display: none;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 768px) {
  .nav-links,
  .nav-actions .btn-login {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-home {
    min-height: 520px;
  }

  .hero-home .hero-content {
    padding: 48px 0 56px;
  }

  .features-grid,
  .dest-grid,
  .steps-grid,
  .values-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trip-type-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .cta-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

  .cta-visual {
    display: none;
  }

  .booking-form-card {
    padding: 20px;
  }

  .cta-band {
    padding: 40px 24px;
    text-align: center;
  }

  .cta-band-actions {
    justify-content: center;
  }

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

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

  .section {
    padding: 56px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-badges {
    flex-direction: column;
  }

  .help-actions {
    flex-direction: column;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .auth-card {
    padding: 28px 20px;
  }
}

/* AM/PM Toggle */

.time-group {
  display: flex;
  gap: 10px;
  align-items: center;
}

.ampm-toggle {
  display: flex;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.ampm-btn {
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  background: var(--white);
  color: var(--text-muted);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.ampm-btn:hover {
  background: var(--border-light);
}

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

/* ============================================
   Charity Page Styles
   ============================================ */

/* Charity Hero */

.charity-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
}

.charity-hero .hero-bg {
  position: absolute;
  inset: 0;
}

.charity-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.charity-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 25, 47, 0.88) 0%,
    rgba(10, 25, 47, 0.7) 50%,
    rgba(10, 25, 47, 0.4) 100%
  );
}

.charity-hero .container {
  position: relative;
  z-index: 2;
  padding-top: 48px;
  padding-bottom: 48px;
}

.charity-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
}

.charity-hero .breadcrumb a:hover {
  color: white;
}

.charity-hero h1 {
  color: white;
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.charity-hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  line-height: 1.6;
}

.charity-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.charity-hero .hero-badge svg {
  flex-shrink: 0;
}

/* Mission Section */

.mission-block {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.mission-block .icon-large {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: #ecfdf5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b6e4f;
}

.mission-block h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.mission-block p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.mission-block .quote-block {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border-left: 4px solid #f59e0b;
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
  margin-top: 24px;
  text-align: left;
}

.mission-block .quote-block p {
  font-size: 17px;
  font-style: italic;
  color: #0f172a;
  margin-bottom: 4px;
}

.mission-block .quote-block cite {
  font-size: 13px;
  font-style: normal;
  color: #64748b;
  font-weight: 500;
}

/* Church Project */

.church-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.church-story .church-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.church-story .church-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.church-story .church-content h2 {
  font-size: 26px;
  margin-bottom: 12px;
}

.church-story .church-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.church-story .church-content .status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ecfdf5;
  color: #0b6e4f;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-top: 8px;
}

.church-story .church-content .status-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #059669;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* Charity Gallery */

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

.charity-gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: #f1f5f9;
}

.charity-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.charity-gallery-item:hover img {
  transform: scale(1.05);
}

.charity-gallery-item .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: white;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.charity-gallery-item:hover .caption {
  opacity: 1;
}

.charity-gallery-item .caption span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  opacity: 0.8;
  margin-top: 2px;
}

.gallery-yt-btn {
  text-align: center;
  margin-top: 28px;
}

/* Projects */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.project-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.project-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.project-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-card .project-body {
  padding: 20px 24px 24px;
}

.project-card .project-body h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.project-card .project-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.project-card .project-body .status-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #0b6e4f;
}

.project-card .project-body .status-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #059669;
}

/* Donation Section */

.donation-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  color: white;
  text-align: center;
}

.donation-section h2 {
  color: white;
  font-size: 28px;
  margin-bottom: 12px;
}

.donation-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.donation-section .qr-placeholder {
  display: inline-block;
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 16px;
}

.donation-section .qr-placeholder .qr-box {
  width: 200px;
  height: 200px;
  background: #e2e8f0;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
  border: 2px dashed #94a3b8;
}

.donation-section .qr-placeholder .qr-box svg {
  margin-right: 8px;
}

.donation-section .donation-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  max-width: 440px;
  margin: 0 auto;
}

.donation-section .donation-note strong {
  color: #fcd34d;
}

/* Testimonials */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-card .testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  border: 3px solid var(--primary-light);
}

.testimonial-card .testimonial-video {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 14px;
  background: #0f172a;
}

.testimonial-card .testimonial-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.testimonial-card blockquote {
  font-size: 14px;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 8px;
}

.testimonial-card cite {
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  color: var(--text);
}

/* CTA Charity */

.cta-charity {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
}

.cta-charity h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.cta-charity p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 24px;
}

.cta-charity .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Charity Responsive */

@media (max-width: 1024px) {
  .church-story {
    grid-template-columns: 1fr;
  }

  .church-story .church-image img {
    height: 280px;
  }

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

@media (max-width: 768px) {
  .charity-hero {
    min-height: 300px;
  }

  .charity-hero .container {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .charity-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .donation-section {
    padding: 32px 24px;
  }

  .donation-section .qr-placeholder .qr-box {
    width: 160px;
    height: 160px;
  }

  .cta-charity {
    padding: 32px 24px;
  }

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

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

@media (max-width: 480px) {
  .charity-gallery-grid {
    grid-template-columns: 1fr;
  }

  .church-story .church-image img {
    height: 200px;
  }

  .mission-block .quote-block {
    padding: 16px 20px;
  }

  .donation-section .qr-placeholder .qr-box {
    width: 140px;
    height: 140px;
    font-size: 12px;
  }
}

/* ============================================
   Destination Page Styles
   ============================================ */

/* Hero */

.dest-hero {
  position: relative;
  padding: 64px 0 56px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  color: white;
  overflow: hidden;
}

.dest-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=60') center/cover;
  opacity: 0.25;
}

.dest-hero .container {
  position: relative;
  z-index: 2;
}

.dest-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
}

.dest-hero .breadcrumb a:hover {
  color: white;
}

.dest-hero h1 {
  color: white;
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.dest-hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  line-height: 1.6;
}

/* Destination Grid */

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

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

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

.dest-card .dest-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
}

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

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

.dest-card .dest-body {
  padding: 20px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.dest-card .dest-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}

.dest-card .dest-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}

.dest-card .dest-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.dest-card .dest-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
}

.dest-card .dest-price span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

.dest-card .btn-book {
  padding: 8px 20px;
  font-size: 13px;
  border-radius: 8px;
  background: var(--primary);
  color: white;
  font-weight: 600;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.dest-card .btn-book:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 86, 219, 0.3);
}

/* CTA */

.cta-dest {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
}

.cta-dest h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.cta-dest p {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 24px;
}

.cta-dest .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* Destination Page Responsive */

@media (max-width: 1024px) {
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .dest-hero {
    padding: 48px 0 40px;
  }

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

  .dest-card .dest-img {
    height: 180px;
  }

  .cta-dest {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .dest-card .dest-img {
    height: 160px;
  }

  .dest-card .dest-body {
    padding: 16px 16px 20px;
  }

  .dest-card .dest-body h3 {
    font-size: 16px;
  }

  .dest-card .dest-body p {
    font-size: 13px;
  }

  .dest-card .dest-meta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .dest-card .btn-book {
    justify-content: center;
    padding: 10px;
  }
}

/* ============================================
   LIGHTBOX STYLES
   ============================================ */

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: default;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  object-fit: contain;
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 500;
  margin-top: 16px;
  text-align: center;
  padding: 0 20px;
  max-width: 600px;
}

/* Lightbox Navigation */

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: white;
  font-size: 36px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
  line-height: 1;
}

.lightbox-close:hover {
  transform: rotate(90deg);
  color: #ef4444;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 48px;
  font-weight: 300;
  cursor: pointer;
  padding: 20px 12px;
  transition: all 0.2s;
  user-select: none;
  z-index: 10;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.lightbox-prev {
  left: 12px;
}

.lightbox-next {
  right: 12px;
}

/* Responsive Lightbox */

@media (max-width: 768px) {
  .lightbox-close {
    top: 16px;
    right: 20px;
    font-size: 28px;
  }

  .lightbox-prev,
  .lightbox-next {
    font-size: 32px;
    padding: 12px 8px;
  }

  .lightbox-prev {
    left: 4px;
  }

  .lightbox-next {
    right: 4px;
  }

  .lightbox-content img {
    max-height: 70vh;
  }

  .lightbox-caption {
    font-size: 13px;
    margin-top: 12px;
  }
}

@media (max-width: 480px) {
  .lightbox-close {
    top: 12px;
    right: 16px;
    font-size: 24px;
  }

  .lightbox-prev,
  .lightbox-next {
    font-size: 24px;
    padding: 8px 6px;
  }

  .lightbox-content img {
    max-height: 60vh;
  }
}

.mobile-nav {
  z-index: 99999 !important;
}

.navbar {
  position: relative;
  z-index: 1000;
}

.mobile-menu-btn {
  position: relative;
  z-index: 10002;
}

.mobile-nav {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  z-index: 10001;
}

@media (max-width: 768px) {
  .mobile-nav {
    z-index: 10001;
  }

  .mobile-menu-btn {
    z-index: 10002;
  }
}

@media (min-width: 769px) {
  .mobile-nav {
    display: none !important;
  }

  .mobile-menu-btn {
    display: none !important;
  }
}

.legal-hero {
  padding: 78px 0 52px;
  background: #111315;
  color: #fff;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.legal-hero p {
  max-width: 760px;
  color: #b4bbc4;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: #9da5af;
  font-size: 13px;
}

.legal-wrap {
  padding: 64px 0;
  background: #f7f8fa;
}

.legal-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 95px;
  padding: 18px;
  border: 1px solid #e5e8ec;
  border-radius: 14px;
  background: #fff;
}

.legal-toc h2 {
  margin: 0 0 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.legal-toc a {
  display: block;
  padding: 5px 0;
  color: #66707b;
  font-size: 13px;
}

.legal-card {
  padding: 36px;
  border: 1px solid #e5e8ec;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.legal-card h2 {
  margin: 38px 0 10px;
  font-size: 27px;
  line-height: 1.2;
  scroll-margin-top: 110px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: #4c5560;
  font-size: 15px;
}

.legal-card ul {
  padding-left: 22px;
}

.legal-card li + li {
  margin-top: 8px;
}

.legal-note,
.legal-contact {
  padding: 15px 17px;
  border-radius: 12px;
  background: #f1f3f5;
  color: #4c5560;
  font-size: 14px;
}

.legal-contact {
  margin-top: 16px;
}

.legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #e5e8ec;
}

.legal-links a {
  font-weight: 700;
  font-size: 13px;
}

@media (max-width: 850px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

  .legal-card {
    padding: 24px;
  }
}
/* ============================================================
   CMS DYNAMIC GALLERY
   ============================================================ */

.dynamic-cms-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.dynamic-cms-gallery-item {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: #f1f5f9;
}

.dynamic-cms-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.dynamic-cms-gallery-item:hover img {
  transform: scale(1.05);
}

.dynamic-cms-gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  background: linear-gradient(
    transparent,
    rgba(0, 0, 0, 0.75)
  );
  color: white;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.dynamic-cms-gallery-item:hover .dynamic-cms-gallery-caption {
  opacity: 1;
}

@media (max-width: 1024px) {
  .dynamic-cms-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .dynamic-cms-gallery {
    grid-template-columns: 1fr;
  }
}