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

:root {
  color-scheme: light;
  --navy: #0b0f2a;
  --cyan: #11d7ff;
  --cyan-soft: #7ef2ff;
  --pink: #ff5ec4;
  --pink-soft: #ff92da;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.16);
}

body {
  font-family: "Montserrat", sans-serif;
  background: #f7f3ff;
  color: var(--navy);
  line-height: 1.6;
  min-height: 100vh;
}

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

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

.page-gradient {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(17, 215, 255, 0.35), transparent 55%),
    radial-gradient(circle at 90% 10%, rgba(255, 94, 196, 0.35), transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(126, 242, 255, 0.25), transparent 55%);
  z-index: -2;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.9);
  z-index: 10;
  border-bottom: 1px solid rgba(10, 19, 47, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  font-weight: 500;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--pink);
  transition: transform 0.3s ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

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

.cta-button {
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  color: var(--white);
  box-shadow: 0 15px 25px rgba(255, 94, 196, 0.35);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(17, 215, 255, 0.4);
}

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

.ghost-button:hover {
  transform: translateY(-2px);
  border-color: var(--pink);
}

.hero {
  padding: 5.5rem 0 4rem;
}

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

.hero-copy h1 {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  margin: 0.8rem 0 1rem;
}

.hero-copy p {
  max-width: 520px;
  margin-bottom: 1.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pink);
}

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

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  background: var(--glass);
  padding: 1.5rem;
  border-radius: 20px;
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.hero-highlights h3 {
  margin-bottom: 0.4rem;
}

.hero-media {
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 50px rgba(10, 19, 47, 0.25);
  animation: float 6s ease-in-out infinite;
}

.image-tag {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(11, 15, 42, 0.82);
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.services {
  padding: 4.5rem 0 4rem;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title h2 {
  font-size: clamp(2rem, 2.5vw, 3rem);
}

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

.service-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(11, 15, 42, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 46px rgba(255, 94, 196, 0.2);
}

.service-content {
  padding: 1.5rem;
}

.process {
  padding: 4.5rem 0;
}

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

.process-copy h2 {
  font-size: clamp(2rem, 2.6vw, 3.1rem);
  margin-bottom: 1rem;
}

.steps {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  padding: 1.2rem;
  border-radius: 16px;
  box-shadow: 0 16px 28px rgba(10, 19, 47, 0.08);
}

.step span {
  font-weight: 700;
  color: var(--cyan);
}

.process-media img {
  border-radius: 28px;
  box-shadow: 0 25px 40px rgba(10, 19, 47, 0.15);
}

.cta-panel {
  padding: 4.5rem 0 5rem;
}

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

.cta-copy h2 {
  font-size: clamp(2rem, 2.8vw, 3rem);
  margin-bottom: 1rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.contact-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 20px 38px rgba(11, 15, 42, 0.12);
}

.contact-card h3 {
  margin-bottom: 1rem;
}

.contact-card .phone {
  font-weight: 700;
  color: var(--pink);
  font-size: 1.1rem;
}

.hours {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
  font-size: 0.9rem;
}

.hours span {
  display: block;
  color: var(--cyan);
  font-weight: 600;
}

.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 2.5rem 0;
}

.gallery {
  padding: 4.5rem 0;
}

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

.gallery-card {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(11, 15, 42, 0.12);
  border: 1px solid rgba(255, 94, 196, 0.12);
  background: var(--white);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(17, 215, 255, 0.25);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  font-size: 0.95rem;
}

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

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

.delay-1 {
  transition-delay: 0.15s;
}

.delay-2 {
  transition-delay: 0.3s;
}

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

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

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

@media (max-width: 600px) {
  .hero {
    padding-top: 4rem;
  }

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

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }
}
