/* ========================================
   SP Travel & Visa - Tour Listing Page
   Theme: Deep Navy + Gold
   ======================================== */

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

:root {
  --navy-900: #0a1628;
  --navy-800: #1a2744;
  --navy-700: #2d3f5f;
  --navy-600: #3d5278;
  --navy-100: #e8ecf3;
  --navy-50: #f4f6fb;
  --gold-600: #b8943f;
  --gold-500: #c9a962;
  --gold-400: #d4af37;
  --gold-300: #e6c978;
  --gold-100: #f9f1d9;
  --text-900: #0a1628;
  --text-700: #2d3f5f;
  --text-500: #5a6b8a;
  --text-400: #8a9bb8;
  --white: #ffffff;
  --bg-soft: #f8f9fc;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.08);
  --shadow-md: 0 4px 16px rgba(10, 22, 40, 0.1);
  --shadow-lg: 0 12px 40px rgba(10, 22, 40, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy-900);
}

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

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

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

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

.text-gold { color: var(--gold-400); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
}

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

.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  border-color: var(--gold-400);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 98, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold-400);
  color: var(--gold-400);
}

.btn-text {
  background: transparent;
  color: var(--navy-700);
  padding: 8px 12px;
  font-size: 13px;
}
.btn-text:hover {
  color: var(--gold-600);
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 98, 0.15);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(10, 22, 40, 0.95);
  box-shadow: var(--shadow-md);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.brand-logo {
  height: 48px;
  width: auto;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(201, 169, 98, 0.35);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
}

.brand-text small {
  color: var(--gold-400);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.main-nav {
  display: flex;
  gap: 32px;
}

.main-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
  position: relative;
}

.main-nav a:hover {
  color: var(--gold-400);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-400);
  transition: width 0.3s;
}

.main-nav a:hover::after {
  width: 100%;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(201,169,98,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(26,39,68,0.5) 0%, transparent 50%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,98,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,98,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.3) 0%, rgba(10,22,40,0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 80px 24px 120px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold-400);
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 6px 20px;
  border: 1px solid rgba(201,169,98,0.3);
  border-radius: 100px;
  background: rgba(201,169,98,0.08);
}

.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--white);
  letter-spacing: -1px;
}

.hero-title .text-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

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

.stat {
  text-align: center;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* --- Section Common --- */
.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold-600);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 12px;
}

.section-desc {
  color: var(--text-500);
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
}

/* --- Why Us --- */
.why-us {
  padding: 100px 0;
  background: var(--bg-soft);
}

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

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(10,22,40,0.05);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,169,98,0.3);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

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

/* --- Tour Section --- */
.tour-section {
  padding: 100px 0;
  background: var(--white);
}

/* --- Filters --- */
.filters {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: 28px;
  margin-bottom: 40px;
  border: 1px solid rgba(10,22,40,0.06);
}

.filter-group {
  margin-bottom: 24px;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-800);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.filter-label svg {
  color: var(--gold-600);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  background: var(--navy-50);
  color: var(--navy-700);
  border: 1px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.chip:hover {
  background: var(--navy-100);
  color: var(--navy-900);
}

.chip.active {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--gold-400);
  border-color: var(--gold-500);
}

.filter-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

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

.result-count {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-500);
}

.result-count strong {
  color: var(--navy-900);
  font-weight: 700;
}

/* --- Tour Grid --- */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(10,22,40,0.06);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,169,98,0.3);
}

.tour-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--navy-100);
}

.tour-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.tour-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(201,169,98,0.4);
}

.tour-badge.hot {
  background: linear-gradient(135deg, #e74c3c, #ff6b6b);
  color: var(--white);
}

.tour-market-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  background: rgba(10, 22, 40, 0.75);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

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

.tour-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 42px;
}

.tour-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-500);
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.tour-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.tour-meta .dot {
  width: 3px;
  height: 3px;
  background: var(--text-400);
  border-radius: 50%;
}

.tour-footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--navy-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tour-price {
  display: flex;
  flex-direction: column;
}

.tour-price .from {
  font-size: 11px;
  color: var(--text-400);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.tour-price .price {
  font-size: 18px;
  font-weight: 800;
  color: var(--gold-600);
  font-family: 'Playfair Display', serif;
}

.tour-btn {
  padding: 8px 14px;
  background: var(--navy-900);
  color: var(--gold-400);
  font-size: 12px;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
}

.tour-btn:hover {
  background: var(--navy-700);
  transform: translateX(2px);
}

/* --- Empty State --- */
.empty-state {
  text-align: center;
  padding: 80px 24px;
}

.empty-state svg {
  margin-bottom: 20px;
}

.empty-state h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.empty-state p {
  color: var(--text-500);
  margin-bottom: 24px;
}

/* --- CTA Section --- */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,169,98,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,169,98,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
}

.cta-text h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-text p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 540px;
}

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

.cta-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,98,0.2);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.cta-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.cta-card h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 8px;
}

.cta-phone {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--gold-400);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.cta-card p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

