:root {
  --bg: #07111f;
  --bg-soft: #0c1d31;
  --card: rgba(255, 255, 255, 0.08);
  --card-border: rgba(255, 255, 255, 0.15);
  --white: #ffffff;
  --muted: #b8c4d6;
  --gold: #f4c76b;
  --blue: #35c7ff;
  --cyan: #52f0ff;
  --green: #30d158;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 26px;
  --max: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(53, 199, 255, 0.23), transparent 34%),
    radial-gradient(circle at top right, rgba(244, 199, 107, 0.18), transparent 34%),
    linear-gradient(180deg, #07111f 0%, #09182a 45%, #07111f 100%);
  color: var(--white);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { width: 100%; display: block; }
button { font: inherit; color: inherit; }
.container { width: min(var(--max), calc(100% - 36px)); margin: 0 auto; }
.section { padding: 90px 0; }
.section-dark { background: rgba(0, 0, 0, 0.12); }

.section-title {
  text-align: center;
  margin-bottom: 42px;
}

.section-title span {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 13px;
}

.section-title h2 {
  margin-top: 12px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}

.section-title p {
  max-width: 690px;
  margin: 15px auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 15px 23px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 800;
  transition: 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  color: #07111f;
  background: linear-gradient(135deg, var(--gold), #fff0b3);
  box-shadow: 0 16px 40px rgba(244, 199, 107, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(244, 199, 107, 0.34);
}

.btn-glass {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.btn-glass:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.13);
}

.full { width: 100%; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--muted);
  font-size: 14px;
}

.badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  transition: 0.25s ease;
  padding: 18px 0;
}

.navbar.scrolled {
  background: rgba(7, 17, 31, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.4px;
}

.logo-img {
  width: 42px;
  height: 42px;
  border-radius: 15px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 23px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover { color: var(--white); }

.mobile-menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.92), rgba(7, 17, 31, 0.50), rgba(7, 17, 31, 0.72)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=90") center/cover no-repeat;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  right: -240px;
  top: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 199, 255, 0.30), transparent 66%);
  filter: blur(10px);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 44px;
}

.hero-content h1 {
  margin-top: 20px;
  font-size: clamp(43px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: -2.5px;
}

.hero-content h1 strong {
  display: block;
  color: var(--gold);
}

.hero-content p {
  max-width: 640px;
  color: var(--muted);
  margin: 24px 0 30px;
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 36px;
  max-width: 650px;
}

.stat-card,
.mini-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px);
}

.stat-card h3 { font-size: 25px; }
.stat-card p { margin: 6px 0 0; font-size: 13px; line-height: 1.5; color: var(--muted); }

.hero-panel {
  position: relative;
  border-radius: 34px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.hero-panel-img {
  height: 520px;
  border-radius: 26px;
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent, rgba(7, 17, 31, 0.58)),
    url("https://images.unsplash.com/photo-1566041510639-8d95a2490bfb?auto=format&fit=crop&w=1200&q=90") center/cover no-repeat;
}

