* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header */
header {
  background: #1a1919;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(138,134,134,.7);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Nav */
.nav-links {
  list-style: none;
  display: flex;
  gap: 22px;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}
.nav-links a:hover {
  color: #E74C3C;
}

/* Hamburger for mobile */
.hamburger {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}
@media(max-width:900px){
  .hamburger { display: block; }
  .nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: #1a1919;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav.open { max-height: 70vh; }
  .nav-links {
    flex-direction: column;
    gap: 14px;
    padding: 14px 20px;
  }
}

/* Static hero */
.page-hero-static {
  background: url('imgs/vids/ceiling1.jpg') center/cover no-repeat;
  width: 100%;
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 2em;
}
.hero-btn {
  margin-top: 25px;
}

/* Content wrapper */
.content-wrapper {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}
.right-services h3 {
  margin-bottom: 20px;
  text-align: left;
}
.right-services ul {
  padding-left: 20px;
  font-size: .92rem;
  line-height: 1.6;
  text-align: left;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid black;
  color: white;
  transition: .25s;
}
.btn:hover {
  background: white;
  color: #0c0c0c;
}

/* Footer */
.site-footer {
  width: 100%;
  background: #1a1919;
  color: #fff;
  padding: 40px 0 20px;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding: 0 20px;
}
.footer-contact h3,
.footer-services h3 {
  color: #E74C3C;
  margin-bottom: 12px;
}
.footer-contact p,
.footer-contact p a {
  color: #fff;
}
.footer-services {
  text-align: right;
}
.footer-services a {
  color: #fff;
  text-decoration: none;
}
.footer-contact p a:hover,
.footer-services a:hover {
  color: #E74C3C;
}
.footer-services ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-services li {
  margin-bottom: 8px;
}
.footer-bottom {
  text-align: center;
  margin-top: 22px;
  padding: 14px 0 18px;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: .92rem;
  color: #cfcfcf;
}

/* Floating social icons */
.whatsapp-float,
.facebook-float {
  position: fixed;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-size: 1.8rem;
  color: #fff;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(0,0,0,.5);
}
.whatsapp-float { background: #15e662; left: 20px; bottom: 30px; }
.facebook-float { background: #3861b9; left: 20px; bottom: 95px; }
.whatsapp-float:hover,
.facebook-float:hover { opacity: .8; }

/* Stack icons on mobile */
@media(max-width:600px){
  .facebook-float { bottom: 90px; left: 20px; } /* stacked above whatsapp */
}
