/* Global travel brand system */
:root {
  --bg: #f6f3ec;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --text: #102033;
  --muted: #5b6574;
  --line: rgba(16, 32, 51, 0.08);
  --primary: #0f766e;
  --primary-strong: #115e59;
  --accent: #ca8a04;
  --accent-soft: #fef3c7;
  --shadow: 0 24px 70px rgba(15, 32, 51, 0.12);
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.11), transparent 26%),
    radial-gradient(circle at top right, rgba(202, 138, 4, 0.11), transparent 22%),
    linear-gradient(180deg, #fbfaf7 0%, #f4efe4 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(15, 118, 110, 0.08), transparent 16%),
    radial-gradient(circle at 85% 10%, rgba(202, 138, 4, 0.07), transparent 18%);
  z-index: -1;
}

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

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

input, select, textarea {
  width: 100%;
  border: 1px solid rgba(16, 32, 51, 0.14);
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  font: inherit;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: rgba(15, 118, 110, 0.7);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

table { width: 100%; border-collapse: collapse; overflow: hidden; }
th, td { padding: 0.85rem 1rem; text-align: left; border-bottom: 1px solid var(--line); }
th { background: rgba(15, 118, 110, 0.04); }

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.95rem 1.45rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, #0ea5a4 100%);
  box-shadow: 0 18px 36px rgba(15, 118, 110, 0.24);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 40px rgba(15, 118, 110, 0.26);
}

.btn-secondary {
  color: var(--primary-strong);
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(15, 118, 110, 0.14);
}
.btn-secondary:hover {
  transform: translateY(-1px);
  background: #fff;
}

.card-surface {
  background: var(--surface);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.section-title {
  font-size: clamp(2.4rem, 4vw, 4.85rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 64rem;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: 2.25rem;
  background:
    linear-gradient(135deg, rgba(16, 32, 51, 0.84), rgba(16, 32, 51, 0.42)),
    linear-gradient(135deg, rgba(15, 118, 110, 0.75), rgba(202, 138, 4, 0.56));
  color: #fff;
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 20%),
    radial-gradient(circle at 90% 15%, rgba(255, 255, 255, 0.12), transparent 18%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stat-chip,
.info-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 600;
}

.feature-tile {
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.82));
  border: 1px solid rgba(16, 32, 51, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 18px 45px rgba(15, 32, 51, 0.08);
}

.soft-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.38rem 0.8rem;
  background: var(--accent-soft);
  color: #92400e;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.line-clamp-2, .line-clamp-3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-2 { -webkit-line-clamp: 2; }
.line-clamp-3 { -webkit-line-clamp: 3; }

.shadow-soft { box-shadow: 0 18px 45px rgba(15, 32, 51, 0.08); }
.rounded-3xl { border-radius: 1.5rem; }
.text-brand { color: var(--primary); }
.bg-brand-soft { background: rgba(15, 118, 110, 0.1); }

.input-field {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(16, 32, 51, 0.14);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
}

.input-field:focus {
  outline: none;
  border-color: rgba(15, 118, 110, 0.7);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.input-field::placeholder {
  color: rgba(51, 65, 85, 0.6);
}

.card-surface :is(input, textarea, select) {
  color: var(--ink);
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-shell {
  max-width: 84rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.page-section { padding: 5rem 0; }

.travel-grid {
  display: grid;
  gap: 1.5rem;
}

.travel-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(16, 32, 51, 0.08);
  box-shadow: 0 20px 50px rgba(15, 32, 51, 0.08);
}

.travel-card img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
}

.package-card-image-frame {
  height: 16rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
}

.travel-card img.package-card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.floating-nav {
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(16, 32, 51, 0.08);
  backdrop-filter: blur(20px);
}

.footer-gradient {
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.22), transparent 22%),
    radial-gradient(circle at top right, rgba(202, 138, 4, 0.16), transparent 20%),
    #0f172a;
}

@media (max-width: 768px) {
  .section-title { font-size: clamp(2.2rem, 12vw, 3.4rem); }
  .page-section { padding: 3.75rem 0; }
}
