/* =========================
   GLOBAL
========================= */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  overflow-x: hidden;
}

/* =========================
   HEADER
========================= */
header {
  position: sticky;
  top: 0;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a1a1a;
  padding: 10px 20px;
}

.logo img {
  height: 65px;
}

/* =========================
   NAV
========================= */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
}

nav ul li {
  position: relative;
}

nav ul li a {
  color: #fff;
  padding: 10px 14px;
  text-decoration: none;
  display: block;
}

nav ul li a.active,
nav ul li a:hover {
  background: #ff9800;
  border-radius: 4px;
}

/* =========================
   DROPDOWN
========================= */
.dropdown-menu {
  display: none;
  position: absolute;
  background: #333;
  top: 100%;
  min-width: 180px;
  flex-direction: column;
}

.dropdown-menu a {
  padding: 10px;
}

.dropdown.open .dropdown-menu {
  display: flex;
}

/* Desktop hover dropdown */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu {
    display: flex;
  }
}


/* =========================
   BANNER
========================= */
.page-banner {
  height: 350px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.page-banner-content {
  position: relative;
  color: #fff;
  text-align: center;
  max-width: 900px;
  padding: 20px;
}

.page-banner-content h1 {
  font-size: 46px;
}

.page-banner-content p {
  color: #f1c40f;
}

/* =========================
   SECTIONS
========================= */
.about-business {
  padding: 60px 20px;
}

.about-container {
  max-width: 1100px;
  margin: auto;
  background: #fff;
  padding: 35px;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
}

/* =========================
   SERVICES
========================= */

.services-preview {
  padding: 60px 20px;
}

.services-preview h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
}

/* NEW wrapper for grid */
.services-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Service box */
.service-box {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 3px 12px rgba(0,0,0,.12);
  transition: transform .3s ease;
}

.service-box:hover {
  transform: translateY(-6px);
}

/* Same size images */
.service-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-box h3 {
  margin: 15px 0 10px;
  font-size: 22px;
}

.service-box p {
  padding: 0 15px 20px;
  color: #555;
  font-size: 15px;
}

/* =========================
   FOOTER
========================= */
footer {
  background: #1a1a1a;
  color: #fff;
  text-align: center;
  padding: 30px 15px;
}

/* =========================
   FLOATING BUTTONS
========================= */
.floating-contact {
  position: fixed;
  left: 15px;
  top: 60%;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(0,0,0,.4);
}

.call-float {
  background: #007bff;
}

.whatsapp-float {
  background: #25d366;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
  }

  nav.open {
    max-height: 600px;
  }

  nav ul {
    flex-direction: column;
  }

  .dropdown-menu {
    position: static;
    background: #333;
  }

  .page-banner {
    height: 220px;
  }

  .page-banner-content h1 {
    font-size: 26px;
  }
  
   /* Services section */
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   GALLERY GRID
========================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 images per row */
  gap: 20px;
  margin-top: 30px;
}

.gallery-grid > img {
  width: 100%;
  height: 220px;           /* same height for all images */
  object-fit: cover;      /* crops nicely without distortion */
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
  transition: transform .3s ease, box-shadow .3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

/* =========================
   GALLERY RESPONSIVE
========================= */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr); /* tablets */
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr; /* mobile */
  }

  .gallery-grid img {
    height: 200px;
  }
}

/* =========================
   LIGHTBOX FIX
========================= */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
  height: auto;
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(0,0,0,.6);
}

#lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* =========================
   CONTACT ACTION BUTTONS
========================= */
.contact-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin: 35px 0;
  flex-wrap: wrap;
}

.contact-btn {
  min-width: 220px;
  padding: 14px 26px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  transition: transform .25s ease, box-shadow .25s ease;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
}

/* Call button */
.call-btn {
  background: linear-gradient(135deg, #007bff, #0056b3);
}

/* WhatsApp button */
.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.highlights {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  background-color: #fff8f0; /* light background */
  padding: 20px 10px;
  text-align: center;
}

.highlights div {
  background-color: #ff6600; /* orange shade */
  color: white;
  font-weight: bold;
  padding: 15px 20px;
  border-radius: 8px;
  margin: 10px;
  flex: 1 1 200px; /* responsive width */
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}