.floating-card {
  position: absolute;
  left: -24px;
  bottom: 40px;
  width: min(310px, calc(100% - 30px));
  padding: 18px;
  border-radius: 24px;
  background: rgba(7, 17, 31, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.floating-card small {
  color: var(--gold);
  font-weight: 900;
}

.floating-card h2 {
  margin: 8px 0;
  font-size: 21px;
}

.floating-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.cards-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card,
.price-card,
.contact-card,
.map-info {
  position: relative;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--card-border);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition: 0.25s ease;
}

.service-card:hover,
.price-card:hover,
.contact-card:hover {
  transform: translateY(-7px);
  background: rgba(255, 255, 255, 0.11);
}

.icon-box {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 22px;
  color: #07111f;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
}

.service-card h3,
.price-card h3,
.contact-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.service-card p,
.price-card p,
.contact-card p,
.map-info p,
.content-block p {
  color: var(--muted);
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.feature-list li {
  color: var(--muted);
  display: flex;
  gap: 10px;
  line-height: 1.5;
}

.feature-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 44px;
}

.visual-card {
  min-height: 470px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  background: center/cover no-repeat;
  position: relative;
}

.visual-card.jet {
  background-image:
    linear-gradient(180deg, transparent, rgba(7, 17, 31, 0.7)),
    url("https://images.unsplash.com/photo-1531366936337-7c912a4589a7?auto=format&fit=crop&w=1200&q=90");
}

.visual-card.drone {
  background-image:
    linear-gradient(180deg, transparent, rgba(7, 17, 31, 0.7)),
    url("https://images.unsplash.com/photo-1473968512647-3e447244af8f?auto=format&fit=crop&w=1200&q=90");
}

.visual-label {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(7, 17, 31, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
}

.visual-label h2 { font-size: 25px; margin-bottom: 8px; }
.visual-label p { color: var(--muted); line-height: 1.6; }

.content-block h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
  margin: 18px 0;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 26px 0;
}

.mini-card strong {
  display: block;
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 5px;
}

.mini-card span {
  color: var(--muted);
  font-size: 14px;
}

.price-card.featured {
  border-color: rgba(244, 199, 107, 0.48);
  background: linear-gradient(180deg, rgba(244, 199, 107, 0.17), rgba(255, 255, 255, 0.08));
  transform: scale(1.03);
}

.popular {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(244, 199, 107, 0.16);
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 12px;
}

.price-tag {
  margin: 22px 0;
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -1px;
}

.price-tag small {
  font-size: 15px;
  color: var(--muted);
  font-weight: 700;
}

.price-card .btn { margin-top: 24px; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  grid-auto-rows: 230px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: #10233b;
  cursor: pointer;
  text-align: left;
}

.gallery-item.large { grid-row: span 2; }

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: 0.35s ease;
}

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

.gallery-item::after {
  content: attr(data-title);
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  padding: 13px 15px;
  border-radius: 18px;
  background: rgba(7, 17, 31, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
  font-weight: 900;
}

.map-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.map-info h3 {
  font-size: 30px;
  margin-bottom: 12px;
}

.map-btn { margin-top: 22px; }

.map-frame {
  min-height: 440px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  background: #10233b;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(1.08) contrast(1.08);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.contact-card { min-height: 190px; }

.contact-card a {
  display: inline-flex;
  margin-top: 15px;
  color: var(--gold);
  font-weight: 900;
  word-break: break-word;
}

.cta { padding: 70px 0 100px; }

.cta-box {
  position: relative;
  padding: 52px;
  border-radius: 36px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(53, 199, 255, 0.26), rgba(244, 199, 107, 0.18)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.cta-box h2 {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
  margin-bottom: 12px;
}

.cta-box p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 660px;
}

footer {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 998;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #07111f;
  font-size: 27px;
  box-shadow: 0 16px 45px rgba(37, 211, 102, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.35);
  transition: 0.25s ease;
}

.whatsapp-float:hover { transform: translateY(-5px) scale(1.04); }

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.82);
  padding: 20px;
}

.modal.active { display: grid; }

.modal img {
  width: min(1000px, 100%);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.modal-close {
  position: absolute;
  right: 24px;
  top: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .nav-links {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(7, 17, 31, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
  }

  .nav-links.active { display: flex; }
  .mobile-menu-btn { display: block; }
  .nav-cta { display: none; }

  .hero-grid,
  .split,
  .map-wrap,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero-panel-img { height: 430px; }

  .cards-grid,
  .pricing-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .price-card.featured { transform: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .hero { padding-top: 120px; }
  .hero-content h1 { letter-spacing: -1.4px; }

  .hero-stats,
  .cards-grid,
  .pricing-grid,
  .contact-grid,
  .mini-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.large { grid-row: span 1; }
  .floating-card { left: 16px; bottom: 16px; }

  .hero-panel-img,
  .visual-card,
  .map-frame {
    min-height: 360px;
    height: 360px;
  }

  .cta-box { padding: 30px; }
  .hero-actions .btn { width: 100%; }
  .footer-inner { justify-content: center; }
}


.disabled-contact {
  display: inline-flex;
  margin-top: 15px;
  color: var(--muted);
  font-weight: 900;
}
