/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
/* ═══════════════════════════════════════════
   GetOutOfDubai — Premium Landing Page
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #04070f;
  --panel: rgba(14, 19, 38, 0.72);
  --panel-solid: #0e1326;
  --text: #f0f2ff;
  --muted: #a4b1d4;
  --accent: #8bb4ff;
  --accent-strong: #5b94ff;
  --gold: #d4a857;
  --gold-soft: rgba(212, 168, 87, 0.15);
  --success: #6ee7b7;
  --danger: #fca5a5;
  --border: rgba(140, 160, 220, 0.12);
  --glass: rgba(255, 255, 255, 0.04);
  --radius: 18px;
  --radius-sm: 12px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100dvh;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; }

/* ── TOP BAR ── */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.5rem;
  background: rgba(4, 7, 15, 0.85);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.top-bar__brand {
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.top-bar__badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--success);
  background: rgba(110, 231, 183, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  border: 1px solid rgba(110, 231, 183, 0.2);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(4,7,15,0.15) 0%, rgba(4,7,15,0.55) 50%, rgba(4,7,15,0.96) 100%),
    linear-gradient(120deg, rgba(91,148,255,0.08) 0%, transparent 50%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1100px, 90%);
  margin: 0 auto;
  padding: 0 0 4.5rem;
}

.hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-soft);
  border: 1px solid rgba(212,168,87,0.35);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-top: 1.2rem;
  max-width: 18ch;
}

h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

h3 {
  font-size: 1.05rem;
  font-weight: 600;
}

.lead {
  margin-top: 1rem;
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.55;
}

.micro-copy {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  color: #7e90ba;
  letter-spacing: 0.01em;
}

/* ── BUTTONS ── */
.cta-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  padding: 0.8rem 1.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: 0.5; pointer-events: none; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #020818;
  box-shadow: 0 2px 12px rgba(91,148,255,0.25);
}

.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(91,148,255,0.35);
}

.btn-ghost {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.15);
  color: #dce4ff;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

.btn-ghost:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.07); }

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-whatsapp:hover {
  background: #1ebe57;
  box-shadow: 0 4px 18px rgba(37,211,102,0.35);
}

/* ── FLOATING WHATSAPP ── */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: whatsapp-pulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
}
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.65); }
}

.footer-cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── STATUS STRIP ── */
.status-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(90deg, rgba(212,168,87,0.1), rgba(91,148,255,0.08), rgba(212,168,87,0.1));
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.status-strip strong { color: var(--gold); font-weight: 700; }
.status-strip .sep { color: rgba(255,255,255,0.15); }

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--success); }
  50% { opacity: 0.5; box-shadow: 0 0 12px var(--success); }
}

/* ── PAGE SHELL ── */
.page-shell {
  width: min(1100px, 90%);
  margin: 0 auto;
  padding: 2.5rem 0 0;
  display: grid;
  grid-gap: 1.5rem;
  gap: 1.5rem;
}

/* ── CARDS ── */
.card {
  background: var(--panel);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.04);
}

/* ── SECTION TITLES ── */
.section-title { display: grid; grid-gap: 0.3rem; gap: 0.3rem; margin-bottom: 1.2rem; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.subtitle { color: var(--muted); font-size: 0.95rem; max-width: 56ch; }

/* ── PHOTO SECTION (route) ── */
.photo-section {
  display: grid;
  grid-gap: 0;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.photo-section__img {
  position: relative;
  height: 220px;
}

.photo-section__body {
  padding: 2rem;
}

.steps-list {
  display: grid;
  grid-gap: 0.9rem;
  gap: 0.9rem;
}

.step-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(91,148,255,0.15), rgba(91,148,255,0.06));
  border: 1px solid rgba(91,148,255,0.25);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.step-item h3 { margin-bottom: 0.15rem; }
.step-item p { color: var(--muted); font-size: 0.92rem; }

/* ── PRICING CARD ── */
.pricing-card {
  background: linear-gradient(160deg, rgba(212,168,87,0.06), var(--panel));
  border-color: rgba(212,168,87,0.18);
}

.checklist {
  list-style: none;
  display: grid;
  grid-gap: 0.65rem;
  gap: 0.65rem;
}

.checklist li {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  color: #d0dbf5;
  font-size: 0.95rem;
}

.check-icon {
  flex-shrink: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ── DUBAI REASSURANCE ── */
.dubai-section {
  background: linear-gradient(160deg, rgba(91,148,255,0.06), var(--panel));
  border-color: rgba(91,148,255,0.15);
  text-align: center;
}
.dubai-body {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
}

/* ── TRUST ── */
.trust-section {
  padding: 0.5rem 0 0;
}

.trust-grid {
  display: grid;
  grid-gap: 0.85rem;
  gap: 0.85rem;
}

.trust-card {
  background: var(--panel);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: grid;
  grid-gap: 0.45rem;
  gap: 0.45rem;
}

.trust-icon {
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.trust-card p { color: var(--muted); font-size: 0.92rem; }

/* ── PHOTO DIVIDER ── */
.photo-divider {
  position: relative;
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0.5rem 0;
}

.photo-divider__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(4,7,15,0.85), rgba(4,7,15,0.4));
  z-index: 1;
}

.photo-divider__text {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.85);
}

