/* Narendra Tourism — UAE Premium Static Site */

:root {
  --ink: #0e1624;
  --ink-soft: #1c2a3e;
  --sand: #f3ebe0;
  --sand-deep: #e2d4c0;
  --cream: #faf6f0;
  --gold: #c9a227;
  --gold-light: #e8c96a;
  --copper: #a85d32;
  --teal: #1a4f52;
  --teal-deep: #0f3336;
  --mist: #8a9aab;
  --white: #ffffff;
  --line: rgba(14, 22, 36, 0.1);
  --shadow: 0 24px 64px rgba(14, 22, 36, 0.12);
  --shadow-sm: 0 8px 24px rgba(14, 22, 36, 0.08);
  --radius: 4px;
  --radius-lg: 12px;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --max: 1200px;
  --header-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.75rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.75rem); }

p + p { margin-top: 1rem; }

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.75rem;
}

.lead {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 52ch;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(168, 93, 50, 0.35);
}

.btn-primary:hover { box-shadow: 0 8px 28px rgba(168, 93, 50, 0.45); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}

.btn-outline-light:hover,
.btn-outline:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}

.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  transition: transform 0.25s;
}

.logo:hover .logo-img {
  transform: scale(1.02);
}

.footer-logo {
  height: 48px;
  width: auto;
  max-width: 200px;
  margin-bottom: 1rem;
  display: block;
  object-fit: contain;
}

.logo-mark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-desktop a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  white-space: nowrap;
}

.nav-desktop a.nav-highlight {
  color: var(--copper);
  font-weight: 600;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s;
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after { width: 100%; }

.nav-desktop a.active { color: var(--ink); font-weight: 600; }

.nav-cta { margin-left: 0.5rem; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: 0.3s;
}

.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--cream);
  padding: 2rem;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
  overflow-y: auto;
}

.nav-mobile.open { display: flex; }

body.nav-open { overflow: hidden; }

.nav-mobile a {
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 4rem) 0 5rem;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0e1624 0%, #1c2a3e 45%, #0f3336 100%);
  transform-origin: center;
}

.hero-bg.is-loaded {
  background:
    linear-gradient(160deg, rgba(14,22,36,0.72) 0%, rgba(14,22,36,0.88) 55%, rgba(26,79,82,0.8) 100%),
    url("../img/hero-dubai.jpg") center/cover no-repeat;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: 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='%23c9a227' fill-opacity='1'%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");
}

.hero-content { position: relative; z-index: 1; max-width: 780px; }

.hero .eyebrow { color: var(--gold-light); }

.hero h1 { margin-bottom: 1.25rem; }

.hero-text {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  max-width: 48ch;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.35rem;
  letter-spacing: 0.04em;
}

/* Sections */
section { padding: 6rem 0; }

.section-header {
  margin-bottom: 3.5rem;
  max-width: 640px;
}

.section-header.centered {
  margin-inline: auto;
  text-align: center;
}

.section-header.centered .lead { margin-inline: auto; }

.bg-sand { background: var(--sand); }
.bg-ink { background: var(--ink); color: var(--white); }
.bg-teal { background: var(--teal-deep); color: var(--white); }

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card-img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  background: var(--sand-deep);
}

.card-body { padding: 1.75rem; }

.card-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.card h3 { margin-bottom: 0.65rem; }

.card p {
  font-size: 0.95rem;
  color: var(--mist);
  margin-bottom: 1.25rem;
}

.card-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--copper);
}

.card-price span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--mist);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--copper);
  margin-top: 1rem;
}

.card-link:hover { gap: 0.6rem; }

/* Feature strip */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem 1.25rem;
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.12);
  border-radius: 50%;
  font-size: 1.5rem;
}

.feature-item h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.875rem;
  color: var(--mist);
}

