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

:root {
  --bg: #0a0a16;
  --blue: #00c2ff;
  --blue-deep: #006eff;
  --pink: #ff2eb0;
  --pink-deep: #ff0080;
  --purple: #8a3ffc;
  --purple-deep: #5a1fd6;
  --text-soft: #c7c7d9;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: white;
  overflow-x: hidden;
  position: relative;
}

/* Ambient color blobs for life & depth */
body::before {
  content: '';
  position: fixed;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(0, 194, 255, 0.28) 0%, rgba(0, 194, 255, 0) 70%);
  filter: blur(80px);
  top: -220px;
  left: -150px;
  z-index: -1;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 46, 176, 0.24) 0%, rgba(255, 46, 176, 0) 70%);
  filter: blur(90px);
  bottom: -200px;
  right: -150px;
  z-index: -1;
  pointer-events: none;
}

.section {
  padding: 100px 8%;
  position: relative;
}

/* Alternate subtle color washes per section for rhythm */
#about {
  background: radial-gradient(1200px 500px at 15% 0%, rgba(0, 194, 255, 0.07), transparent 60%);
}

#services {
  background: radial-gradient(1200px 500px at 85% 20%, rgba(255, 46, 176, 0.08), transparent 60%);
}

#reviews {
  background: radial-gradient(1200px 500px at 20% 30%, rgba(138, 63, 252, 0.09), transparent 60%);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 3rem;
  margin-bottom: 10px;
  background: linear-gradient(120deg, #ffffff 30%, var(--blue) 65%, var(--pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.section-title p {
  color: var(--text-soft);
}

.text-gradient {
  background: linear-gradient(120deg, var(--blue), var(--purple) 55%, var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glass-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  box-shadow: 0 0 40px rgba(0, 194, 255, 0.06);
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 20px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(8, 6, 20, 0.65);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.logo-accent {
  color: var(--pink);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 10px;
}

nav {
  position: absolute;
  right: 8%;
  top: 80px;
  display: none;
  flex-direction: column;
  gap: 15px;
  padding: 25px;
  border-radius: 20px;
  background: rgba(15,10,30,0.97);
  border: 1px solid rgba(255,255,255,0.08);
}

nav.active {
  display: flex;
}

nav a {
  color: white;
  text-decoration: none;
  transition: color 0.25s ease;
}

nav a:hover {
  color: var(--blue);
}

.hero {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 194, 255, 0.35), transparent 45%),
    radial-gradient(circle at 80% 75%, rgba(255, 46, 176, 0.3), transparent 45%),
    rgba(4, 3, 12, 0.72);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(0, 194, 255, 0.4);
  color: var(--blue);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  color: #d4d4d4;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.primary-btn {
  background: linear-gradient(135deg, var(--blue), var(--purple), var(--pink));
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: white;
  box-shadow: 0 8px 30px rgba(255, 46, 176, 0.25);
}

.primary-btn:hover {
  background-position: 100% 50%;
}

.secondary-btn {
  border: 2px solid var(--pink);
  color: white;
}

.secondary-btn:hover {
  background: rgba(255, 46, 176, 0.12);
}

.btn:hover {
  transform: translateY(-4px);
}

.cta-btn {
  background: white;
  color: var(--purple-deep);
  font-weight: 700;
}

.cta-btn:hover {
  background: #f2f2ff;
}

.cta-btn-outline {
  border: 2px solid white;
  color: white;
}

.cta-btn-outline:hover {
  background: rgba(255,255,255,0.15);
}

.cards-grid,
.services-grid,
.reviews-grid,
.contact-grid,
.service-icons {
  display: grid;
  gap: 25px;
}

.cards-grid,
.services-grid,
.reviews-grid {
  margin-top: 40px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.info-card,
.service-card,
.review-card {
  padding: 30px;
  border-radius: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid transparent;
  transition: 0.3s ease;
}

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

/* Colored accents cycling through the brand palette */
.card-blue,
.info-card.card-blue,
.service-card.card-blue {
  border-top-color: var(--blue);
}
.card-blue:hover {
  box-shadow: 0 10px 35px rgba(0, 194, 255, 0.25);
  border-color: rgba(0, 194, 255, 0.4);
}

.card-pink,
.info-card.card-pink,
.service-card.card-pink {
  border-top-color: var(--pink);
}
.card-pink:hover {
  box-shadow: 0 10px 35px rgba(255, 46, 176, 0.25);
  border-color: rgba(255, 46, 176, 0.4);
}

.card-purple,
.info-card.card-purple,
.service-card.card-purple {
  border-top-color: var(--purple);
}
.card-purple:hover {
  box-shadow: 0 10px 35px rgba(138, 63, 252, 0.28);
  border-color: rgba(138, 63, 252, 0.45);
}

.review-card {
  border-top-color: var(--purple);
}
.review-card:hover {
  box-shadow: 0 10px 35px rgba(138, 63, 252, 0.2);
}

.card-emoji,
.service-emoji,
.service-area-emoji {
  font-size: 2rem;
  margin-bottom: 10px;
}

.info-card i,
.service-card i {
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 15px;
}

.about-content,
.overall-rating,
.service-area-card,
.hours-card,
.calendly-wrapper {
  padding: 40px;
}

.overall-rating {
  text-align: center;
  border: 1px solid rgba(255, 46, 176, 0.3);
}

.overall-rating h3 {
  font-size: 2.2rem;
}

.stars {
  color: #ffcf3f;
  text-shadow: 0 0 12px rgba(255, 207, 63, 0.6);
}

.review-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.service-icons {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 30px;
}

.service-icons div {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
  transition: 0.3s ease;
}

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

.area-blue { border-bottom: 3px solid var(--blue); }
.area-blue:hover { box-shadow: 0 10px 30px rgba(0, 194, 255, 0.2); }

.area-pink { border-bottom: 3px solid var(--pink); }
.area-pink:hover { box-shadow: 0 10px 30px rgba(255, 46, 176, 0.2); }

.area-purple { border-bottom: 3px solid var(--purple); }
.area-purple:hover { box-shadow: 0 10px 30px rgba(138, 63, 252, 0.25); }

.service-icons i {
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 10px;
}

.hours-card {
  border: 1px solid rgba(0, 194, 255, 0.25);
}

.status-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #3dff88;
  box-shadow: 0 0 10px #3dff88;
}

.cta-section {
  padding: 100px 8%;
  text-align: center;
  background: linear-gradient(135deg, var(--blue-deep), var(--purple), var(--pink-deep));
}

.contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.contact-info,
.contact-form {
  padding: 35px;
}

.contact-info {
  border: 1px solid rgba(0, 194, 255, 0.25);
}

.contact-info i {
  color: var(--blue);
  width: 20px;
}

.contact-info p {
  margin-top: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid rgba(255, 46, 176, 0.25);
}

.contact-form input,
.contact-form textarea {
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  color: white;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
}

.contact-form button {
  border: none;
  cursor: pointer;
}

footer {
  padding: 30px;
  text-align: center;
  background: #06040e;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-icons {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer a {
  font-size: 1.8rem;
  margin: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

footer a:hover {
  color: var(--pink);
  transform: translateY(-3px);
}

.floating-call-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--blue), var(--pink));
  color: white;
  font-size: 1.4rem;
  z-index: 1000;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(255, 46, 176, 0.55);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

@media(max-width: 768px) {
  .hero h1 {
    font-size: 2.6rem;
  }

  .section {
    padding: 80px 5%;
  }
}