/* ═══════════════════════════════════════════════════════════════
   FLY EASY — Premium Design System
   A subsidiary of Praveen & Partners Limited (UK)
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --navy: #0b1426;
  --navy-light: #162036;
  --blue: #1d4ed8;
  --blue-hover: #1e40af;
  --blue-light: #eff6ff;
  --blue-50: #dbeafe;
  --sky: #0284c7;
  --amber: #d97706;
  --amber-light: #fef3c7;
  --green: #059669;
  --green-light: #d1fae5;
  --red: #dc2626;
  --gray-25: #fcfcfd;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow-xs: 0 1px 2px rgba(0,0,0,.04);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.04);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,.08), 0 8px 10px -6px rgba(0,0,0,.04);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,.15);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(.4,0,.2,1);
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); color: var(--gray-800); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ═══ LUCIDE ICONS ═══ */
[data-lucide] { width: 20px; height: 20px; stroke-width: 1.5; vertical-align: middle; }
.icon-sm[data-lucide] { width: 16px; height: 16px; }
.icon-lg[data-lucide] { width: 24px; height: 24px; }
.icon-xl[data-lucide] { width: 32px; height: 32px; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 960px; margin: 0 auto; padding: 0 24px; }

/* ═══ HEADER ═══ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--gray-100);
  transition: all .3s var(--ease);
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 20px; color: var(--navy); letter-spacing: -0.02em; }
.logo-mark {
  width: 36px; height: 36px; background: var(--navy); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; color: white;
}
.logo-mark [data-lucide] { width: 18px; height: 18px; }
.logo em { font-style: italic; color: var(--blue); font-family: var(--font-display); font-weight: 600; }
.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  padding: 8px 16px; border-radius: var(--radius-full); font-size: 14px; font-weight: 500;
  color: var(--gray-500); transition: all .2s var(--ease); display: flex; align-items: center; gap: 6px;
}
.nav a:hover { color: var(--gray-900); background: var(--gray-50); }
.nav a.active { color: var(--blue); background: var(--blue-light); }
.header-actions { display: flex; align-items: center; gap: 12px; }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 20px; border-radius: var(--radius); font-size: 14px; font-weight: 600;
  transition: all .2s var(--ease); white-space: nowrap; line-height: 1.4;
}
.btn [data-lucide] { width: 16px; height: 16px; }
.btn-primary { background: var(--navy); color: white; }
.btn-primary:hover { background: var(--gray-800); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-blue { background: var(--blue); color: white; }
.btn-blue:hover { background: var(--blue-hover); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { border: 1.5px solid var(--gray-200); color: var(--gray-700); background: white; }
.btn-outline:hover { border-color: var(--gray-300); background: var(--gray-50); }
.btn-ghost { color: var(--gray-600); }
.btn-ghost:hover { color: var(--gray-900); background: var(--gray-50); }
.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: var(--radius-lg); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-block { width: 100%; }

/* ═══ HERO ═══ */
.hero {
  position: relative; min-height: 640px; display: flex; align-items: center;
  background: var(--navy); padding: 120px 0 80px; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(29,78,216,.15) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(2,132,199,.1) 0%, transparent 50%);
}
.hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
}
.hero-grid {
  position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-content h1 {
  font-family: var(--font-display); font-size: clamp(40px, 5vw, 60px);
  font-weight: 700; line-height: 1.1; color: white; margin-bottom: 20px; letter-spacing: -0.02em;
}
.hero-content h1 em { color: var(--amber); font-style: italic; }
.hero-content p { font-size: 17px; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl); padding: 32px; backdrop-filter: blur(12px);
  width: 100%; max-width: 400px;
}
.hero-card h3 { color: white; font-size: 16px; font-weight: 600; margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.hero-stat { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.hero-stat:last-child { border-bottom: none; }
.hero-stat-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm); background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; color: var(--amber);
}
.hero-stat-icon [data-lucide] { width: 20px; height: 20px; }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,.5); }
.hero-stat-value { font-size: 15px; font-weight: 600; color: white; }

