body { font-family: 'Segoe UI', Arial, sans-serif; color: #2b2b2b; }
.navbar-brand { letter-spacing: .5px; }

/* Slider */
.hero-slide { height: 480px; object-fit: cover; filter: brightness(60%); }
.carousel-caption { bottom: 45%; }
.carousel-caption h2 { font-weight: 700; text-shadow: 0 2px 8px rgba(0,0,0,.5); }

/* Section spacing */
.section { padding: 70px 0; }
.section-title { font-weight: 700; margin-bottom: 30px; }

/* Service cards */
.service-card { border: none; border-radius: 12px; box-shadow: 0 4px 18px rgba(0,0,0,.08); transition: transform .2s ease; height: 100%; }
.service-card:hover { transform: translateY(-6px); }
.service-card img { border-radius: 12px 12px 0 0; height: 200px; object-fit: cover; }

/* Forms */
.form-card { border-radius: 14px; box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.captcha-box { background: #ffffff; border-radius: 0px; padding: 10px 15px; font-weight: 600; display: inline-block; }

/* Login */
.auth-wrapper { min-height: 80vh; display: flex; align-items: center; }

/* 1-minute Lead Capture Popup */
.lead-popup-overlay {
  display: none; position: fixed; inset: 0; z-index: 2100;
  background: rgba(17,24,39,.6); align-items: center; justify-content: center; padding: 1rem;
}
.lead-popup-overlay.show { display: flex; }
.lead-popup-box {
  background: #ffffff; border-radius: 0px; padding: 2rem; width: 100%; max-width: 500px;
  position: relative; box-shadow: 0 20px 60px rgba(0,0,0,.3); animation: leadPopupIn .25s ease;
}
.lead-popup-box h4{font-size: 20px !important;}
@keyframes leadPopupIn { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.lead-popup-close {
  position: absolute; top: 0px;
    right: 0px;
    background: none;
    background-color: #eb7b4e !important;
    border: none;
    font-size: 30px;
    line-height: 24px;
    padding-bottom: 7px; color: #ffffff; cursor: pointer;
}
.lead-popup-close:hover { color: #ffffff; background-color:#333333 !important; }

/* Photo Gallery Lightbox (custom, no external library) */
.lightbox-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.92); align-items: center; justify-content: center;
}
.lightbox-overlay.show { display: flex; }
.lightbox-content { max-width: 90vw; max-height: 88vh; text-align: center; }
.lightbox-content img { max-width: 90vw; max-height: 80vh; border-radius: 8px; box-shadow: 0 10px 40px rgba(0,0,0,.5); }
.lightbox-caption { color: #fff; margin-top: .75rem; font-size: 1rem; }
.lightbox-counter { display: block; color: rgba(255,255,255,.6); font-size: .85rem; margin-top: .25rem; }
.lightbox-close {
  position: absolute; top: 18px; right: 24px; background: none; border: none;
  color: #fff; font-size: 2.2rem; line-height: 1; cursor: pointer; z-index: 2001;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12);
  border: none; color: #fff; width: 50px; height: 50px; border-radius: 50%; font-size: 1.2rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s ease;
}
.lightbox-nav:hover { background: rgba(255,255,255,.28); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
@media (max-width: 576px) {
  .lightbox-nav { width: 40px; height: 40px; font-size: 1rem; }
  .lightbox-prev { left: 8px; } .lightbox-next { right: 8px; }
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 1050;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; box-shadow: 0 6px 18px rgba(0,0,0,.25); transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); color: #fff; }

/* Testimonials */
.testimonial-card { border: none; border-radius: 14px; box-shadow: 0 4px 18px rgba(0,0,0,.08); height: 100%; padding: 1.75rem; }
.testimonial-avatar { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.testimonial-quote-icon { color: #4f46e5; opacity: .18; font-size: 2.2rem; }

/* Photo Gallery */
.gallery-item { border-radius: 12px; overflow: hidden; cursor: pointer; position: relative; height: 220px; box-shadow: 0 4px 14px rgba(0,0,0,.08); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gallery-item:hover img { transform: scale(1.08); }

/* Video Gallery */
.video-card { border: none; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 14px rgba(0,0,0,.08); cursor: pointer; }
.video-thumb-wrap { position: relative; height: 180px; }
.video-thumb-wrap img { width: 100%; height: 100%; object-fit: cover; }
.video-play-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 2.6rem; color: #fff; background: rgba(0,0,0,.25); }

/* Home page horizontal video scroller */
.video-scroll-row { display: flex; gap: 1.25rem; overflow-x: auto; padding-bottom: 1rem; scroll-snap-type: x mandatory; }
.video-scroll-row .video-card { flex: 0 0 300px; scroll-snap-align: start; }
.video-scroll-row::-webkit-scrollbar { height: 8px; }
.video-scroll-row::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }
