/* ===================================================
   TRIP OFFICIAL WEBSITE - style.css
   =================================================== */

/* ---------- CSS Variables ---------- */
:root {
  --primary:        #af011a;
  --primary-dark:   #8e0116;
  --primary-darker: #7d0114;
  --primary-grad:   linear-gradient(165deg, #af011a 0%, #9a0118 40%, #7d0114 100%);
  --primary-light:  rgba(175, 1, 26, 0.1);

  --dark:      #0f0f1a;
  --dark-2:    #1a1a2e;
  --dark-3:    #16213e;
  --text:      #1f2937;
  --text-gray: #6b7280;
  --text-light:#9ca3af;

  --white:  #ffffff;
  --bg:     #f8f9fb;
  --bg-2:   #f1f3f6;
  --border: rgba(0,0,0,0.08);

  --shadow-sm:   0 2px 12px rgba(0,0,0,0.08);
  --shadow:      0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.14);
  --shadow-red:  0 16px 48px rgba(175,1,26,0.25);

  --radius-sm: 8px;
  --radius:    16px;
  --radius-lg: 24px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --font-serif: 'Playfair Display', 'Noto Serif SC', serif;
  --font-sans:  'Noto Sans SC', sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--primary-grad);
  color: var(--white);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-red);
  transition: var(--transition);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 56px rgba(175,1,26,0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ---------- Section Header ---------- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-tag.light {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-header.light h2 {
  color: var(--white);
}
.section-header p {
  font-size: 17px;
  color: var(--text-gray);
  max-width: 520px;
  margin: 0 auto;
}
.section-header.light p {
  color: rgba(255,255,255,0.75);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(15,15,26,0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.nav-logo i {
  color: var(--primary);
  font-size: 22px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.nav-cta {
  padding: 8px 20px;
  background: var(--primary-grad);
  color: var(--white);
  border-radius: 50px;
  font-size: 14px;
  box-shadow: var(--shadow-red);
}
.nav-links a.nav-cta::after { display: none; }
.nav-links a.nav-cta:hover { transform: translateY(-1px); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-sep { color: rgba(255,255,255,0.3); font-size: 12px; }
.lang-btn {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
  padding: 2px 4px;
  border-radius: 4px;
}
.lang-btn:hover,
.lang-btn.active {
  color: var(--white);
  font-weight: 700;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(127, 1, 20, 0.72) 0%,
    rgba(15, 15, 26, 0.65) 50%,
    rgba(15, 15, 26, 0.78) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 820px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
  margin-bottom: 28px;
}
.hero-badge i { color: #fbbf24; font-size: 12px; }
.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-content p {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}
.hero-trust i { color: rgba(255,255,255,0.9); font-size: 14px; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  width: 30px; height: 50px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 20px;
  position: relative;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 10px;
  background: var(--white);
  border-radius: 4px;
  animation: scrollDown 1.8s ease infinite;
}
@keyframes scrollDown {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

/* ============================================================
   PRODUCTS
   ============================================================ */
#products {
  padding: 100px 0;
  background: var(--bg);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary-grad);
  transform: scaleX(0);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-red);
  border-color: transparent;
}
.product-card:hover::before { transform: scaleX(1); }
.product-icon {
  width: 64px; height: 64px;
  background: var(--primary-light);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: var(--transition);
}
.product-icon i {
  font-size: 26px;
  color: var(--primary);
  transition: var(--transition);
}
.product-card:hover .product-icon {
  background: var(--primary-grad);
}
.product-card:hover .product-icon i { color: var(--white); }
.product-card h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.product-card p {
  font-size: 13.5px;
  color: var(--text-gray);
  line-height: 1.5;
}
.product-arrow {
  position: absolute;
  bottom: 18px; right: 18px;
  width: 28px; height: 28px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--primary);
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--transition);
}
.product-card:hover .product-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   PRICING
   ============================================================ */
#pricing {
  padding: 100px 0;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}
#pricing::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(175,1,26,0.15) 0%, transparent 70%);
  pointer-events: none;
}
#pricing::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(175,1,26,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.comparison-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  margin-bottom: 72px;
  flex-wrap: wrap;
}
.comparison-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  min-width: 150px;
  transition: var(--transition);
}
.comparison-card.competitor:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}
.comparison-card.trip-highlight {
  background: var(--primary-grad);
  border-color: transparent;
  padding: 32px 28px;
  position: relative;
  box-shadow: var(--shadow-red);
  transform: scale(1.06);
  min-width: 180px;
  z-index: 1;
}
.trip-crown {
  position: absolute;
  top: -18px; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 36px;
  background: #fbbf24;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7d6000;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(251,191,36,0.4);
}
.comp-platform {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}
.trip-highlight .comp-platform {
  color: rgba(255,255,255,0.9);
  font-size: 16px;
}
.comp-price {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.trip-price { font-size: 26px; }
.comp-diff {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 600;
}
.comp-diff.higher {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
}
.comp-diff.best {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}
.trip-guarantee {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-item {
  padding: 40px 20px;
  text-align: center;
  background: rgba(255,255,255,0.03);
  transition: var(--transition);
}
.stat-item:hover { background: rgba(255,255,255,0.07); }
.stat-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  margin-bottom: 10px;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-suffix {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.3px;
}

/* ============================================================
   DESTINATIONS
   ============================================================ */
#destinations {
  padding: 100px 0;
  background: var(--white);
}
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.dest-large {
  grid-row: span 1;
}
/* Make first and last items larger on first/second rows */
.dest-card:nth-child(1) { grid-column: span 1; }
.dest-card:nth-child(6) { grid-column: span 1; }

.dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.dest-card:hover img { transform: scale(1.08); }
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15,15,26,0.85) 0%,
    rgba(15,15,26,0.2) 55%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: var(--transition);
}
.dest-tag {
  position: absolute;
  top: 16px; left: 16px;
  padding: 5px 14px;
  background: var(--primary-grad);
  color: var(--white);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}
