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

:root {
  --orange: #FF5A1F;
  --orange-light: #FF7A45;
  --orange-dark: #E04A10;
  --sky: #87CEEB;
  --sky-light: #B8E3F5;
  --sand: #F5E6D3;
  --sand-dark: #E8D4BC;
  --gold: #D4A853;
  --dark: #1A1A2E;
  --darker: #0F0F1A;
  --text: #222222;
  --text-secondary: #717171;
  --text-light: #6A6A6A;
  --border: #DDDDDD;
  --border-light: #EBEBEB;
  --white: #FFFFFF;
  --bg: #FFFFFF;
  --hover-bg: #F7F7F7;
  --gray-50: #F8F9FA;
  --gray-100: #F1F3F5;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-card: 0 6px 20px rgba(0,0,0,0.08);
  --radius: 12px;
  --radius-lg: 16px;
  --nav-height: 80px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  height: var(--nav-height);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Full-width nav for search page */
.body-search .nav-inner { max-width: 100%; }

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: white; font-weight: 800;
  box-shadow: 0 4px 12px rgba(255,90,31,0.3);
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; color: var(--dark);
}
.logo-text span { color: var(--orange); }

/* Nav Tabs */
.nav-tabs {
  display: flex; gap: 4px;
  background: var(--gray-100); padding: 4px; border-radius: 40px;
}
.nav-tab {
  padding: 10px 20px; border-radius: 36px;
  font-family: inherit; font-size: 14px; font-weight: 600;
  color: var(--text-light); text-decoration: none;
  transition: all 0.25s; position: relative;
}
.nav-tab.active { background: var(--white); color: var(--dark); box-shadow: var(--shadow-sm); }
.nav-tab:hover:not(.active) { color: var(--dark); }
.nav-tab .badge {
  position: absolute; top: 4px; right: 6px;
  background: var(--orange); color: white;
  font-size: 9px; padding: 2px 6px; border-radius: 10px; font-weight: 700;
}

/* Search Pill */
.search-pill {
  display: flex; align-items: center;
  border: 1px solid var(--border); border-radius: 40px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
  height: 48px; cursor: pointer; transition: box-shadow 0.2s; overflow: hidden;
}
.search-pill:hover { box-shadow: 0 2px 4px rgba(0,0,0,0.18); }
.pill-section {
  padding: 0 20px; display: flex; align-items: center; height: 100%;
  font-size: 14px; font-weight: 600; color: var(--text); white-space: nowrap;
  border-right: 1px solid var(--border-light);
}
.pill-section:last-of-type { border-right: none; }
.pill-section.light { font-weight: 400; color: var(--text-secondary); }
.pill-section .icon-left { margin-right: 8px; font-size: 16px; }
.pill-search-btn {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%; border: none;
  display: flex; align-items: center; justify-content: center;
  margin: 0 7px 0 4px; cursor: pointer; flex-shrink: 0;
}
.pill-search-btn svg { width: 14px; height: 14px; stroke: white; }

