/* =============================================
   AIS TRAVEL MARROCOS — DESIGN PREMIUM CLEAN
   Inspiração: sites de turismo luxury internacionais
   Paleta Oficial: Preto, Vermelho, Cinza, Branco
   ============================================= */

/* ── HAMBURGER BUTTON ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 8px;
  border-radius: 4px;
  transition: background 0.2s;
}

.nav-hamburger:hover { background: var(--gray-light); }

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU DRAWER ── (base — controlled by JS) */
.mobile-menu {
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 997;
  display: none;
  flex-direction: column;
  padding: 24px 24px;
  gap: 4px;
  overflow-y: auto;
  border-top: 1px solid var(--border);
}

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

.mobile-menu a {
  color: var(--black);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: block;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--red); }

.mobile-menu a:last-child { border-bottom: none; }

.mobile-menu-cta {
  margin-top: 20px;
  background: var(--red) !important;
  color: var(--white) !important;
  text-align: center !important;
  padding: 14px !important;
  border-radius: 8px !important;
  border-bottom: none !important;
}

.mobile-menu-cta:hover { background: var(--red-dark) !important; }

:root {
  --black: #0D0D0D;
  --red: #C41E2A;
  --red-dark: #9E1822;
  --gray-dark: #3D3D3D;
  --gray-mid: #888888;
  --gray-light: #F5F4F1;
  --white: #FFFFFF;
  --border: rgba(0,0,0,0.10);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--black);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { text-decoration: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

/* =============================================
   NAVBAR — Clean single-row
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: 68px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.brand-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}

.logo-main {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.5px;
}

.logo-sub {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--red);
  margin-top: 1px;
  text-transform: uppercase;
}

/* Nav links — minimal */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  color: var(--gray-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
  background: rgba(196,30,42,0.06);
}

/* Right side of nav */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Language toggle — clear and obvious */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--gray-light);
  border-radius: 100px;
  padding: 3px;
  border: 1px solid var(--border);
}

.lang-toggle button {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 100px;
  color: var(--gray-mid);
  transition: all 0.2s;
  font-family: var(--sans);
  display: flex;
  align-items: center;
  gap: 4px;
}

.lang-toggle button.active {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
}

/* CTA button in nav */
.btn-nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-nav-cta:hover {
  background: var(--red-dark) !important;
  color: var(--white) !important;
}

/* =============================================
   HERO — Full screen, clean overlay
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.80) 0%,
    rgba(0,0,0,0.35) 55%,
    rgba(0,0,0,0.15) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 32px 72px;
  max-width: 1180px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 16px;
  max-width: 820px;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.80);
  font-weight: 400;
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-1px);
}

/* Slide dots */
.hero-dots {
  position: absolute;
  bottom: 28px;
  right: 32px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.hero-dot.active {
  background: var(--white);
  transform: scale(1.4);
}

/* =============================================
   CONTACT STRIP — Below hero, minimal
   ============================================= */
.contact-strip {
  background: var(--black);
  display: flex;
  justify-content: center;
  gap: 0;
}

.contact-strip-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  color: var(--white);
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
  cursor: pointer;
}

.contact-strip-link:last-child { border-right: none; }

.contact-strip-link:hover {
  background: rgba(255,255,255,0.05);
}

.strip-flag { font-size: 1.2rem; line-height: 1; }

.strip-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
}

.strip-number {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
}

/* =============================================
   SECTIONS
   ============================================= */
.section {
  padding: 96px 0;
}

.section-sm { padding: 64px 0; }

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-muted {
  background: var(--gray-light);
}

.section-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 12px;
}

.section-label.light {
  color: rgba(255,255,255,0.55);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 16px;
}

.section-title.light { color: var(--white); }

.section-body {
  font-size: 0.95rem;
  color: var(--gray-mid);
  line-height: 1.75;
  max-width: 600px;
}

.section-body.light { color: rgba(255,255,255,0.65); }

/* =============================================
   ABOUT SECTION — editorial two-column
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-photos {
  position: relative;
  height: 520px;
}

.about-photo-main {
  position: absolute;
  top: 0; left: 0;
  width: 72%;
  height: 80%;
  object-fit: cover;
  border-radius: 4px;
}

.about-photo-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 54%;
  height: 54%;
  object-fit: cover;
  border-radius: 4px;
  border: 6px solid var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,0.14);
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.8;
}

.about-badges {
  display: flex;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.badge-item strong {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--red);
  display: block;
}

.badge-item span {
  font-size: 0.75rem;
  color: var(--gray-mid);
  line-height: 1.4;
}

/* =============================================
   DMC — Dark feature grid
   ============================================= */
.dmc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 56px;
}

.dmc-card {
  padding: 40px 28px;
  background: rgba(255,255,255,0.03);
  transition: background 0.2s;
}

.dmc-card:hover {
  background: rgba(255,255,255,0.06);
}

.dmc-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.6;
}

