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

/* Dubai-focused blue theme */

:root {
  --bg: #010819;
  --bg-alt: #020b22;
  --section-bg: #010819;
  --section-bg-alt: #020b22;
  --hero-glow: rgba(0, 106, 240, 0.35);
  --header-bg: rgba(1, 8, 25, 0.94);
  --footer-bg: #010819;

  --panel-bg: radial-gradient(circle at top right, rgba(0, 106, 240, 0.5), #010819);
  --panel-shadow: rgba(3, 7, 18, 0.95);
  --border-subtle: rgba(148, 163, 184, 0.4);
  --border-strong: rgba(0, 106, 240, 0.85);

  --card-bg: rgba(7, 17, 40, 0.98);
  --card-border: rgba(56, 101, 170, 0.7);
  --card-shadow: rgba(3, 7, 18, 0.9);

  --input-bg: #020b22;
  --chip-bg: rgba(3, 16, 46, 0.96);
  --ghost-hover-bg: rgba(7, 24, 64, 0.96);

  --accent: #006af0;
  --accent-soft: #51c2e4;
  --accent-electric: #4adeff;
  --accent-shadow: rgba(0, 106, 240, 0.55);
  --accent-shadow-strong: rgba(0, 106, 240, 0.8);

  --text-main: #f9fafb;
  --text-muted: #e5e7eb;
  --text-soft: #9ca3af;
  --nav-text: #e5e7eb;
}

/* Reset & base */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background-color: var(--bg);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 100% - 3rem);
  margin-inline: auto;
}

.narrow {
  max-width: 720px;
  margin-inline: auto;
}

/* Header / Navigation */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--header-bg);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.8rem;
  gap: 1.5rem;
}

.logo-image {
  height: 70px;
}

.main-nav {
  display: flex;
  gap: 1.8rem;
  font-size: 0.95rem;
  align-items: center;
}

.nav-link {
  position: relative;
  padding: 0.25rem 0;
  color: var(--nav-text);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-soft), var(--accent));
  transition: width 0.18s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--accent-soft);
}

.nav-link.active::after {
  width: 50%;
}

/* Header CTA */

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

/* Mobile nav */

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: transparent;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--nav-text);
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nav-toggle span + span {
  margin-top: 4px;
}

.nav-toggle.open span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle.open span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

/* Hero */