/* ── FORM SECTION ── */
.form-section { overflow: hidden; }

.intake-form { display: grid; grid-gap: 1rem; gap: 1rem; }

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

label {
  display: grid;
  grid-gap: 0.3rem;
  gap: 0.3rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: #c2d0f0;
}

input, textarea {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(6,10,22,0.8);
  color: var(--text);
  padding: 0.72rem 0.85rem;
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(91,148,255,0.15);
}

input::placeholder, textarea::placeholder {
  color: #5a6a90;
}

.full-width { grid-column: 1 / -1; }

.error-text { color: var(--danger); font-size: 0.82rem; }
.form-error { color: var(--danger); font-size: 0.9rem; }

.form-actions {
  display: grid;
  grid-gap: 0.45rem;
  gap: 0.45rem;
  margin-top: 0.3rem;
}

.form-actions .micro-copy { margin-top: 0; }

/* ── SUCCESS ── */
.success-panel {
  border: 1px solid rgba(110,231,183,0.3);
  border-radius: var(--radius);
  background: rgba(110,231,183,0.06);
  padding: 1.5rem;
  display: grid;
  grid-gap: 0.5rem;
  gap: 0.5rem;
}

.success-panel h3 { font-size: 1.2rem; }
.success-panel p { color: #c3ead9; }

/* ── FAQ ── */
.faq-section { border-color: var(--border); }

.faq-list { display: grid; grid-gap: 0.55rem; gap: 0.55rem; }

details {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,0.02);
  transition: background 0.2s;
}

details[open] { background: rgba(255,255,255,0.04); }

summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  list-style: none;
}

summary::-webkit-details-marker { display: none; }

summary::before {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-right: 0.65rem;
  border-radius: 6px;
  background: rgba(91,148,255,0.1);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  flex-shrink: 0;
  transition: transform 0.2s;
}

details[open] summary::before { content: '−'; }

details p { margin-top: 0.6rem; padding-left: 2.1rem; color: var(--muted); font-size: 0.92rem; }

.disclaimer {
  margin-top: 1.2rem;
  border-left: 3px solid var(--gold);
  padding: 0.6rem 0 0.6rem 1rem;
  color: #e4c88a;
  font-size: 0.88rem;
  background: var(--gold-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ── FOOTER ── */
.site-footer {
  position: relative;
  margin-top: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  height: 280px;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4,7,15,0.92), rgba(4,7,15,0.5));
  z-index: 1;
}

.footer-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
}

.footer-brand {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer-powered {
  color: var(--muted);
  font-size: 0.85rem;
}
.footer-powered strong {
  color: var(--text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── RESPONSIVE ── */
@media (min-width: 760px) {
  .card { padding: 2.4rem; }

  .photo-section {
    grid-template-columns: 2fr 3fr;
  }

  .photo-section__img { height: auto; min-height: 340px; }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-divider { height: 240px; }
}

@media (min-width: 1024px) {
  .hero-content { padding-bottom: 6rem; }

  h1 { max-width: 16ch; }

  .photo-section__body { padding: 2.5rem; }
  
  .site-footer { height: 320px; }
}