/* Page hero (inner pages) */
.page-hero {
  padding: calc(var(--header-h) + 5rem) 0 4rem;
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -30%;
  width: 50%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(201,162,39,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .container { position: relative; }

.page-hero h1 { margin-bottom: 1rem; }

.page-hero .lead { color: rgba(255,255,255,0.75); }

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a:hover { color: var(--gold-light); }

/* Two column layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.split-img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.split-content h2 { margin-bottom: 1.25rem; }

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  font-size: 0.95rem;
}

.check-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 79, 82, 0.12);
  color: var(--teal);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
}

/* Packages table */
.package-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}

.package-row:first-child {
  padding-top: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
}

.package-name h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.package-name p { font-size: 0.875rem; color: var(--mist); }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item.tall { grid-row: span 2; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,22,36,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Blog */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 100px;
  cursor: pointer;
  transition: 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.blog-card.hidden { display: none; }

.blog-card-img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }

.blog-card-body { padding: 1.75rem; }

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--mist);
  margin-bottom: 0.75rem;
}

.blog-card h3 { margin-bottom: 0.75rem; font-size: 1.4rem; }

.blog-card p { font-size: 0.95rem; color: var(--mist); }

/* Article */
.article {
  max-width: 720px;
  margin: 0 auto;
  padding: 4rem 0 6rem;
}

.article-hero-img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 2.5rem;
}

.article h2 {
  font-size: 1.75rem;
  margin: 2.5rem 0 1rem;
}

.article p { margin-bottom: 1.25rem; color: var(--ink-soft); }

.article blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--gold);
  background: var(--sand);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--ink);
}

/* FAQ removed */

.chatbot-body {
  padding: 0;
  display: flex;
  flex-direction: column;
  background: var(--cream);
}

.chatbot-welcome {
  padding: 1rem 1.1rem 0.5rem;
}

.chatbot-welcome p {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}

.chatbot-note {
  font-size: 0.78rem !important;
  color: var(--mist) !important;
}

.chatbot-quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
}

.chatbot-quick-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink) !important;
  transition: 0.2s;
}

.chatbot-quick-link:hover {
  border-color: var(--gold);
  background: var(--sand);
}

.chatbot-quick-link span { font-size: 1rem; }

.chatbot-compose {
  display: flex;
  gap: 0.5rem;
  padding: 0 1rem 0.75rem;
}

.chatbot-input {
  flex: 1;
  padding: 0.65rem 0.85rem;
  border: 1.5px solid var(--sand-deep);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  background: var(--white);
}

.chatbot-input:focus {
  outline: none;
  border-color: var(--teal);
}

.chatbot-send {
  padding: 0.65rem 1rem;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
}

.chatbot-actions--row {
  padding: 0.75rem 1rem 1rem;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.chatbot-actions--row .chatbot-action {
  min-width: 0;
  flex: 1;
}

/* Booking steps */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step-card {
  background: var(--white);
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  border-top: 3px solid var(--gold);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.85;
}

.step-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--mist);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact-info h3 { margin-bottom: 1.5rem; }

.contact-detail {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-detail strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.25rem;
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--ink-soft);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1.5px solid var(--sand-deep);
  border-radius: var(--radius);
  background: var(--cream);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.testimonial {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.testimonial-stars { color: var(--gold-light); margin-bottom: 1rem; letter-spacing: 2px; }

.testimonial p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
}

.testimonial-author span {
  display: block;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  margin-top: 0.2rem;
}

/* CTA band */
.cta-band {
  padding: 5rem 0;
  text-align: center;
  background:
    linear-gradient(135deg, var(--teal-deep) 0%, var(--ink) 100%);
  color: var(--white);
}

.cta-band h2 { margin-bottom: 1rem; }

.cta-band p {
  color: rgba(255,255,255,0.75);
  max-width: 48ch;
  margin: 0 auto 2rem;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand .logo-mark { color: var(--white); }

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  padding: 0.35rem 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s;
}

.whatsapp-float:hover { transform: scale(1.08); }