/* --- Footer --- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

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

.footer-col h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.footer-links svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold-500);
}

.footer-links a:hover {
  color: var(--gold-400);
}

.footer-brand .brand-text strong {
  font-size: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* --- Floating CTA --- */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 13px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(20px);
  animation: floatIn 0.5s forwards;
}

.float-btn:nth-child(1) { animation-delay: 0.1s; }
.float-btn:nth-child(2) { animation-delay: 0.2s; }
.float-btn:nth-child(3) { animation-delay: 0.3s; }

@keyframes floatIn {
  to { opacity: 1; transform: translateX(0); }
}

.float-btn:hover {
  transform: translateX(-4px);
  box-shadow: 0 16px 40px rgba(10,22,40,0.3);
}

.float-zalo {
  background: #0091ff;
  color: var(--white);
}
.float-zalo:hover { background: #0077cc; }

.float-messenger {
  background: #0084ff;
  color: var(--white);
}
.float-messenger:hover { background: #006dd6; }

.float-call {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
}
.float-call:hover {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
}

/* --- Modal --- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.active {
  display: flex;
  animation: modalFadeIn 0.3s;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.7);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: #fff;
  border-radius: 16px;
  max-width: 560px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 20px 60px rgba(10, 22, 40, 0.3), 0 0 0 1px rgba(212, 175, 55, 0.1);
  animation: modalSlideUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 999;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: #0a1628;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  border: 2px solid var(--gold);
  cursor: pointer;
  pointer-events: auto;
}

.modal-close:hover {
  background: #fff;
  transform: rotate(90deg) scale(1.1);
}

/* Hero image with overlay - LUXURY */
.modal-hero-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.modal-hero-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  filter: saturate(1.1) contrast(1.05);
}

.modal-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.15) 0%, rgba(10,22,40,0) 30%, rgba(10,22,40,0) 60%, rgba(10,22,40,0.4) 100%);
  pointer-events: none;
}

.modal-body {
  padding: 0;
}

.modal-inner {
  padding: 24px 28px 28px;
}

.modal-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 16px;
  line-height: 1.3;
}

/* Meta icons row */
.modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
  padding: 16px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.modal-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  font-size: 13px;
  font-weight: 500;
}

.modal-meta .meta-item svg {
  color: #d4af37;
  flex-shrink: 0;
}

.modal-meta .meta-value {
  font-size: 13px;
  font-weight: 600;
  color: #0a1628;
}

/* Price box - LUXURY */
.modal-price-box {
  background: linear-gradient(135deg, #0a1628 0%, #1e293b 100%);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.modal-price-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.modal-price-box .from-text {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
  letter-spacing: 2px;
  font-weight: 500;
}

.modal-price-box .big-price {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  color: #f4d03f;
  margin-bottom: 2px;
  text-shadow: 0 2px 10px rgba(244, 208, 63, 0.2);
}

.modal-price-box .per-person {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.modal-book-btn {
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%) !important;
  color: #0a1628 !important;
  font-weight: 700 !important;
  border: none !important;
  transition: all 0.3s ease !important;
  position: relative;
  overflow: hidden;
}

.modal-book-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.modal-book-btn:hover {
  background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.modal-book-btn:hover::before {
  left: 100%;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-grid { grid-template-columns: repeat(3, 1fr); }
  .filter-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .modal { padding: 12px; }
  .modal-content { max-width: 100%; max-height: 92vh; }
  .modal-inner { padding: 20px; }
  .modal-inner h2 { font-size: 20px; }
  .modal-hero-img { aspect-ratio: 16 / 10; }
  .modal-meta { gap: 10px; padding: 12px 0; }
  .modal-meta .meta-item { font-size: 12px; }
  .modal-price-box { padding: 20px; }
  .modal-price-box .big-price { font-size: 26px; }
  .main-nav { display: none; }
  .nav-wrap { height: 60px; }
  .brand-logo { height: 42px; }
  .brand-text { display: none; }

  .hero { padding-top: 60px; min-height: auto; }
  .hero-content { padding: 60px 20px 80px; }
  .hero-title { font-size: 32px; }
  .hero-sub { font-size: 15px; }
  .hero-stats { gap: 24px; }
  .stat-num { font-size: 26px; }

  .why-us, .tour-section, .cta-section { padding: 60px 0; }

  .features-grid { grid-template-columns: 1fr; }
  .tour-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .filter-row { grid-template-columns: 1fr; }

  .filters { padding: 20px; }
  .tour-body { padding: 14px; }
  .tour-name { font-size: 14px; min-height: 38px; }
  .tour-price .price { font-size: 16px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer { padding: 60px 0 0; }

  .cta-inner { gap: 24px; }
  .cta-phone { font-size: 26px; }

  .floating-cta { bottom: 16px; right: 16px; }
  .float-btn span { display: none; }
  .float-btn { padding: 14px; width: 54px; height: 54px; justify-content: center; }

  .modal-inner { padding: 24px; }
  .modal-inner h2 { font-size: 22px; }
  .modal-price-box .big-price { font-size: 28px; }
}

@media (max-width: 480px) {
  .tour-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn-lg { justify-content: center; }
}
