body {
  padding-top: 72px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.hero {
  min-height: 90vh;
  background: #f8f9fa;
}

.hero-logo {
  max-width: 180px;
}

.section {
  padding: 80px 0;
}

.review-card {
  background: #fff;
  padding: 24px;
  border-radius: 8px;
}

.footer {
  background: #000;
  color: #fff;
  padding: 20px;
}
.service-row {
  min-height: 420px;
}

.service-image {
  object-fit: cover;
  height: 100%;
  max-height: 520px;
}

.service-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) {
  .service-content {
    padding: 2rem !important;
    text-align: center;
  }
}
.contact-list li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.contact-social a {
  display: inline-block;
  margin-right: 12px;
  margin-bottom: 10px;
  color: #ffffff;
  text-decoration: underline;
}

.contact-social a:hover {
  text-decoration: none;
}

.map-container iframe {
  border-radius: 8px;
}

@media (max-width: 768px) {
  .contact-social {
    text-align: center;
  }
}



/* =========================
   HERO VIDEO BACKGROUND
   ========================= */

   .hero-video {
    position: relative;
    width: 100%;
    height: 100vh;              /* Full viewport height */
    min-height: 600px;          /* Prevents tiny headers */
    overflow: hidden;
    background: #000;           /* Fallback */
  }
  
  /* Video wrapper keeps aspect ratio */
  .video-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
  }
  
  /* Force YouTube iframe to behave like background-cover */
  .video-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.77vh;            /* 16:9 ratio */
    height: 100vh;
    min-width: 100vw;
    min-height: 56.25vw;
    transform: translate(-50%, -50%);
    pointer-events: none;       /* Prevent clicks */
    border: none;
  }
  
  /* Dark overlay for text readability */
  .video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
  }
  
  /* Content stays centered above video */
  .hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 0 1.5rem;
  }
  
  .hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .hero-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    max-width: 720px;
    margin-bottom: 1.5rem;
  }
  
  /* Mobile optimization */
  @media (max-width: 768px) {
    .hero-video {
      min-height: 520px;
    }
  
    .video-wrapper iframe {
      width: 300vw;
      height: 100vh;
    }
  }
  