@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700&family=Noto+Serif+SC:wght@400;600;700&family=Playfair+Display:wght@400;600;700&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans SC', sans-serif;
  background: #0A1F12;
  color: #FFFFFF;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* ============ VARIABLES ============ */
:root {
  --primary: #0D3B1E;
  --secondary: #1A5C2E;
  --accent: #D4A843;
  --accent-hover: #E0B84E;
  --dark: #0A1F12;
  --light: #F5F0E8;
  --text-muted: #C8D6C0;
  --glass-bg: rgba(13, 59, 30, 0.4);
  --glass-border: rgba(212, 168, 67, 0.15);
}

/* ============ UTILITY ============ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-heading {
  font-family: 'Noto Serif SC', serif;
}

.heading-english {
  font-family: 'Playfair Display', serif;
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
}

.glass-light {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-gold {
  background: linear-gradient(135deg, #D4A843, #B8922E);
  color: #0A1F12;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-gold:hover {
  background: linear-gradient(135deg, #E0B84E, #C9A33A);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 168, 67, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(212, 168, 67, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
}

.btn-outline:hover {
  background: rgba(212, 168, 67, 0.1);
}

.text-gold-gradient {
  background: linear-gradient(135deg, #D4A843, #F0D78C, #D4A843);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-family: 'Playfair Display', serif;
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.section-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 0 auto 24px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.card-hover {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}


.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}




/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0A1F12; }
::-webkit-scrollbar-thumb { background: #1A5C2E; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #D4A843; }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.5s ease;
  padding: 0 20px;
}

.navbar.scrolled {
  background: rgba(10, 31, 18, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4A843, #B8922E);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A1F12;
  font-weight: 700;
  font-size: 18px;
  font-family: 'Noto Serif SC', serif;
}

.logo-text-en {
  font-family: 'Playfair Display', serif;
  color: var(--accent);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  transition: color 0.3s;
}

.navbar-logo:hover .logo-text-en {
  color: #F0D78C;
}

.logo-text-cn {
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 3px;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar-links a {
  padding: 8px 16px;
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

.navbar-links a:hover {
  color: var(--accent);
}

.navbar-links a:hover::after {
  width: 75%;
}

.navbar-phone {
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  margin-left: 16px;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  gap: 4px;
  margin-left: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 3px;
}

.lang-btn {
  padding: 5px 10px;
  font-size: 12px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s;
  font-weight: 500;
}

.lang-btn.active {
  background: var(--accent);
  color: #0A1F12;
  font-weight: 700;
}

.lang-btn:hover:not(.active) {
  color: var(--accent);
}

/* Mobile menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 28px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  background: rgba(10, 31, 18, 0.98);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(26, 92, 46, 0.3);
  padding: 24px 20px;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 12px 16px;
  color: var(--text-muted);
  font-size: 16px;
  border-radius: 8px;
  transition: all 0.3s;
}

.mobile-menu a:hover {
  color: var(--accent);
  background: rgba(26, 92, 46, 0.2);
}

.mobile-lang-switcher {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  margin-top: 8px;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-bg img,
.hero-bg video {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,31,18,0.4) 0%, rgba(10,31,18,0.3) 50%, rgba(10,31,18,0.8) 100%);
  z-index: 1;
}

.hero-overlay-side {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,31,18,0.5) 0%, transparent 50%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-top: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 32px;
  animation: fadeIn 0.6s ease-out forwards;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: float 2s ease-in-out infinite;
}

.hero-badge-text {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
}

.hero-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 72px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease-out forwards;
  line-height: 1.1;
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 4px;
  animation: fadeInUp 0.8s ease-out 0.1s forwards;
  opacity: 0;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

/* Hero Search */
.hero-search {
  border-radius: 16px;
  padding: 12px;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
  opacity: 0;
}

.hero-search-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.search-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 16px;
}

.search-icon {
  color: var(--accent);
  font-size: 20px;
  flex-shrink: 0;
}

.search-label {
  color: var(--text-muted);
  font-size: 12px;
}