/* ═══ SECTION ═══ */
.section { padding: 80px 0; }
.section-alt { background: var(--gray-50); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .overline {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700;
  color: var(--blue); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px;
}
.section-header .overline [data-lucide] { width: 14px; height: 14px; }
.section-header h2 {
  font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700; color: var(--navy); margin-bottom: 14px; letter-spacing: -0.01em;
}
.section-header p { font-size: 16px; color: var(--gray-500); max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* ═══ DESTINATIONS ═══ */
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.dest-card {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  aspect-ratio: 3/4; cursor: pointer; background: var(--gray-100);
}
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.dest-card:hover img { transform: scale(1.06); }
.dest-card-content {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 50%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; color: white;
}
.dest-card-content h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-bottom: 2px; }
.dest-card-content span { font-size: 13px; opacity: .75; display: flex; align-items: center; gap: 4px; }
.dest-card-content span [data-lucide] { width: 12px; height: 12px; }
.dest-badge {
  position: absolute; top: 14px; right: 14px; background: white; color: var(--navy);
  padding: 6px 12px; border-radius: var(--radius-full); font-size: 13px; font-weight: 700;
  box-shadow: var(--shadow-sm);
}

/* ═══ FEATURES ═══ */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
  padding: 32px 28px; border-radius: var(--radius-lg); border: 1px solid var(--gray-100);
  background: white; transition: all .3s var(--ease);
}
.feature-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.feature-icon {
  width: 52px; height: 52px; border-radius: var(--radius); display: flex;
  align-items: center; justify-content: center; margin-bottom: 20px;
}
.feature-icon [data-lucide] { width: 24px; height: 24px; }
.feature-icon-blue { background: var(--blue-light); color: var(--blue); }
.feature-icon-amber { background: var(--amber-light); color: var(--amber); }
.feature-icon-green { background: var(--green-light); color: var(--green); }
.feature-icon-navy { background: rgba(11,20,38,.06); color: var(--navy); }
.feature-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }

/* ═══ DEALS ═══ */
.deal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.deal-card {
  background: white; border-radius: var(--radius-lg); border: 1px solid var(--gray-100);
  overflow: hidden; transition: all .3s var(--ease);
}
.deal-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.deal-img { height: 200px; overflow: hidden; position: relative; }
.deal-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.deal-card:hover .deal-img img { transform: scale(1.04); }
.deal-tag {
  position: absolute; top: 14px; left: 14px; background: var(--navy); color: white;
  padding: 5px 12px; border-radius: var(--radius-full); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em; display: flex; align-items: center; gap: 5px;
}
.deal-tag [data-lucide] { width: 12px; height: 12px; }
.deal-body { padding: 22px; }
.deal-body h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.deal-body p { font-size: 13px; color: var(--gray-500); line-height: 1.6; margin-bottom: 18px; }
.deal-footer { display: flex; align-items: center; justify-content: space-between; }
.deal-price { font-size: 24px; font-weight: 700; color: var(--navy); }
.deal-price small { font-size: 13px; font-weight: 400; color: var(--gray-400); }

/* ═══ STATS ═══ */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: var(--navy); border-radius: var(--radius-xl); padding: 40px; margin: -40px auto 0;
  position: relative; z-index: 5; max-width: 960px;
}
.stat-item { text-align: center; padding: 0 24px; border-right: 1px solid rgba(255,255,255,.1); }
.stat-item:last-child { border-right: none; }
.stat-item .value {
  font-family: var(--font-display); font-size: 36px; font-weight: 700; color: white; line-height: 1; margin-bottom: 6px;
}
.stat-item .label { font-size: 13px; color: rgba(255,255,255,.5); }

/* ═══ TESTIMONIALS ═══ */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: white; border: 1px solid var(--gray-100); border-radius: var(--radius-lg);
  padding: 28px; transition: all .3s var(--ease);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 14px; color: var(--amber); }
.testimonial-stars [data-lucide] { width: 16px; height: 16px; fill: var(--amber); stroke: var(--amber); }
.testimonial-card blockquote {
  font-size: 14px; color: var(--gray-600); line-height: 1.75; margin-bottom: 20px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: var(--radius-full); background: var(--navy);
  display: flex; align-items: center; justify-content: center; color: white;
  font-weight: 700; font-size: 15px;
}
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.testimonial-role { font-size: 12px; color: var(--gray-400); }

/* ═══ CTA ═══ */
.cta {
  background: var(--navy); border-radius: var(--radius-2xl); padding: 64px;
  text-align: center; color: white; position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; top: -40%; right: -10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(29,78,216,.25), transparent 70%); border-radius: 50%;
}
.cta h2 { font-family: var(--font-display); font-size: clamp(28px, 3vw, 38px); margin-bottom: 14px; position: relative; }
.cta p { color: rgba(255,255,255,.55); margin-bottom: 32px; position: relative; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 12px; justify-content: center; position: relative; }