.dmc-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.dmc-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* =============================================
   DESTINATIONS GRID — photo-forward
   ============================================= */
.destinations-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
}

.destinations-intro .section-body {
  font-size: 0.88rem;
  margin: 0;
}

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

.dest-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
}

.dest-card:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.dest-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.dest-card:first-child .dest-img {
  height: 100%;
  min-height: 480px;
}

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

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: background 0.3s;
}

.dest-card:hover .dest-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.1) 55%);
}

.dest-tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}

.dest-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 8px;
}

.dest-card:first-child .dest-name {
  font-size: 2rem;
}

.dest-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease), opacity 0.3s;
  opacity: 0;
}

.dest-card:hover .dest-desc {
  max-height: 80px;
  opacity: 1;
}

.dest-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}

.dest-card:hover .dest-cta {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   SAHARA SECTION — cinematic
   ============================================= */
.sahara-section {
  position: relative;
  min-height: 540px;
  display: grid;
  grid-template-columns: 55% 45%;
}

.sahara-photo {
  position: relative;
  overflow: hidden;
}

.sahara-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 540px;
}

.sahara-content {
  background: var(--black);
  color: var(--white);
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.sahara-content p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 4px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.80);
}

.feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 7px;
}

/* =============================================
   B2B — Clean banner
   ============================================= */
.b2b-block {
  background: var(--black);
  border-radius: 6px;
  padding: 64px 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}

.b2b-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.25;
}

.b2b-text p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
}

/* =============================================
   GALLERY — editorial grid
   ============================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 8px;
  margin-top: 40px;
}

.gallery-grid .g {
  overflow: hidden;
  border-radius: 4px;
}

.gallery-grid .g:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid .g:nth-child(4) { grid-column: span 2; }

.gallery-grid .g img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery-grid .g:hover img {
  transform: scale(1.04);
}

/* =============================================
   TRANSFERS
   ============================================= */
.transfers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.transfer-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 6px;
}

.transfer-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.transfer-text p {
  font-size: 0.9rem;
  color: var(--gray-mid);
  line-height: 1.75;
}

.transfer-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tf-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--gray-dark);
}

.tf-row span:first-child { font-size: 1rem; }

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-info p {
  font-size: 0.9rem;
  color: var(--gray-mid);
  margin-bottom: 32px;
  line-height: 1.75;
}

.wa-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.wa-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--gray-light);
  border-radius: 6px;
  border: 1px solid var(--border);
  color: var(--black);
  font-size: 0.85rem;
  transition: border-color 0.2s, background 0.2s;
}

.wa-btn:hover {
  border-color: var(--red);
  background: #FFF5F5;
}

.wa-btn .wa-flag { font-size: 1.3rem; }

.wa-btn strong { display: block; font-size: 0.85rem; color: var(--black); }
.wa-btn small { font-size: 0.75rem; color: var(--gray-mid); }

.contact-extras {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--gray-mid);
  padding: 16px 0;
  border-top: 1px solid var(--border);
}

/* Form */
.contact-form {
  background: var(--gray-light);
  border-radius: 6px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--border);
}

.form-heading {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--black);
  margin-bottom: 4px;
}

.f-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.f-group label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-dark);
  letter-spacing: 0.5px;
}

.f-group input,
.f-group select,
.f-group textarea {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: 0.875rem;
  font-family: var(--sans);
  background: var(--white);
  color: var(--black);
  transition: border-color 0.2s;
  width: 100%;
}

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

.f-group textarea { resize: vertical; min-height: 110px; }

.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-submit {
  background: var(--black);
  color: var(--white);
  padding: 13px 20px;
  border: none;
  border-radius: 5px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--sans);
  transition: background 0.2s;
  width: 100%;
}

.btn-submit:hover { background: var(--red); }

.form-success {
  display: none;
  background: #EAF7ED;
  border: 1px solid #8BC34A;
  color: #2E7D32;
  padding: 12px 16px;
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.55);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-top: 12px;
  line-height: 1.7;
  max-width: 320px;
}

.cadastur-tag {
  margin-top: 14px;
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 4px 10px;
  border-radius: 3px;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
  transition: color 0.2s;
}

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

.footer-bottom {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
}

/* =============================================
   FLOATING WhatsApp button
   ============================================= */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
}

.wa-float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-float-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

.wa-float-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.wa-float-menu.open { display: flex; }

.wa-float-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 100px;
  padding: 10px 16px 10px 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.14);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
  transition: transform 0.2s;
}

.wa-float-item:hover { transform: scale(1.02); }

.wa-float-item .dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: var(--gray-light);
  flex-shrink: 0;
}

/* =============================================
   SECTION HEADER PAIR
   ============================================= */
.sh { margin-bottom: 56px; }

.sh-center { text-align: center; }
.sh-center .section-body { margin: 0 auto; }

