:root {
  color-scheme: light;
  --primary: #06b6d4;
  --secondary: #ec4899;
  --accent: #f472b6;
  --dark: #0f172a;
  --light: #f8fafc;
  --muted: #94a3b8;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.2);
}

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

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

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

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

.hero {
  position: relative;
  padding: 7.5rem 6vw 6rem;
  overflow: hidden;
  background: linear-gradient(130deg, #ccfbf1 0%, #e0f2fe 45%, #fce7f3 100%);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.2rem 6vw;
  background: white;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.logo {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-weight: 600;
  color: var(--dark);
}

.nav a {
  color: var(--dark);
}

.cta-button,
.ghost-button {
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button {
  background: linear-gradient(120deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: var(--shadow);
}

.ghost-button {
  border: 2px solid rgba(15, 23, 42, 0.2);
  color: var(--dark);
}

.cta-button:hover,
.ghost-button:hover {
  transform: translateY(-3px);
}

.glow {
  position: relative;
  overflow: hidden;
}

.glow::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -20%;
  width: 60%;
  height: 180%;
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(25deg);
  animation: shimmer 3.5s infinite;
}

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

.hero-text h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.3rem, 3vw, 3.4rem);
  margin: 0.5rem 0 1.2rem;
}

.tagline {
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
}

.subtitle {
  color: #1f2937;
  font-size: 1.05rem;
  max-width: 520px;
}

.hero-actions {
  margin: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-info {
  display: grid;
  gap: 1rem;
  font-size: 0.95rem;
}

.hero-info .label {
  display: block;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: var(--muted);
}

.hero-card {
  position: relative;
  padding: 1rem;
  background: white;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transform: translateY(0);
  animation: float 6s ease-in-out infinite;
}

.card-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--accent);
  color: white;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(236, 72, 153, 0.4);
}

.hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(0);
  opacity: 0.5;
}

.shape.one {
  width: 220px;
  height: 220px;
  background: rgba(6, 182, 212, 0.25);
  top: -60px;
  right: 15%;
  animation: pulse 8s ease-in-out infinite;
}

.shape.two {
  width: 180px;
  height: 180px;
  background: rgba(236, 72, 153, 0.22);
  bottom: 40px;
  left: 5%;
  animation: pulse 7s ease-in-out infinite 1s;
}

.shape.three {
  width: 120px;
  height: 120px;
  background: rgba(244, 114, 182, 0.25);
  top: 35%;
  left: 45%;
  animation: pulse 6s ease-in-out infinite 2s;
}

.section {
  padding: 5rem 6vw;
}

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

.section-header h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  margin-bottom: 0.8rem;
}

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

.service-card {
  background: white;
  padding: 1.8rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card h3 {
  margin-top: 1.4rem;
}

.process {
  background: #0b1324;
  color: white;
}

.process .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

.process-steps {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step {
  background: rgba(255, 255, 255, 0.08);
  padding: 2rem;
  border-radius: 20px;
}

.step span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.highlight-content {
  padding: 2rem;
  background: white;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

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

.gallery-grid img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.highlight-image img {
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.contact {
  background: #f1f5f9;
}

.contact-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.contact-card,
.map-card {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.contact-line {
  margin: 0.7rem 0;
}

iframe {
  width: 100%;
  min-height: 320px;
  border: none;
  border-radius: 16px;
}

.footer {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

@keyframes shimmer {
  0% {
    transform: translateX(-120%) rotate(25deg);
  }
  50% {
    transform: translateX(180%) rotate(25deg);
  }
  100% {
    transform: translateX(180%) rotate(25deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 7rem 5vw 4rem;
  }

  .cta-button,
  .ghost-button {
    width: 100%;
  }
}