/* ═══ NEWSLETTER ═══ */
.newsletter-form {
  display: flex; gap: 12px; max-width: 460px; margin: 0 auto; position: relative;
}
.newsletter-form input {
  flex: 1; padding: 14px 18px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08); color: white; font-size: 14px; outline: none; transition: all .2s var(--ease);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-form input:focus { border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.12); }
.newsletter-form button { padding: 14px 24px; border-radius: var(--radius); background: var(--amber); color: white; font-weight: 700; font-size: 14px; transition: all .2s var(--ease); display: flex; align-items: center; gap: 6px; }
.newsletter-form button:hover { background: #b45309; }

/* ═══ FOOTER ═══ */
.footer { background: var(--gray-50); border-top: 1px solid var(--gray-100); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-top: 16px; max-width: 300px; }
.footer-col h4 {
  font-size: 12px; font-weight: 700; color: var(--navy); text-transform: uppercase;
  letter-spacing: .06em; margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px; color: var(--gray-500); transition: all .2s var(--ease);
  display: flex; align-items: center; gap: 6px;
}
.footer-col a:hover { color: var(--blue); }
.footer-col a [data-lucide] { width: 14px; height: 14px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid var(--gray-200); font-size: 13px; color: var(--gray-400);
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: var(--radius-full); background: var(--gray-100);
  display: flex; align-items: center; justify-content: center; color: var(--gray-500);
  transition: all .2s var(--ease);
}
.footer-social a:hover { background: var(--navy); color: white; }

/* ═══ PAGE HEADER ═══ */
.page-hero {
  background: var(--navy); padding: 120px 0 60px; text-align: center; position: relative;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(29,78,216,.12) 0%, transparent 60%);
}
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px);
  font-weight: 700; color: white; margin-bottom: 12px; position: relative;
}
.page-hero p { font-size: 16px; color: rgba(255,255,255,.55); position: relative; max-width: 480px; margin: 0 auto; }

/* ═══ SEARCH BAR ═══ */
.search-bar {
  background: white; border-radius: var(--radius-xl); box-shadow: var(--shadow-xl);
  padding: 8px; position: relative; z-index: 10; max-width: 800px; margin: -36px auto 0;
  display: flex; gap: 8px; align-items: center;
}
.search-bar .field {
  flex: 1; display: flex; align-items: center; gap: 10px; padding: 12px 16px;
  border-radius: var(--radius-lg); transition: background .2s var(--ease);
}
.search-bar .field:hover { background: var(--gray-50); }
.search-bar .field [data-lucide] { color: var(--gray-400); flex-shrink: 0; }
.search-bar .field input {
  border: none; outline: none; font-size: 14px; color: var(--gray-800);
  background: transparent; width: 100%;
}
.search-bar .field input::placeholder { color: var(--gray-400); }
.search-bar .field-divider { width: 1px; height: 28px; background: var(--gray-200); flex-shrink: 0; }
.search-bar .search-submit {
  padding: 12px 24px; border-radius: var(--radius-lg); background: var(--navy); color: white;
  font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 8px;
  transition: all .2s var(--ease); flex-shrink: 0;
}
.search-bar .search-submit:hover { background: var(--gray-800); }

/* ═══ RESULTS ═══ */
.results-list { display: flex; flex-direction: column; gap: 16px; }
.result-card {
  background: white; border: 1px solid var(--gray-100); border-radius: var(--radius-lg);
  padding: 24px; display: grid; grid-template-columns: 140px 1fr auto; gap: 24px;
  align-items: center; transition: all .2s var(--ease);
}
.result-card:hover { border-color: var(--blue-50); box-shadow: var(--shadow); }
.result-thumb {
  width: 140px; height: 100px; border-radius: var(--radius-sm); overflow: hidden;
  background: var(--gray-100);
}
.result-thumb img { width: 100%; height: 100%; object-fit: cover; }
.result-info h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.result-info p { font-size: 13px; color: var(--gray-500); margin-bottom: 10px; }
.result-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.result-tag {
  display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px;
  background: var(--gray-50); border-radius: var(--radius-full); font-size: 12px;
  color: var(--gray-600); font-weight: 500;
}
.result-tag [data-lucide] { width: 12px; height: 12px; }
.result-pricing { text-align: right; min-width: 120px; }
.result-pricing .price { font-size: 24px; font-weight: 700; color: var(--navy); }
.result-pricing .per { font-size: 12px; color: var(--gray-400); display: block; margin-bottom: 10px; }