/* =============================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================= */
@media (max-width: 1024px) {
  /* Hide desktop nav links */
  .nav-links { display: none; }

  /* Show hamburger */
  .nav-hamburger { display: flex; }

  /* Destinations */
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .dest-card:first-child { grid-column: 1; grid-row: 1; }

  /* DMC */
  .dmc-grid { grid-template-columns: 1fr 1fr; }

  /* Grids single col */
  .about-grid,
  .transfers-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .about-photos { height: 340px; }
  .b2b-block { flex-direction: column; padding: 48px 36px; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   RESPONSIVE — MOBILE (≤ 640px)
   ============================================= */
@media (max-width: 640px) {
  /* ── CONTAINER ── */
  .container { padding: 0 18px; }

  /* ── SECTIONS ── */
  .section { padding: 56px 0; }
  .section-sm { padding: 40px 0; }
  .sh { margin-bottom: 36px; }

  /* ── NAVBAR ── */
  .navbar { height: 60px; }

  .logo-main { font-size: 1.1rem; }
  .logo-sub  { font-size: 0.55rem; }

  /* Hide CTA in nav on small screens */
  .btn-nav-cta { display: none; }

  /* Language toggle compact */
  .lang-toggle button { padding: 4px 8px; font-size: 0.68rem; }

  /* ── MOBILE MENU (drawer) ── */
  .mobile-menu {
    position: fixed;
    top: 60px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    z-index: 998;
    display: none;
    flex-direction: column;
    padding: 32px 24px;
    gap: 4px;
    overflow-y: auto;
  }

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

  .mobile-menu a {
    color: var(--black);
    font-size: 1.15rem;
    font-weight: 700;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    display: block;
  }

  .mobile-menu a:last-child { border-bottom: none; }

  .mobile-menu-cta {
    margin-top: 24px;
    background: var(--red);
    color: var(--white) !important;
    text-align: center;
    padding: 14px !important;
    border-radius: 8px !important;
    border-bottom: none !important;
  }

  /* ── HERO ── */
  .hero { height: 100svh; min-height: 560px; }

  .hero-content { padding: 0 18px 72px; }

  .hero-eyebrow { font-size: 0.65rem; letter-spacing: 2px; }

  .hero-title { font-size: clamp(2rem, 8vw, 2.6rem); margin-bottom: 12px; }

  .hero-subtitle { font-size: 0.9rem; margin-bottom: 28px; }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.875rem;
  }

  .hero-dots { right: 18px; bottom: 20px; }

  /* ── CONTACT STRIP ── */
  .contact-strip { flex-direction: column; }
  .contact-strip-link {
    padding: 14px 18px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .contact-strip-link:last-child { border-bottom: none; }

  /* ── ABOUT ── */
  .about-grid { gap: 32px; }

  .about-photos { height: 260px; }

  .about-photo-main { width: 78%; height: 85%; }
  .about-photo-accent { width: 50%; height: 50%; border-width: 4px; }

  .about-badges { flex-wrap: wrap; gap: 16px; }

  /* ── DMC ── */
  .dmc-grid { grid-template-columns: 1fr; gap: 1px; }
  .dmc-card { padding: 28px 20px; }
  .dmc-num { font-size: 2.2rem; margin-bottom: 12px; }

  /* ── DESTINATIONS ── */
  .destinations-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 28px;
  }

  .dest-grid { grid-template-columns: 1fr; gap: 14px; }

  .dest-img { height: 240px; }
  .dest-card:first-child .dest-img { min-height: 260px; }

  /* Always show desc on mobile (no hover) */
  .dest-desc {
    max-height: 80px;
    opacity: 1;
  }

  .dest-cta {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── SAHARA ── */
  .sahara-section { grid-template-columns: 1fr; }
  .sahara-photo img { min-height: 260px; height: 260px; }
  .sahara-content { padding: 40px 24px; gap: 16px; }

  /* ── TRANSFERS ── */
  .transfers-grid { gap: 32px; }
  .transfer-img { height: 260px; }

  /* ── B2B ── */
  .b2b-block { padding: 36px 24px; text-align: center; }
  .b2b-text p { font-size: 0.85rem; }

  /* ── GALLERY ── */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 6px;
  }

  .gallery-grid .g { height: 150px; }
  .gallery-grid .g:nth-child(1),
  .gallery-grid .g:nth-child(4) { grid-column: span 1; }

  /* ── CONTACT ── */
  .contact-grid { gap: 36px; }
  .contact-info h2 { font-size: 1.6rem; }
  .contact-form { padding: 24px 18px; }
  .f-row { grid-template-columns: 1fr; }

  /* ── FOOTER ── */
  .footer { padding: 48px 0 0; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }

  .footer-col { display: flex; flex-direction: column; }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    padding: 16px 0;
  }

  /* ── FLOATING WA ── */
  .wa-float { bottom: 20px; right: 16px; }
  .wa-float-btn { width: 50px; height: 50px; }
  .wa-float-item { font-size: 0.75rem; padding: 9px 14px 9px 9px; }
}
