/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
}

/* Header */
header {
  background: #007bff;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  font-weight: 700;
  font-size: 1.6rem;
}

/* Nav */
.nav-links {
  list-style: none;
  display: flex;
  gap: 22px;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color .3s;
}
.nav-links a:hover { color: #1a1919; }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

/* Mobile nav toggle */
.nav { display: flex; }
@media (max-width: 900px) {
  .hamburger { display: block; }
  .nav {
    display: none;
    flex-direction: column;
    background: black;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 20px;
  }
  .nav.active { display: flex; }
  .nav-links { flex-direction: column; gap: 12px; }
}

/* Hero Section */
.bg-image {
  background: url('imgs/wall2.jpg') center/cover no-repeat;
  width: 100%;
  height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}
.hero-text {
  color: white;
  font-size: 2.7rem;
  font-weight: 800;
  text-shadow: 2px 2px 6px rgba(12, 12, 12, 0.918);
  margin-bottom: 20px;
}
.hero-btn {
  padding: 12px 24px;
  background: #007bff;
  color: black;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hero-btn:hover { background: whitesmoke; }

/* Content Section */
.content-section {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: center;
}
.content-section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #000;
}
.bullet-list {
  list-style: disc;
  text-align: left;
  columns: 2;
  column-gap: 40px;
  margin: 0 auto;
  max-width: 800px;
}
.bullet-list li { margin-bottom: 10px; color: #333; }
.info-paragraph {
  max-width: 900px;
  margin: 20px auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

/* Footer */
.site-footer {
  background: #007bff;
  color: #000;
  padding: 40px 20px 0;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-contact h3,
.footer-services h3 { color: #131212a9; margin-bottom: 12px; }
.footer-contact p,
.footer-services a { color: whitesmoke; text-decoration: none; }
.footer-services ul { list-style: none; padding: 0; margin: 0; }
.footer-services li { margin-bottom: 8px; }
.footer-bottom {
  text-align: center;
  margin-top: 22px;
  padding: 14px 0 18px;
  font-size: .92rem;
  color: #000;
}

/* Floating Social Buttons */
.whatsapp-float,
.facebook-float {
  position: fixed;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  z-index: 10000;
  transition: opacity .3s;
  text-decoration: none;
}
.whatsapp-float { background: #15e662; left: 20px; bottom: 30px; }
.facebook-float { background: #3861b9; left: 20px; bottom: 100px; }
.whatsapp-float:hover,
.facebook-float:hover { opacity: .8; }

/* Stack social icons on mobile */
@media(max-width: 600px){
  .whatsapp-float { bottom: 90px; left: 20px; }
  .facebook-float { bottom: 20px; left: 20px; }
}

/* Responsive */
@media (max-width: 800px){
  .bullet-list { columns: 1; }
}