/* Nav Right */
.nav-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-btn-text {
  padding: 10px 16px; border: none; background: transparent;
  font-family: inherit; font-size: 14px; font-weight: 600;
  color: var(--text); cursor: pointer; border-radius: 24px; transition: background 0.15s;
}
.nav-btn-text:hover { background: var(--hover-bg); }
.nav-menu-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 5px 5px 5px 12px; border: 1px solid var(--border);
  border-radius: 40px; cursor: pointer; transition: box-shadow 0.2s; background: var(--white);
}
.nav-menu-btn:hover { box-shadow: 0 2px 4px rgba(0,0,0,0.18); }
.menu-icon { display: flex; flex-direction: column; gap: 3px; }
.menu-icon span { display: block; width: 16px; height: 2px; background: var(--text); border-radius: 1px; }
.avatar-sm {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 13px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed; top: var(--nav-height); right: 16px;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-xl); border: 1px solid var(--border-light);
  z-index: 99; min-width: 220px;
  display: none; flex-direction: column;
  overflow: hidden;
}
.mobile-menu.show { display: flex; }
.mobile-menu a {
  padding: 14px 20px; font-size: 14px; font-weight: 500; color: var(--text);
  border-bottom: 1px solid var(--border-light); transition: background 0.15s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { background: var(--hover-bg); }

/* ============ HERO ============ */
.hero { padding-top: var(--nav-height); position: relative; overflow: hidden; }
.hero-bg {
  position: relative; height: 520px;
  background: linear-gradient(135deg, var(--dark) 0%, #16213E 50%, #0F3460 100%);
  overflow: hidden;
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.float-element { position: absolute; border-radius: 50%; opacity: 0.15; }
.float-1 { width: 300px; height: 300px; background: var(--orange); top: -80px; right: -60px; animation: float 8s ease-in-out infinite; }
.float-2 { width: 200px; height: 200px; background: var(--sky); bottom: -40px; left: -40px; animation: float 6s ease-in-out infinite reverse; }

.hero-content {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto; padding: 60px 24px; text-align: center;
}
.hero-tagline {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  padding: 8px 20px; border-radius: 30px; border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 500;
  margin-bottom: 24px; animation: fadeInUp 0.6s ease;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px); font-weight: 700;
  color: white; line-height: 1.15; margin-bottom: 16px;
  animation: fadeInUp 0.6s ease 0.1s both;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--orange-light), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: 18px; color: rgba(255,255,255,0.7);
  max-width: 600px; margin: 0 auto; animation: fadeInUp 0.6s ease 0.2s both;
}

/* ============ SEARCH BAR (Home) ============ */
.search-container {
  max-width: 900px; margin: -40px auto 0; padding: 0 24px;
  position: relative; z-index: 10; animation: fadeInUp 0.6s ease 0.3s both;
}
.search-bar {
  background: var(--white); border-radius: 80px; box-shadow: var(--shadow-xl);
  display: flex; align-items: center; padding: 8px; border: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.search-bar:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.search-field { flex: 1; padding: 14px 24px; cursor: pointer; border-radius: 40px; transition: background 0.2s; }
.search-field:hover { background: var(--gray-50); }
.search-field label { display: block; font-size: 12px; font-weight: 700; color: var(--dark); margin-bottom: 2px; cursor: pointer; }
.search-field span { font-size: 14px; color: var(--text-secondary); }
.search-divider { width: 1px; height: 32px; background: var(--border); }
.search-btn {
  width: 52px; height: 52px; border-radius: 50%; border: none;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white; cursor: pointer; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(255,90,31,0.4);
}
.search-btn:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(255,90,31,0.5); }
.search-btn svg { width: 20px; height: 20px; }

/* ============ CATEGORIES SCROLL ============ */
.categories { max-width: 1400px; margin: 40px auto 0; padding: 0 24px; }
.cat-scroll {
  display: flex; gap: 28px; overflow-x: auto; padding-bottom: 16px;
  scrollbar-width: none; border-bottom: 1px solid var(--border);
}
.cat-scroll::-webkit-scrollbar { display: none; }
.cat-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 12px 4px; cursor: pointer; border-bottom: 2px solid transparent;
  transition: all 0.2s; flex-shrink: 0; opacity: 0.7; text-decoration: none;
}
.cat-item:hover, .cat-item.active { opacity: 1; border-bottom-color: var(--dark); }
.cat-icon { font-size: 22px; }
.cat-label { font-size: 12px; font-weight: 600; color: var(--text-light); white-space: nowrap; }
.cat-item.active .cat-label, .cat-item:hover .cat-label { color: var(--dark); }

/* ============ EXPERIENCE STRIP ============ */
.experience-strip { max-width: 1400px; margin: 32px auto 0; padding: 0 24px; }
.experience-banner {
  background: linear-gradient(135deg, var(--sand), var(--sand-dark));
  border-radius: var(--radius-lg); padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; transition: transform 0.2s; text-decoration: none;
}
.experience-banner:hover { transform: translateY(-2px); }
.experience-banner-left { display: flex; align-items: center; gap: 16px; }
.experience-banner-text h4 { font-size: 15px; font-weight: 700; color: var(--dark); }
.experience-banner-text p { font-size: 13px; color: var(--text-light); }
.experience-banner-img {
  width: 50px; height: 50px; border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  display: flex; align-items: center; justify-content: center; font-size: 24px;
}

/* ============ TOUR CARDS ============ */
.tours-section { max-width: 1400px; margin: 32px auto 0; padding: 0 24px 60px; }
.tours-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 24px; }

.listing-card { cursor: pointer; transition: transform 0.15s; animation: fadeIn 0.4s ease both; }
.listing-card:hover { transform: scale(1.01); }

