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

:root {
  color-scheme: only light;
  --blue-dark: #0b1435;
  --bg: #0a0f24;
  --card: #101a42;
  --accent: #20e3ff;
  --accent-2: #ff5ccf;
  --text: #f5f7ff;
  --muted: #c6d0ff;
  --shadow: rgba(12, 17, 38, 0.35);
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at top, #1a2b6b 0%, var(--blue-dark) 45%, #070a1a 100%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

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

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

main {
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding: 40px 7vw 120px;
}

.bg-orb {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(0);
  z-index: -1;
  opacity: 0.45;
  animation: drift 18s ease-in-out infinite;
}

.orb-a {
  background: radial-gradient(circle, rgba(32, 227, 255, 0.7), transparent 70%);
  top: -120px;
  right: -80px;
}

.orb-b {
  background: radial-gradient(circle, rgba(255, 92, 207, 0.6), transparent 70%);
  bottom: -150px;
  left: -60px;
  animation-delay: 6s;
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0) translateX(0) scale(1);
  }
  50% {
    transform: translateY(40px) translateX(20px) scale(1.08);
  }
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 7vw;
  position: sticky;
  top: 0;
  backdrop-filter: blur(16px);
  background: rgba(6, 10, 28, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 10;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  font-weight: 600;
  color: var(--muted);
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0c1025;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.9rem;
  color: var(--muted);
}

.brand-text strong {
  color: var(--text);
  font-size: 1.1rem;
}

.cta-group {
  display: flex;
  gap: 16px;
  align-items: center;
}

.phone {
  font-weight: 600;
  color: var(--accent);
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #071022;
  box-shadow: 0 12px 25px rgba(62, 241, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(255, 122, 198, 0.25);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  line-height: 1.08;
  margin: 18px 0 16px;
}

.hero-content h1 span {
  display: block;
  color: var(--accent);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-top: 10px;
}

.hero-copy {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(32, 227, 255, 0.16);
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 28px 0 36px;
  flex-wrap: wrap;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}

.info-card {
  padding: 18px;
  border-radius: 20px;
  background: rgba(17, 26, 60, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 30px var(--shadow);
  transition: transform 0.2s ease, border 0.2s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(32, 227, 255, 0.4);
}

.info-card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

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

.hero-media {
  display: grid;
  gap: 20px;
  position: relative;
}

.media-card {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(0);
  animation: float 8s ease-in-out infinite;
}

.float-card {
  max-width: 70%;
  justify-self: end;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

.trust-card {
  background: linear-gradient(135deg, rgba(17, 26, 60, 0.95), rgba(17, 26, 60, 0.7));
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 30px 40px var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 12px;
}

.trust-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.trust-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.trust-grid strong {
  display: block;
  margin-bottom: 6px;
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.95rem;
}

.services .section-head {
  max-width: 650px;
  margin-bottom: 32px;
}

.services h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.services p {
  color: var(--muted);
  line-height: 1.7;
}

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

.service-grid article {
  padding: 24px;
  border-radius: 24px;
  background: rgba(15, 22, 48, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease, border 0.2s ease;
  opacity: 0;
  transform: translateY(20px);
}

.service-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 92, 207, 0.5);
}

.gallery .section-head {
  max-width: 650px;
  margin-bottom: 28px;
}

.gallery-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.gallery-grid img {
  border-radius: 20px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-grid img:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 36px rgba(0, 0, 0, 0.45);
}

.showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
}

.showcase-content h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.showcase-content p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.feature-list li {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}

.showcase-media {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 40px rgba(0, 0, 0, 0.4);
  animation: float 10s ease-in-out infinite;
}

.location-card {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  background: rgba(14, 20, 45, 0.95);
  border-radius: 28px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(20px);
}

.location-card p {
  color: var(--muted);
  margin: 14px 0 24px;
}

.map-card {
  border-radius: 20px;
  overflow: hidden;
  min-height: 240px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

footer {
  padding: 50px 7vw 70px;
  background: rgba(7, 9, 17, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: center;
  margin-bottom: 20px;
}

.footer-content span {
  color: var(--muted);
  display: block;
  margin-top: 6px;
}

.footnote {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}

.info-card,
.trust-card,
.showcase-media {
  opacity: 0;
  transform: translateY(20px);
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reduced-motion .info-card,
.reduced-motion .service-grid article,
.reduced-motion .trust-card,
.reduced-motion .showcase-media,
.reduced-motion .location-card {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 800px) {
  .topbar {
    flex-direction: column;
    gap: 16px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-group {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-cards {
    text-align: left;
  }
}
