@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap");

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

:root {
  color-scheme: light;
  --bg: #0b0b22;
  --card: rgba(255, 255, 255, 0.08);
  --text: #f9f7ff;
  --muted: rgba(255, 255, 255, 0.7);
  --accent: #ff4fd8;
  --accent-2: #18d7ff;
  --accent-3: #7df7ff;
  --glass: rgba(10, 12, 34, 0.7);
}

body {
  font-family: "Space Grotesk", system-ui, sans-serif;
  background: radial-gradient(circle at top, #1b1440 0%, #0b0b22 60%);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

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

.bg-orb {
  position: absolute;
  filter: blur(0px);
  opacity: 0.65;
  z-index: 0;
  animation: float 12s ease-in-out infinite;
}

.orb-1 {
  width: 320px;
  height: 320px;
  top: 6%;
  left: -80px;
  background: radial-gradient(circle, #ff4fd8, #ff79e8);
  border-radius: 50%;
}

.orb-2 {
  width: 240px;
  height: 240px;
  top: 18%;
  right: -80px;
  background: radial-gradient(circle, #18d7ff, #00a6ff);
  border-radius: 50%;
  animation-delay: 1.5s;
}

.orb-3 {
  width: 320px;
  height: 320px;
  bottom: 10%;
  right: 15%;
  background: radial-gradient(circle, #ff4fd8, #7df7ff);
  border-radius: 50%;
  animation-delay: 2.5s;
}

.hero {
  padding: 120px 6% 32px;
  position: relative;
  z-index: 1;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px 6%;
  background: #ffffff;
  color: #0b0b22;
  box-shadow: 0 12px 30px rgba(12, 12, 24, 0.15);
  z-index: 1000;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 12px rgba(255, 79, 216, 0.6);
}

.nav-actions {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav-link {
  color: rgba(11, 11, 34, 0.7);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #0b0b22;
}

.cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(255, 79, 216, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta.large {
  font-size: 1rem;
  padding: 14px 28px;
}

.cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 40px rgba(125, 247, 255, 0.35);
}

.ghost {
  border: 1px solid rgba(11, 11, 34, 0.2);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 500;
  color: rgba(11, 11, 34, 0.7);
  transition: all 0.3s ease;
}

.ghost:hover {
  border-color: rgba(11, 11, 34, 0.6);
  color: #0b0b22;
}

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

.hero-text h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-text h1 span {
  display: block;
  color: var(--accent-3);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  margin-top: 8px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

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

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

.badge {
  background: var(--card);
  padding: 14px 18px;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.badge span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}

.hero-media {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.image-card {
  padding: 14px;
  background: var(--glass);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(10, 20, 60, 0.4);
  transform: translateY(0);
  animation: float 8s ease-in-out infinite;
}

.image-card.small {
  width: 70%;
  align-self: flex-end;
  animation-delay: 1.2s;
}

.section {
  padding: 80px 6%;
  position: relative;
  z-index: 1;
  scroll-margin-top: 110px;
}

.section-header {
  max-width: 680px;
  margin-bottom: 36px;
}

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

.section-header p {
  color: var(--muted);
  line-height: 1.6;
}

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

.service-card {
  background: var(--card);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.4s ease, box-shadow 0.3s ease, opacity 0.6s ease;
  opacity: 0;
  transform: translateY(18px);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(10, 20, 60, 0.3);
}

.media-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  padding-top: 20px;
}

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

.gallery-item {
  border-radius: 22px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.media-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.media-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.media-item:hover img {
  transform: scale(1.05);
}

.media-overlay {
  position: absolute;
  inset: auto 16px 16px 16px;
  background: rgba(7, 10, 25, 0.7);
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 500;
}

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

.why-card {
  background: linear-gradient(135deg, rgba(255, 79, 216, 0.2), rgba(24, 215, 255, 0.15));
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.contact {
  padding-bottom: 100px;
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  background: rgba(11, 16, 34, 0.85);
  border-radius: 30px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 70px rgba(6, 12, 40, 0.5);
}

.contact-card h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-phone a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-3);
}

.hours {
  margin-top: 8px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact-form input,
.contact-form select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(7, 10, 25, 0.6);
  color: var(--text);
}

.contact-form button {
  padding: 14px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  color: #091022;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(24, 215, 255, 0.35);
}

.footer {
  text-align: center;
  padding: 26px 6% 40px;
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.footer .small {
  margin-top: 8px;
  font-size: 0.85rem;
}

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

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 24px 5%;
  }

  .section {
    padding: 64px 5%;
  }

  .nav-actions {
    gap: 12px;
  }

  .cta {
    width: 100%;
    text-align: center;
  }

  .ghost {
    width: 100%;
    text-align: center;
  }
}