.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* Utilities */
.text-gold { color: var(--gold); }
.mt-2 { margin-top: 2rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .package-row { grid-template-columns: 1fr; gap: 0.5rem; }
  .package-row:first-child { display: none; }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: flex; }
  .hero-stats { grid-template-columns: 1fr; gap: 1.5rem; }
  .split { grid-template-columns: 1fr; }
  .split-img { aspect-ratio: 16/10; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide,
  .gallery-item.tall { grid-column: span 1; grid-row: span 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  section { padding: 4rem 0; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .logo-img { height: 42px; max-width: 160px; }
}

/* ── Premium enhancements ── */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 20px rgba(168, 93, 50, 0.35); }
  50% { box-shadow: 0 4px 32px rgba(201, 162, 39, 0.55); }
}

.hero-content > * {
  animation: fadeUp 0.8s ease both;
}

.hero-content .eyebrow { animation-delay: 0.1s; }
.hero-content h1 { animation-delay: 0.2s; }
.hero-content .hero-text { animation-delay: 0.35s; }
.hero-content .hero-actions { animation-delay: 0.5s; }
.hero-content .hero-stats { animation-delay: 0.65s; }

.hero-bg {
  animation: heroKenBurns 20s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.btn-primary {
  position: relative;
  overflow: hidden;
  animation: pulse-glow 3s ease-in-out infinite;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}

.trust-strip {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 2.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.trust-strip-inner span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-strip-inner .trust-icon {
  color: var(--gold-light);
  font-size: 1rem;
}

.card {
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(201,162,39,0.25), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}

.card:hover::before { opacity: 1; }

.section-header h2 {
  position: relative;
  display: inline-block;
}

.section-header.centered h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--copper));
  margin: 1rem auto 0;
  border-radius: 2px;
}

.marquee-band {
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  padding: 0.85rem 0;
  color: var(--ink);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.marquee-track span { flex-shrink: 0; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.badge-float {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.page-hero h1 {
  color: #ffffff;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .page-hero h1 {
    background: linear-gradient(135deg, #ffffff 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}

.site-header {
  border-bottom-color: rgba(201, 162, 39, 0.12);
}

.nav-desktop a.active {
  color: var(--copper);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  border-radius: var(--radius);
  transition: top 0.2s;
}

.skip-link:focus { top: 1rem; }

/* ── Chatbot ── */
.chatbot-widget {
  position: fixed;
  bottom: 2rem;
  left: 1.25rem;
  z-index: 998;
  font-family: var(--font-body);
}

.chatbot-toggle {
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ink) 0%, var(--teal-deep) 100%);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(14, 22, 36, 0.35);
  transition: transform 0.2s;
  position: relative;
}

.chatbot-toggle:hover { transform: scale(1.06); }
.chatbot-toggle svg { width: 26px; height: 26px; fill: currentColor; }

.chatbot-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background: var(--copper);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-panel {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 0;
  width: min(340px, calc(100vw - 2rem));
  max-height: min(480px, 70vh);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
}

.chatbot-panel[hidden] { display: none !important; }

.chatbot-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  background: var(--ink);
  color: var(--white);
}

.chatbot-header strong { display: block; font-size: 0.95rem; }
.chatbot-header span { font-size: 0.72rem; color: rgba(255,255,255,0.6); }

.chatbot-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  background: var(--cream);
  min-height: 180px;
  max-height: 280px;
}

.chatbot-msg {
  max-width: 88%;
  padding: 0.65rem 0.9rem;
  border-radius: 12px;
  font-size: 0.875rem;
  line-height: 1.45;
}

.chatbot-msg--bot {
  align-self: flex-start;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
}

.chatbot-msg--user {
  align-self: flex-end;
  background: var(--teal);
  color: var(--white);
  border-bottom-right-radius: 4px;
}

.chatbot-options {
  padding: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.chatbot-option {
  padding: 0.5rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--sand);
  border: 1px solid var(--sand-deep);
  border-radius: 100px;
  cursor: pointer;
  transition: 0.2s;
  font-family: var(--font-body);
  color: var(--ink);
}

.chatbot-option:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.chatbot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
}