.card-img-wrap {
  position: relative; width: 100%; aspect-ratio: 20/19;
  border-radius: var(--radius); overflow: hidden; background: #f0f0f0;
}
.carousel-container { position: relative; width: 100%; height: 100%; }
.carousel-slides { display: flex; width: 100%; height: 100%; transition: transform 0.35s cubic-bezier(.4,0,.2,1); }
.carousel-slides img { width: 100%; height: 100%; object-fit: cover; flex-shrink: 0; }

.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.9); box-shadow: 0 2px 4px rgba(0,0,0,0.18);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s; z-index: 5;
}
.listing-card:hover .carousel-btn { opacity: 1; }
.carousel-btn.prev { left: 8px; }
.carousel-btn.next { right: 8px; }
.carousel-btn svg { width: 12px; height: 12px; stroke: var(--text); stroke-width: 3; fill: none; }

.carousel-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 4px; z-index: 5; }
.carousel-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.5); transition: all 0.2s; }
.carousel-dot.active { background: white; width: 7px; height: 7px; }

.card-badge-wrap { position: absolute; top: 10px; left: 10px; z-index: 5; }
.card-badge { background: var(--white); padding: 4px 10px; border-radius: 6px; font-size: 12px; font-weight: 700; color: var(--text); box-shadow: 0 2px 4px rgba(0,0,0,0.12); }

.card-heart-btn {
  position: absolute; top: 10px; right: 10px; z-index: 5;
  background: none; border: none; cursor: pointer; padding: 4px; transition: transform 0.15s;
}
.card-heart-btn:hover { transform: scale(1.15); }
.card-heart-btn svg { width: 24px; height: 24px; fill: rgba(0,0,0,0.4); stroke: white; stroke-width: 2; transition: fill 0.2s; }
.card-heart-btn.liked svg { fill: var(--orange); stroke: var(--orange); }

.card-details { padding: 10px 0 0; }
.card-top-row { display: flex; justify-content: space-between; align-items: flex-start; }
.card-name { font-size: 15px; font-weight: 600; color: var(--text); line-height: 1.35; }
.card-star { display: flex; align-items: center; gap: 3px; font-size: 14px; font-weight: 500; flex-shrink: 0; margin-left: 8px; }
.card-star svg { width: 13px; height: 13px; fill: var(--text); }
.card-subtitle { font-size: 14px; color: var(--text-secondary); margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card-meta { font-size: 14px; color: var(--text-secondary); margin-top: 1px; }
.card-price-row { margin-top: 6px; display: flex; align-items: baseline; gap: 4px; }
.card-price-old { font-size: 14px; color: var(--text-secondary); text-decoration: line-through; }
.card-price-current { font-size: 15px; font-weight: 700; color: var(--text); }
.card-price-unit { font-size: 14px; font-weight: 400; color: var(--text); }
.card-free-cancel { font-size: 13px; color: var(--text-secondary); margin-top: 2px; text-decoration: underline; }

/* ============ MODAL ============ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55); backdrop-filter: blur(4px);
  z-index: 2000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.25s; padding: 20px;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-content {
  background: var(--white); border-radius: var(--radius-lg);
  max-width: 640px; width: 100%; max-height: 90vh; overflow-y: auto;
  transform: translateY(16px) scale(0.98); transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}
.modal-overlay.active .modal-content { transform: translateY(0) scale(1); }
.modal-img-section { position: relative; width: 100%; aspect-ratio: 16/10; overflow: hidden; }
.modal-img-section img { width: 100%; height: 100%; object-fit: cover; }
.modal-close-btn {
  position: absolute; top: 16px; left: 16px;
  width: 36px; height: 36px; background: var(--white); border: none; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.18); font-size: 16px; z-index: 5;
}
.modal-body { padding: 24px; }
.modal-title { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.modal-info-row { display: flex; align-items: center; gap: 16px; font-size: 14px; color: var(--text-secondary); margin-bottom: 16px; flex-wrap: wrap; }
.modal-info-row .info-item { display: flex; align-items: center; gap: 4px; }
.modal-divider { border: none; border-top: 1px solid var(--border-light); margin: 16px 0; }
.modal-desc { font-size: 15px; color: var(--text); line-height: 1.65; margin-bottom: 20px; }
.modal-highlights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.modal-highlight {
  display: flex; align-items: center; gap: 10px;
  padding: 14px; background: var(--hover-bg); border-radius: var(--radius);
}
.modal-highlight .hl-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,90,31,0.08);
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.modal-highlight .hl-text { font-size: 13px; font-weight: 600; color: var(--text); }
.modal-price-bar { display: flex; align-items: center; justify-content: space-between; padding: 16px 0 0; border-top: 1px solid var(--border-light); }
.modal-price-info .old-price { font-size: 14px; color: var(--text-secondary); text-decoration: line-through; }
.modal-price-info .current-price { font-size: 20px; font-weight: 700; color: var(--text); }
.modal-price-info .price-unit { font-weight: 400; font-size: 15px; }
.modal-book-btn {
  padding: 14px 28px;
  background: linear-gradient(to right, var(--orange), var(--orange-dark));
  color: white; border: none; border-radius: 10px;
  font-family: inherit; font-size: 16px; font-weight: 700;
  cursor: pointer; box-shadow: 0 4px 12px rgba(255,90,31,0.35);
  transition: transform 0.15s;
}
.modal-book-btn:hover { transform: translateY(-1px); }

/* ============ SECTION HEADERS ============ */
.section-header { max-width: 1400px; margin: 60px auto 24px; padding: 0 24px; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--dark); }
.section-header p { font-size: 16px; color: var(--text-secondary); margin-top: 4px; }