.search-value {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.search-btn {
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 16px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 4px;
}

/* Scroll indicator */
.scroll-indicator {
  margin-top: 64px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s;
  animation: float 3s ease-in-out infinite;
  background: none;
  border: none;
}

.scroll-indicator:hover {
  color: var(--accent);
}

.scroll-indicator span {
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

/* ============ DESTINATIONS ============ */
.destinations {
  padding: 96px 0;
  background: var(--dark);
}

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

.dest-card {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

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

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

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

.dest-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,31,18,0.8) 100%);
}

.dest-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  color: #fff;
  backdrop-filter: blur(4px);
}

.tag-hot { background: rgba(239, 68, 68, 0.8); }
.tag-adventure { background: rgba(249, 115, 22, 0.8); }
.tag-deep { background: rgba(168, 85, 247, 0.8); }
.tag-beach { background: rgba(6, 182, 212, 0.8); }
.tag-family { background: rgba(236, 72, 153, 0.8); }
.tag-domestic { background: rgba(16, 185, 129, 0.8); }

.dest-price {
  position: absolute;
  bottom: 16px;
  right: 16px;
  text-align: right;
}

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

.dest-price-value {
  color: var(--accent);
  font-size: 24px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

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

.dest-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.dest-name {
  font-family: 'Noto Serif SC', serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.dest-name-en {
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.dest-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
}

.dest-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 12px;
}

.dest-meta-sep {
  margin: 0 8px;
}

.dest-desc {
  color: rgba(200, 214, 192, 0.8);
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.dest-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  transition: gap 0.3s;
}

.dest-card:hover .dest-link {
  gap: 12px;
}

.view-all-btn {
  text-align: center;
  margin-top: 48px;
}

.view-all-btn button {
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
}

/* ============ PACKAGES ============ */
.packages {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--dark) 0%, #0D2A16 100%);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 48px;
}

.pkg-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pkg-card.popular {
  transform: scale(1.05);
  z-index: 5;
}

