:root {
  --bg: #0a0a1f;
  --bg-alt: #1a1036;
  --primary: #20e0ff;
  --accent: #ff4fd8;
  --text: #f7f4ff;
  --muted: #d7cfff;
  --card: rgba(255, 255, 255, 0.08);
  --glass: rgba(16, 10, 34, 0.72);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #271a5e 0%, var(--bg) 50%);
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: 84px;
}

img {
  width: 100%;
  display: block;
  border-radius: 24px;
}

a {
  color: inherit;
  text-decoration: none;
}

.noise {
  position: fixed;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/asfalt-light.png");
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.hero {
  position: relative;
  z-index: 1;
  padding: 28px 8vw 120px;
  background: linear-gradient(
    135deg,
    rgba(32, 224, 255, 0.18),
    rgba(255, 79, 216, 0.12) 55%,
    transparent 80%
  );
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 8vw;
  background: rgba(10, 10, 31, 0.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-weight: 600;
  color: #ffffff;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
  color: #ffffff;
}

.nav-links a:hover {
  border-color: var(--primary);
}

.cta-btn {
  background: linear-gradient(120deg, var(--accent), #8d7bff);
  color: #120622;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 30px rgba(255, 122, 69, 0.32);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 22px 34px rgba(255, 79, 216, 0.45);
}

.cta-btn.large {
  padding: 14px 28px;
  font-size: 1.05rem;
}

.ghost-btn {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 12px 24px;
  color: var(--text);
  transition: background 0.3s ease;
}

.ghost-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  margin-top: 80px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.eyebrow {
  color: var(--primary);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
}

.subhead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.quick-info {
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.label {
  display: block;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
}

.hero-media {
  position: relative;
  display: grid;
  gap: 24px;
}

.hero-card {
  position: relative;
  padding: 12px;
  border-radius: 28px;
  background: var(--glass);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 60px rgba(4, 10, 22, 0.55);
  transform: translateY(0);
  transition: transform 0.6s ease;
}

.hero-card.secondary {
  margin-left: 40px;
}

.hero-card img {
  border-radius: 20px;
  height: 320px;
  object-fit: cover;
}

.card-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: rgba(11, 22, 45, 0.85);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.services,
.about,
.contact {
  padding: 90px 8vw;
  position: relative;
  z-index: 1;
}

.section-title {
  max-width: 650px;
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 12px;
}

.section-title p {
  color: var(--muted);
  font-size: 1.05rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.service-card {
  padding: 26px;
  background: var(--card);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 30px rgba(7, 15, 32, 0.4);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(75, 210, 255, 0.5);
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.service-card p {
  color: var(--muted);
  line-height: 1.5;
}

.about {
  background: linear-gradient(180deg, transparent, rgba(32, 224, 255, 0.1));
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.about-text p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.about-list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--text);
}

.about-list li::before {
  content: "•";
  color: var(--primary);
  margin-right: 10px;
}

.about-media img {
  height: 360px;
  object-fit: cover;
}

.contact {
  background: linear-gradient(120deg, rgba(255, 79, 216, 0.15), transparent 70%);
}
.gallery {
  padding: 0 8vw 90px;
  position: relative;
  z-index: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 36px rgba(6, 10, 26, 0.35);
}

.contact-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 26px;
  background: rgba(12, 21, 41, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  box-shadow: 0 24px 50px rgba(7, 15, 32, 0.4);
}

.contact-card h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.contact-card p {
  color: var(--muted);
  margin-bottom: 26px;
}

.contact-info {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
  color: var(--text);
}

.contact-info a {
  font-weight: 600;
}

.footer {
  padding: 30px 8vw 60px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .nav {
    justify-content: center;
    gap: 12px;
    padding: 14px 6vw;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  body {
    padding-top: 110px;
  }

  .hero {
    padding: 24px 6vw 80px;
  }

  .hero-card.secondary {
    margin-left: 0;
  }

  .contact-card {
    padding: 30px 24px;
  }
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

.animate-float {
  animation: floaty 5s ease-in-out infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
