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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #070b14;
  color: white;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  width: 600px;
  height: 600px;
  background: rgba(0, 194, 255, 0.15);
  filter: blur(120px);
  top: -200px;
  left: -100px;
  z-index: -1;
}

.section {
  padding: 100px 8%;
}

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

.section-title h2 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.section-title p {
  color: #c0c0c0;
}

.glass-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(15px);
  border-radius: 24px;
}

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

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

.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,15,15,0.95);
}

nav.active {
  display: flex;
}

nav a {
  color: white;
  text-decoration: none;
}

.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: rgba(0,0,0,0.75);
}

.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);
}

.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;
}

.primary-btn {
  background: linear-gradient(135deg, #00c2ff, #006eff);
  color: white;
}

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

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

.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.06);
  transition: 0.3s ease;
}

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

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

.info-card i,
.service-card i {
  font-size: 2rem;
  color: #00c2ff;
  margin-bottom: 15px;
}

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

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

.review-top span {
  color: gold;
}

.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;
}

.service-icons i {
  font-size: 2rem;
  color: #00c2ff;
  margin-bottom: 10px;
}

.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: limegreen;
}

.cta-section {
  padding: 100px 8%;
  text-align: center;
  background: linear-gradient(135deg, #00c2ff, #003cff);
}

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

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

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  padding: 16px;
  border: none;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  color: white;
}

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

footer {
  padding: 30px;
  text-align: center;
  background: black;
}

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

footer a {
  font-size: 1.8rem;
  color: #00c2ff;
  margin: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #00c2ff;
  text-decoration: none;
}

.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, #00c2ff, #0047ff);
  color: white;
  font-size: 1.4rem;
  z-index: 1000;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(0,194,255,0.6);
  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%;
  }
}