/* ============ SERVICES ============ */
.services-section { max-width: 1400px; margin: 0 auto; padding: 0 24px 60px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.service-card {
  background: var(--gray-50); border-radius: var(--radius-lg); padding: 28px 24px;
  cursor: pointer; transition: all 0.3s ease; border: 1px solid transparent;
}
.service-card:hover { background: var(--white); border-color: var(--border); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 16px; }
.service-card h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.service-card p { font-size: 13px; color: var(--text-light); line-height: 1.5; }

/* ============ TEAM ============ */
.team-section { background: var(--gray-50); padding: 60px 0; }
.team-inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; margin-top: 32px; }
.team-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px;
  text-align: center; transition: all 0.3s ease; border: 1px solid var(--border);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 700; color: white;
}
.team-card h3 { font-size: 16px; font-weight: 700; color: var(--dark); }
.team-card .role { font-size: 13px; color: var(--orange); font-weight: 600; margin-top: 4px; }
.team-card .bio { font-size: 13px; color: var(--text-light); margin-top: 10px; line-height: 1.5; }

/* ============ CTA BANNER ============ */
.cta-banner { max-width: 1400px; margin: 60px auto; padding: 0 24px; }
.cta-inner {
  background: linear-gradient(135deg, var(--dark) 0%, #16213E 50%, #0F3460 100%);
  border-radius: 24px; padding: 60px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  overflow: hidden; position: relative;
}
.cta-inner::before { content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; background: var(--orange); opacity: 0.1; border-radius: 50%; }
.cta-text h2 { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: white; margin-bottom: 12px; }
.cta-text p { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 500px; line-height: 1.6; }
.cta-btn {
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white; border: none; border-radius: 14px;
  font-family: inherit; font-size: 16px; font-weight: 700;
  cursor: pointer; box-shadow: 0 8px 24px rgba(255,90,31,0.4);
  white-space: nowrap; flex-shrink: 0; transition: transform 0.2s;
  text-decoration: none; display: inline-block;
}
.cta-btn:hover { transform: translateY(-2px); }

/* ============ FOOTER ============ */
.footer { background: var(--gray-50); border-top: 1px solid var(--border); padding: 60px 0 30px; }
.footer-inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--dark); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: var(--text-light); text-decoration: none; padding: 4px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--dark); text-decoration: underline; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 13px; color: var(--text-light); }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a { width: 40px; height: 40px; border-radius: 50%; background: var(--border); display: flex; align-items: center; justify-content: center; font-size: 18px; transition: all 0.2s; }
.footer-socials a:hover { background: var(--orange); transform: translateY(-2px); }

/* ============ ANIMATIONS ============ */
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-20px); } }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav-tabs { display: none; }
  .nav-btn-text { display: none; }
  .search-pill { display: none; }
  .search-bar { flex-direction: column; border-radius: var(--radius-lg); padding: 12px; }
  .search-field { width: 100%; padding: 12px 16px; }
  .search-divider { width: 100%; height: 1px; }
  .search-btn { width: 100%; border-radius: 12px; height: 48px; }
  .cta-inner { flex-direction: column; text-align: center; padding: 40px 24px; }
  .modal-highlights-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero-bg { height: 360px; }
  .tours-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}