.pkg-popular-badge {
  background: linear-gradient(90deg, #D4A843, #B8922E);
  color: #0A1F12;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pkg-body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pkg-tier-badge {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 12px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 16px;
}

.tier-economy { background: linear-gradient(135deg, #059669, #065f46); }
.tier-standard { background: linear-gradient(135deg, #D4A843, #B8922E); }
.tier-premium { background: linear-gradient(135deg, #9333ea, #581c87); }

.pkg-tier-name {
  font-family: 'Noto Serif SC', serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.pkg-tier-en {
  font-family: 'Playfair Display', serif;
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 1px;
}

.pkg-price {
  margin: 24px 0;
}

.pkg-price-value {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
}

.pkg-price-per {
  color: var(--text-muted);
  font-size: 14px;
}

.pkg-info {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pkg-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
}

.pkg-info-icon {
  color: var(--accent);
}

.pkg-features {
  flex: 1;
  margin-bottom: 32px;
}

.pkg-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.pkg-feature-check {
  color: var(--accent);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.pkg-feature-text {
  color: var(--text-muted);
  font-size: 14px;
}

.pkg-cta {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-size: 16px;
}

.packages-note {
  text-align: center;
  color: rgba(200, 214, 192, 0.5);
  font-size: 14px;
  margin-top: 40px;
}

/* ============ WHY US ============ */
.why-us {
  padding: 96px 0;
  background: var(--dark);
}

.why-us-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

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

.feature-card {
  border-radius: 12px;
  padding: 20px;
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(212,168,67,0.2), rgba(212,168,67,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background 0.3s;
}

.feature-card:hover .feature-icon-wrap {
  background: linear-gradient(135deg, rgba(212,168,67,0.3), rgba(212,168,67,0.1));
}

.feature-icon {
  color: var(--accent);
  font-size: 24px;
}

.feature-title {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
}

.feature-desc {
  color: rgba(200, 214, 192, 0.8);
  font-size: 14px;
  line-height: 1.6;
}

.why-us-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 400px;
}

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

.why-us-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,31,18,0.6) 100%);
}

.why-us-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  border-radius: 12px;
  padding: 16px;
}

.badge-avatars {
  display: flex;
}

.badge-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4A843, #B8922E);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A1F12;
  font-size: 12px;
  font-weight: 700;
  border: 2px solid #0A1F12;
  margin-left: -8px;
}

.badge-avatar:first-child {
  margin-left: 0;
}

.badge-info {
  margin-left: 12px;
}

.badge-info-title {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.badge-info-sub {
  color: var(--text-muted);
  font-size: 12px;
}

/* Testimonials */
.testimonials {
  margin-top: 80px;
}

.testimonials-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}

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

.testimonial-card {
  border-radius: 16px;
  padding: 24px;
}

.testimonial-quote {
  color: rgba(212, 168, 67, 0.3);
  font-size: 32px;
  margin-bottom: 16px;
}

.testimonial-text {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4A843, #B8922E);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A1F12;
  font-weight: 700;
}

.testimonial-name {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.testimonial-location {
  color: var(--text-muted);
  font-size: 12px;
}

.testimonial-stars {
  margin-left: auto;
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
}

/* ============ GUIDES ============ */
.guides {
  padding: 96px 0;
  background: linear-gradient(180deg, #0D2A16 0%, var(--dark) 100%);
}

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

.guide-card {
  border-radius: 12px;
  padding: 24px;
  cursor: pointer;
}

.guide-tag {
  display: inline-block;
  background: rgba(212, 168, 67, 0.15);
  color: var(--accent);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.guide-title {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
  transition: color 0.3s;
}

.guide-card:hover .guide-title {
  color: var(--accent);
}

.guide-desc {
  color: rgba(200, 214, 192, 0.7);
  font-size: 14px;
  line-height: 1.5;
}

/* ============ CONTACT ============ */
.contact {
  padding: 96px 0;
  background: var(--dark);
}

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

.contact-form-wrap {
  border-radius: 16px;
  padding: 32px;
}

.contact-form-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
}

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

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

.form-label {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
  font-family: 'Noto Sans SC', sans-serif;
  transition: border-color 0.3s;
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(200, 214, 192, 0.4);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(212, 168, 67, 0.5);
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1);
}

.form-select {
  appearance: none;
}

.form-select option {
  background: #0A1F12;
}

.form-textarea {
  resize: none;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-size: 16px;
}

/* Contact Info */
.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  border-radius: 16px;
  padding: 24px;
}

.contact-info-title {
  font-family: 'Noto Serif SC', serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

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

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(212, 168, 67, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item-label {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

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

.contact-item-value.highlight {
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

/* Social Grid */
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.social-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
  transition: background 0.3s;
}

.social-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.social-item-name {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.social-item-handle {
  color: var(--text-muted);
  font-size: 12px;
}

/* Payment Methods */
.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.payment-badge {
  background: rgba(212, 168, 67, 0.1);
  color: var(--accent);
  font-size: 12px;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(212, 168, 67, 0.2);
}

/* ============ FOOTER ============ */
.footer {
  background: #071510;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 48px 0;
}

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

.footer-brand-desc {
  color: rgba(200, 214, 192, 0.6);
  font-size: 14px;
  line-height: 1.7;
  margin-top: 16px;
}

.footer-col-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 16px;
}

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

.footer-col ul li a,
.footer-col ul li button {
  color: rgba(200, 214, 192, 0.6);
  font-size: 14px;
  transition: color 0.3s;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  color: rgba(200, 214, 192, 0.4);
  font-size: 12px;
  line-height: 1.8;
}

.back-to-top {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  cursor: pointer;
  transition: background 0.3s;
  background: none;
  border: none;
  font-size: 20px;
}

.back-to-top:hover {
  background: rgba(212, 168, 67, 0.2);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .navbar-links { display: none; }
  .navbar-phone { display: none; }
  .lang-switcher { display: none; }
  .mobile-toggle { display: block; }

  .hero-title { font-size: 48px; }
  .hero-subtitle { font-size: 28px; }
  .hero-search-grid { grid-template-columns: 1fr 1fr; }

  .destinations-grid { grid-template-columns: 1fr 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .pkg-card.popular { transform: none; }
  .why-us-content { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .guides-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero-title { font-size: 36px; }
  .hero-subtitle { font-size: 22px; }
  .hero-desc { font-size: 16px; }
  .hero-search-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .stat-value { font-size: 28px; }

  .section-title { font-size: 32px; }
  .section-desc { font-size: 16px; }

  .destinations-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .guides-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
}