.hero {
  padding-block: 4.4rem 3.6rem;
  background:
    radial-gradient(circle at top left, var(--hero-glow) 0, transparent 45%),
    radial-gradient(circle at bottom right, rgba(0, 27, 114, 0.8), rgba(1, 8, 25, 1) 65%),
    linear-gradient(135deg, #010819, #00112e);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--accent-soft);
  margin-bottom: 0.6rem;
}

.hero-heading {
  font-size: clamp(2.3rem, 3.7vw, 3.1rem);
  margin: 0 0 0.9rem;
}

.accent-blue {
  color: var(--accent);
}

.accent-electric {
  background: linear-gradient(90deg, var(--accent-electric), var(--accent-soft));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text {
  margin-top: 0.6rem;
  color: var(--text-soft);
  max-width: 34rem;
}

.hero-footnote {
  margin-top: 1.4rem;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

/* Hero panel */

.hero-panel {
  border-radius: 1.9rem;
  padding: 1.8rem 1.7rem;
  background: var(--panel-bg);
  color: var(--text-muted);
  box-shadow: 0 26px 65px var(--panel-shadow);
  border: 1px solid rgba(81, 194, 228, 0.8);
}

.hero-panel-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--text-soft);
  margin-bottom: 0.8rem;
}

.hero-panel-title {
  font-size: 1.2rem;
  margin: 0 0 0.6rem;
}

.hero-panel-text {
  font-size: 0.93rem;
  margin: 0 0 1.1rem;
  color: var(--text-muted);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.1rem;
}

.hero-panel-footnote {
  font-size: 0.85rem;
  color: var(--text-soft);
}

/* Sections */

.section {
  padding-block: 3.4rem;
  background: var(--section-bg);
}

.section-alt {
  background: var(--section-bg-alt);
}

.section-title {
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.section-kicker {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.section-text {
  color: var(--text-soft);
  margin-top: 0.4rem;
}

.section-text.narrow {
  max-width: 680px;
  margin-inline: auto;
}

.section-header {
  margin-bottom: 2rem;
}

/* Grids */

.grid {
  display: grid;
  gap: 1.8rem;
}

.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.deliver-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2rem;
}

/* Chips */

.values-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.chip {
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  background: var(--chip-bg);
  color: var(--text-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.chip i {
  font-size: 0.9rem;
}

/* Lists */

.check-list {
  list-style: none;
  padding-left: 0;
  margin: 0.6rem 0 0;
  display: grid;
  gap: 0.45rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.check-list li::before {
  content: "✓";
  margin-right: 0.45rem;
  font-size: 0.8rem;
  color: var(--accent-soft);
}

.bullet-list {
  list-style: disc;
  padding-left: 1.1rem;
  margin: 0.2rem 0 0.2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  display: grid;
  gap: 0.35rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.15s ease,
    transform 0.12s ease,
    box-shadow 0.18s ease,
    border-color 0.15s ease,
    color 0.15s.ease;
  gap: 0.3rem;
}

.btn i {
  font-size: 1rem;
}

.btn.small {
  padding-inline: 0.9rem;
  padding-block: 0.4rem;
  font-size: 0.83rem;
}

.btn.full-width {
  width: 100%;
}

.btn.primary {
  background: linear-gradient(135deg, #006af0, #00346d);
  border-color: #51c2e4;
  color: var(--text-main);
  box-shadow: 0 14px 32px rgba(0, 106, 240, 0.4);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 106, 240, 0.65);
}

.btn.ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text-main);
}

.btn.ghost:hover {
  background: var(--ghost-hover-bg);
}

/* WhatsApp pill */

.whatsapp-pill {
  border-color: #22c55e;
}

.whatsapp-pill i {
  color: #22c55e;
}

/* Icon & number basics */

.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  background: radial-gradient(circle at top left, rgba(81, 194, 228, 0.45), rgba(7, 17, 40, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.9);
}

.card-icon i {
  font-size: 1.3rem;
}

.number-badge {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

/* Contact form */

.contact-form {
  background: rgba(3, 16, 46, 0.98);
  border-radius: 1.4rem;
  padding: 1.6rem 1.5rem;
  border: 1px solid var(--card-border);
  box-shadow: 0 18px 45px var(--card-shadow);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}

.form-row label {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text-soft);
}

.form-row input,
.form-row textarea {
  border-radius: 0.8rem;
  border: 1px solid var(--border-subtle);
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  background: var(--input-bg);
  color: var(--text-main);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--text-soft);
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--accent-soft);
  background: #020b22;
  box-shadow: 0 0 0 1px rgba(81, 194, 228, 0.7);
}

.contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

/* Footer */

.site-footer {
  background: var(--footer-bg);
  color: var(--text-soft);
  padding-top: 2.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: 2rem;
  font-size: 0.9rem;
}

.footer-logo {
  height: 44px;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.85rem;
}

.footer-list {
  list-style: none;
  padding-left: 0;
  margin: 0.5rem 0 0;
  display: grid;
  gap: 0.35rem;
}

.footer-list a {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.footer-list a:hover {
  color: var(--accent-soft);
}

.footer-bottom {
  border-top: 1px solid rgba(15, 23, 42, 0.9);
  margin-top: 1.8rem;
  padding-block: 0.9rem;
  text-align: center;
  font-size: 0.8rem;
}

/* Thank you page & success */

.thank-you {
  background:
    radial-gradient(circle at top left, rgba(0, 106, 240, 0.2), transparent 50%),
    #010819;
}

.success-banner {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1rem;
  border-radius: 1.1rem;
  background: rgba(3, 16, 46, 0.98);
  border: 1px solid rgba(81, 194, 228, 0.7);
  box-shadow: 0 18px 40px rgba(1, 8, 25, 0.96);
  margin-bottom: 1.1rem;
}

.success-banner i {
  font-size: 1.6rem;
  color: #22c55e;
}

.success-title {
  margin: 0;
  font-size: 1.25rem;
}

.success-text {
  margin: 0.25rem 0 0;
  color: var(--text-muted);
}

/* Toast */

.toast {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  min-width: 220px;
  max-width: 320px;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: rgba(3, 16, 46, 0.97);
  border: 1px solid rgba(81, 194, 228, 0.8);
  box-shadow: 0 18px 40px rgba(1, 8, 25, 0.98);
  color: var(--text-muted);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 80;
}

.toast-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.toast-inner {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.87rem;
}

.toast-inner i {
  color: #22c55e;
  font-size: 1.2rem;
}

/* Sub hero */

.sub-hero {
  padding-block: 3.5rem 2.8rem;
  background:
    radial-gradient(circle at top left, rgba(0, 106, 240, 0.25), transparent 52%),
    linear-gradient(145deg, #010819, #00112e);
}

.sub-hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  color: var(--accent-soft);
  margin-bottom: 0.6rem;
}

/* Floating WhatsApp button */

.floating-whatsapp {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: radial-gradient(circle at top left, #22c55e, #15803d);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(21, 128, 61, 0.7);
  color: #f9fafb;
  z-index: 60;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.floating-whatsapp i {
  font-size: 1.6rem;
}

.floating-whatsapp:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 24px 55px rgba(21, 128, 61, 0.85);
  filter: brightness(1.05);
}

/* Reveal on scroll */

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  transition:
    opacity 0.55s ease-out,
    transform 0.55s cubic-bezier(.16,.72,.43,1.39);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Focus strip (center active card) */

.focus-strip {
  position: relative;
  overflow: visible;
  padding-block: 2.2rem 2.2rem;
}

.focus-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(.25,.8,.25,1);
}

.focus-card {
  flex: 0 0 auto;
  max-width: 640px;
  min-width: min(640px, 100%);
  background: var(--card-bg);
  border-radius: 1.6rem;
  border: 1px solid var(--card-border);
  box-shadow: 0 18px 50px var(--card-shadow);
  padding: 1.8rem 1.6rem;
  margin-inline: 0.75rem;
  transform: scale(0.9);
  opacity: 0.55;
  filter: blur(1px);
  cursor: pointer;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    filter 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.focus-card h3 {
  margin-top: 0.2rem;
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.focus-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.93rem;
}

.focus-card.is-active {
  transform: scale(1.1);
  opacity: 1;
  filter: blur(0);
  border-color: var(--accent-soft);
  box-shadow: 0 26px 80px var(--accent-shadow-strong);
  background:
    radial-gradient(circle at top left, rgba(0, 106, 240, 0.35), rgba(7, 17, 40, 0.98));
}

.focus-card-numbered {
  position: relative;
  padding-top: 2.4rem;
}

.focus-card-numbered .number-badge {
  position: absolute;
  top: 1.3rem;
  left: 1.6rem;
}

/* Focus navigation dots */

.focus-dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
}

.focus-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: none;
  background: rgba(148, 163, 184, 0.55);
  padding: 0;
  cursor: pointer;
  transition:
    background 0.2s ease,
    width 0.2s ease,
    transform 0.2s ease,
    opacity 0.2s ease;
  opacity: 0.7;
}

.focus-dot.is-active {
  width: 16px;
  background: var(--accent-soft);
  opacity: 1;
  transform: translateY(-1px);
}

/* Responsive */

@media (max-width: 900px) {
  .hero-grid,
  .contact-grid,
  .two-col,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 3rem;
  }

  .hero {
    padding-block: 3.4rem 3.1rem;
  }

  .hero-grid {
    gap: 2.1rem;
  }

  .main-nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    padding: 0.75rem 1.5rem 1.1rem;
    background: var(--header-bg);
    border-bottom: 1px solid rgba(15, 23, 42, 0.9);
    flex-direction: column;
    gap: 0.6rem;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .main-nav.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .header-inner {
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 1.6rem, 100%);
  }

  .hero-heading {
    font-size: 1.7rem;
    line-height: 1.25;
  }

  .focus-track {
    padding-inline: 0 !important;
  }

  .focus-card {
    min-width: 88% !important;
    max-width: 88% !important;
    margin-inline: 0.5rem !important;
    padding: 1.4rem 1.1rem !important;
    transform: scale(0.94) !important;
    filter: blur(0px) !important;
    opacity: 0.8 !important;
  }

  .focus-card.is-active {
    transform: scale(1.0) !important;
    opacity: 1 !important;
    box-shadow: 0 18px 55px rgba(0, 106, 240, 0.55) !important;
    filter: blur(0px) !important;
  }

  .focus-strip {
    padding-block: 1.4rem !important;
    overflow: visible !important;
  }

  .focus-card h3 {
    font-size: 1rem;
  }

  .focus-card p {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .focus-dots {
    margin-top: 0.7rem;
  }

  .focus-dot {
    width: 6px;
    height: 6px;
  }

  .focus-dot.is-active {
    width: 14px;
  }

  .toast {
    right: 0.8rem;
    left: 0.8rem;
    max-width: none;
  }
}