.chatbot-action {
  flex: 1;
  min-width: calc(50% - 0.25rem);
  text-align: center;
  padding: 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--ink);
  color: var(--white) !important;
  border-radius: var(--radius);
}

.chatbot-action--wa { background: #25d366; }

/* ── Mobile polish ── */
@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .container {
    width: min(var(--max), calc(100% - 1.25rem));
  }

  body { font-size: 1rem; }

  h1 { font-size: clamp(2rem, 8vw, 2.75rem); }
  h2 { font-size: clamp(1.65rem, 6vw, 2.25rem); }

  .hero {
    min-height: auto;
    padding: calc(var(--header-h) + 2.5rem) 0 3rem;
    align-items: center;
  }

  .hero-content { text-align: center; }
  .hero-text { margin-inline: auto; font-size: 1rem; }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn { width: 100%; }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
  }
  .stat-num { font-size: 1.75rem; }
  .stat-label { font-size: 0.68rem; }

  .badge-float {
    font-size: 0.65rem;
    padding: 0.35rem 0.7rem;
    display: inline-flex;
    max-width: 100%;
    text-align: center;
    justify-content: center;
  }

  .trust-strip { padding: 0.75rem 0; }
  .trust-strip-inner {
    gap: 0.65rem 1rem;
    font-size: 0.7rem;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.15rem;
  }
  .trust-strip-inner::-webkit-scrollbar { display: none; }
  .trust-strip-inner span { flex-shrink: 0; }

  .page-hero {
    padding: calc(var(--header-h) + 2.5rem) 0 2.5rem;
  }
  .page-hero .lead { font-size: 1rem; }
  .breadcrumb { font-size: 0.72rem; flex-wrap: wrap; }

  .section-header { margin-bottom: 2rem; }
  .section-header.centered h2 { display: block; }
  .lead { font-size: 1.05rem; }

  .card-body { padding: 1.25rem; }
  .btn { padding: 0.85rem 1.25rem; }
  .btn-primary { animation: none; }
  .btn-primary::after { display: none; }

  .nav-mobile a {
    font-size: 1rem;
    padding: 0.9rem 0;
  }

  .nav-mobile a[href*="desert-safari"],
  .nav-mobile a[href*="global-village"] {
    font-weight: 600;
    color: var(--copper);
  }

  .contact-form { padding: 1.5rem; }
  .whatsapp-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg { width: 26px; height: 26px; }

  .chatbot-widget {
    bottom: 5.5rem;
    left: 1.25rem;
  }

  .chatbot-panel {
    left: 0;
    right: auto;
    width: min(340px, calc(100vw - 2.5rem));
  }

  .marquee-band { padding: 0.65rem 0; }
  .marquee-track { font-size: 0.7rem; gap: 2rem; }

  .cta-band { padding: 3.5rem 0; }
  .cta-band p { font-size: 0.95rem; }

  .footer-grid { gap: 2rem; }
  .site-footer { padding: 3.5rem 0 1.5rem; }

  .features { gap: 1rem; }
  .feature-item { padding: 1.25rem 0.75rem; }

  .package-row { padding: 1.25rem 0; }
  .package-row .btn { width: 100%; margin-top: 0.5rem; }

  .article { padding: 2.5rem 0 4rem; }
  .article-hero-img { aspect-ratio: 16/10; }

  .blog-filters { gap: 0.5rem; }
  .filter-btn { padding: 0.45rem 1rem; font-size: 0.72rem; }

  .steps-row { grid-template-columns: 1fr; gap: 1rem; }
  .step-card { padding: 1.5rem; }
}

@media (max-width: 400px) {
  .hero-stats { grid-template-columns: 1fr; text-align: center; }
  .logo-img { height: 44px; max-width: 190px; }
  .footer-logo { height: 42px; max-width: 170px; }
  .chatbot-widget { left: 1rem; }
}