/* ═══ ABOUT ═══ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/3; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-content h2 { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.about-content p { font-size: 15px; color: var(--gray-600); line-height: 1.8; margin-bottom: 14px; }
.about-content strong { color: var(--navy); }

/* ═══ CONTACT ═══ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-form-card {
  background: white; border: 1px solid var(--gray-100); border-radius: var(--radius-xl); padding: 40px;
}
.contact-form-card h2 { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--navy); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600;
  color: var(--gray-600); margin-bottom: 6px;
}
.form-group label [data-lucide] { width: 14px; height: 14px; color: var(--gray-400); }
.form-input {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: 14px; outline: none; transition: all .2s var(--ease);
  background: var(--gray-25); color: var(--gray-800);
}
.form-input:focus { border-color: var(--blue); background: white; box-shadow: 0 0 0 3px rgba(29,78,216,.08); }
.form-input::placeholder { color: var(--gray-400); }
textarea.form-input { resize: vertical; min-height: 120px; }
select.form-input { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: 24px;
  transition: all .2s var(--ease);
}
.contact-card:hover { background: white; box-shadow: var(--shadow-sm); }
.contact-card h3 {
  display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}
.contact-card h3 [data-lucide] { color: var(--blue); }
.contact-card p { font-size: 14px; color: var(--gray-500); line-height: 1.7; }
.contact-card a { color: var(--blue); font-weight: 500; }

/* ═══ TABS ═══ */
.tabs { display: flex; gap: 4px; margin-bottom: 32px; background: var(--gray-100); border-radius: var(--radius-lg); padding: 4px; }
.tab {
  flex: 1; padding: 10px 16px; border-radius: var(--radius); font-size: 13px; font-weight: 600;
  color: var(--gray-500); text-align: center; transition: all .2s var(--ease);
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.tab [data-lucide] { width: 14px; height: 14px; }
.tab.active { background: white; color: var(--navy); box-shadow: var(--shadow-xs); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ═══ TOAST ═══ */
.toast {
  position: fixed; bottom: 24px; right: 24px; background: var(--navy); color: white;
  padding: 14px 20px; border-radius: var(--radius); font-size: 14px; font-weight: 500;
  box-shadow: var(--shadow-xl); transform: translateY(100px); opacity: 0;
  transition: all .35s var(--ease); z-index: 3000; display: flex; align-items: center; gap: 10px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { background: var(--green); }
.toast.error { background: var(--red); }

/* ═══ ANIMATIONS ═══ */
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ═══ MOBILE NAV ═══ */
.mobile-nav {
  position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,.4);
  backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity .3s var(--ease);
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav-panel {
  position: absolute; right: 0; top: 0; bottom: 0; width: 300px;
  background: white; padding: 24px; transform: translateX(100%);
  transition: transform .35s var(--ease); box-shadow: var(--shadow-xl);
}
.mobile-nav.open .mobile-nav-panel { transform: translateX(0); }
.mobile-nav-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 2px; }
.mobile-nav-links a {
  padding: 12px 16px; border-radius: var(--radius); font-size: 15px; font-weight: 500;
  color: var(--gray-600); display: flex; align-items: center; gap: 10px; transition: all .2s var(--ease);
}
.mobile-nav-links a:hover, .mobile-nav-links a.active { background: var(--blue-light); color: var(--blue); }
.mobile-nav-links a [data-lucide] { width: 18px; height: 18px; }
.mobile-menu-btn { display: none; width: 40px; height: 40px; border-radius: var(--radius-sm); align-items: center; justify-content: center; color: var(--gray-700); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .deal-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 32px; }
  .stat-item { border-right: none; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero { min-height: 520px; padding: 100px 0 60px; }
  .search-bar { flex-direction: column; margin: -24px 16px 0; }
  .search-bar .field-divider { width: 100%; height: 1px; }
  .dest-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .deal-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .result-card { grid-template-columns: 1fr; }
  .result-thumb { width: 100%; height: 160px; }
  .result-pricing { text-align: left; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; }
  .cta { padding: 40px 24px; }
  .newsletter-form { flex-direction: column; }
}