.dest-tag-new {
  background: linear-gradient(135deg,#16a34a,#15803d);
}
.dest-overlay h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.dest-overlay p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-style: italic;
  margin-bottom: 10px;
}
.dest-price {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(175,1,26,0.9);
  color: var(--white);
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}
.dest-card:hover .dest-price {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   APP SHOWCASE
   ============================================================ */
#app-showcase {
  padding: 100px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
#app-showcase::before {
  content: '';
  position: absolute;
  top: 50%; left: -200px;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(175,1,26,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.app-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.app-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
  margin-top: 12px;
}
.app-content > p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  line-height: 1.7;
}
.app-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 40px;
}
.app-features li {
  display: flex;
  align-items: center;
  gap: 16px;
}
.feature-icon {
  width: 40px; height: 40px;
  background: rgba(175,1,26,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon i {
  font-size: 16px;
  color: var(--primary);
}
.app-features li span {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
}
.app-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.qr-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.qr-box {
  display: block;
  width: 140px;
  height: 140px;
  background: var(--white);
  border-radius: 12px;
  padding: 8px;
  overflow: hidden;
}
.qr-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.qr-block span {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

/* Phone Mockup */
.app-phones {
  display: flex;
  justify-content: center;
}
.appSwiper {
  width: 280px;
  padding-bottom: 44px !important;
}
.phone-frame {
  width: 240px;
  height: 480px;
  background: #1a1a2e;
  border-radius: 36px;
  border: 6px solid #2d2d4a;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.08);
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}
.phone-notch {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 22px;
  background: #1a1a2e;
  border-radius: 0 0 14px 14px;
  z-index: 10;
}
.phone-screen {
  width: 100%; height: 100%;
  overflow: hidden;
  padding: 28px 0 0;
}

/* Screen styles */
.ps-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 14px 10px;
}
.ps-logo {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.ps-bell { color: rgba(255,255,255,0.6); font-size: 14px; }
.ps-back { color: rgba(255,255,255,0.7); font-size: 13px; margin-right: 8px; }
.ps-page-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.ps-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 12px 10px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.ps-search i { font-size: 11px; }

.ps-tabs {
  display: flex;
  gap: 4px;
  padding: 0 12px 10px;
}
.ps-tab {
  flex: 1;
  text-align: center;
  padding: 7px 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
}
.ps-tab.active {
  background: var(--primary);
  color: var(--white);
}
.ps-banner {
  margin: 0 12px 10px;
  background: var(--primary-grad);
  border-radius: 10px;
  padding: 12px 14px;
}
.ps-banner-tag {
  font-size: 9px;
  background: rgba(255,255,255,0.25);
  color: var(--white);
  display: inline-block;
  padding: 2px 7px;
  border-radius: 4px;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}
.ps-banner-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.ps-banner-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
}

.ps-section-title {
  padding: 4px 12px 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.ps-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 12px;
}
.ps-card {
  display: flex;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 8px;
  align-items: center;
}
.ps-card-img {
  width: 44px; height: 44px;
  border-radius: 8px;
  flex-shrink: 0;
}
.ps-card-name {
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 3px;
}
.ps-card-price {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
}

/* screen-dest */
.ps-dest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 0 12px 10px;
}
.ps-dest {
  height: 52px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
}
.ps-product-list {
  padding: 0 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ps-product-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 8px 10px;
}
.ps-product-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ps-product-name { font-size: 10.5px; color: rgba(255,255,255,0.8); margin-bottom: 2px; }
.ps-product-price { font-size: 11px; font-weight: 700; color: var(--primary); }

/* screen-orders */
.ps-order {
  margin: 0 12px 8px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 10px 12px;
  border-left: 3px solid transparent;
}
.ps-order.confirmed { border-left-color: #16a34a; }
.ps-order.pending   { border-left-color: #d97706; }
.ps-order.completed { border-left-color: rgba(255,255,255,0.2); }
.ps-order-status {
  display: inline-block;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 5px;
  font-weight: 600;
}
.confirmed-badge { background: rgba(22,163,74,0.2); color: #86efac; }
.pending-badge   { background: rgba(217,119,6,0.2);  color: #fcd34d; }
.completed-badge { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); }
.ps-order-name  { font-size: 11.5px; color: rgba(255,255,255,0.85); margin-bottom: 3px; }
.ps-order-date  { font-size: 10px; color: rgba(255,255,255,0.45); margin-bottom: 5px; }
.ps-order-price { font-size: 13px; font-weight: 700; color: var(--primary); }

.appSwiper .swiper-pagination-bullet {
  background: rgba(255,255,255,0.3);
}
.appSwiper .swiper-pagination-bullet-active {
  background: var(--primary);
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  padding: 100px 0;
  background: var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.contact-icon-wrap {
  width: 72px; height: 72px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}
.contact-icon-wrap.wechat    { background: #e8f8ef; color: #07c160; }
.contact-icon-wrap.whatsapp  { background: #e8f8ef; color: #25d366; }
.contact-icon-wrap.clock     { background: var(--primary-light); color: var(--primary); }
.contact-card h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text);
}
.qr-placeholder {
  width: 110px; height: 110px;
  background: var(--bg);
  border: 2px dashed var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  gap: 6px;
  color: var(--text-light);
  font-size: 36px;
}
.qr-placeholder p { font-size: 11px; color: var(--text-gray); margin-top: 4px; }
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #25d366;
  color: var(--white);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  margin-bottom: 12px;
}
.whatsapp-btn:hover { background: #1db954; transform: scale(1.03); }
.hours-value {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 4px;
}
.hours-time {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.contact-hint {
  font-size: 13px;
  color: var(--text-light);
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--dark);
  color: var(--white);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 64px 0 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}
.footer-logo i { color: var(--primary); }
.footer-brand > p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  line-height: 1.6;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.footer-nav h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-nav ul a:hover {
  color: var(--white);
  padding-left: 4px;
}
.footer-lang-section h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.footer-lang {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-lang .lang-btn {
  padding: 8px 16px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 13.5px;
  font-weight: 500;
  text-align: left;
  transition: var(--transition);
}
.footer-lang .lang-btn:hover,
.footer-lang .lang-btn.active {
  background: var(--primary-light);
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   MOBILE MENU OVERLAY
   ============================================================ */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,15,26,0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav-mobile-overlay.open { display: flex; }
.nav-mobile-overlay a {
  font-size: 22px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-serif);
  transition: var(--transition);
}
.nav-mobile-overlay a:hover { color: var(--primary); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .comparison-wrapper { gap: 10px; }
  .comparison-card { min-width: 120px; padding: 22px 16px; }
  .comparison-card.trip-highlight { min-width: 150px; padding: 26px 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none !important; }

  #hero { height: 100svh; }
  .hero-trust { gap: 16px; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .comparison-wrapper { gap: 8px; }
  .comparison-card { min-width: 100px; padding: 18px 10px; }
  .comp-platform { font-size: 12px; }
  .comp-price { font-size: 16px; }
  .comparison-card.trip-highlight { min-width: 120px; }
  .trip-price { font-size: 18px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-card:nth-child(1),
  .dest-card:nth-child(6) { grid-column: span 1; }

  .app-layout { grid-template-columns: 1fr; gap: 48px; }
  .app-phones { order: -1; }

  .contact-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 32px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .product-card { padding: 22px 14px; }
  .destinations-grid { grid-template-columns: 1fr; }
  .comparison-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .comparison-card.trip-highlight {
    grid-column: span 2;
    transform: scale(1);
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* AOS custom */
[data-aos] { will-change: transform, opacity; }
