/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header */
header {
  background: #3f0071;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.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: #a854ff; }

/* Hamburger */
.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;
    left: 0;
    top: 60px;
    right: 0;
    background: #3f0071;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,.5);
  }
  .nav.open{ max-height: 70vh; }
  .nav-links {
    flex-direction: column;
    padding: 14px 20px;
    gap: 14px;
  }
}

/* Page hero */
.page-hero {
  background: url('imgs/wp1.jpg') center/cover no-repeat;
  color: #fff;
  padding: 90px 20px;
  text-align: center;
  text-shadow: 1px 1px 6px rgba(0,0,0,.7);
  position: relative;
  animation: heroSlide 18s infinite;
}
.page-hero h1 { font-size: 2.7rem; margin-bottom: 30px; }

@keyframes heroSlide {
  0% { background-image: url('imgs/wp1.jpg'); }
  33% { background-image: url('imgs/wp2.jpg'); }
  66% { background-image: url('imgs/wp3.jpg'); }
  100% { background-image: url('imgs/wp1.jpg'); }
}

/* Slide-in hero button */
.slide-in-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid #0d0d0e;
  color: rgb(8,8,8);
  background: #111111;
  opacity: 0;
  transform: translateX(-60px);
  animation: slideIn 3s ease 2.0s forwards;
}
@keyframes slideIn { to { opacity:1; transform: translateX(0); } }
.slide-in-btn:hover {
  background: #0a0a0a;
  border-color: #0d0d0eee;
}

/* Description section */
.wp-description { 
  margin: 40px auto;
  text-align: left;
  line-height: 1.7;
  max-width: 1100px;
  padding: 0 20px;
}
.wp-description p { margin-bottom: 10px; color: #333; }
.wp-description ul { padding-left: 20px; }
.wp-description li { margin-bottom: 6px; }

/* Main content */
.container { max-width: 1100px; margin: 20px auto; padding: 0 20px; }
.lead { font-size: 1.1rem; line-height: 1.7; color: #333; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid #a854ff;
  color: #a854ff;
  transition: .25s;
}
.btn:hover {
  background: #a854ff;
  color: #fff;
}

/* Testimonials */
.testimonials {
  background: #ece7e7;
  padding: 18px 0;
  overflow: hidden;
  border-top: 2px solid #e0e0e0;
  border-bottom: 2px solid #e0e0e0;
}
.testimonials-track {
  display: flex;
  gap: 50px;
  white-space: nowrap;
  animation: scroll-left 25s linear infinite;
}
.testimonials-track p {
  min-width: max-content;
  font-style: italic;
  color: #333;
  font-size: 1rem;
}
@keyframes scroll-left { 0%{transform:translateX(100%);} 100%{transform:translateX(-100%);} }

/* Footer */
.site-footer {
  width: 100%;
  background: #3f0071;
  color: #f3f3f3;
  padding: 40px 0 20px;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px; /* optional inner spacing */
}
.footer-contact h3,
.footer-services h3 { color: #a854ff; margin-bottom: 12px; }
.footer-contact p, .footer-contact p a { color: #fff; }
.footer-services ul { list-style: none; padding: 0; margin: 0; text-align: right; }
.footer-services li { margin-bottom: 8px; }
.footer-services a { color: #f3f3f3; text-decoration: none; }
.footer-services a:hover { color: #a854ff; }
.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 buttons */
.whatsapp-float, .facebook-float {
  position: fixed;
  bottom: 30px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-size: 1.8rem;
  color: #fff;
  z-index: 10000;
  box-shadow: 0 3px 10px rgba(0,0,0,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
  text-decoration: none;
}
.whatsapp-float { background: #15e662; left: 20px; }
.facebook-float { background: #3861b9; left: 20px; margin-top: 70px; } /* stacked with spacing */

.whatsapp-float:hover, .facebook-float:hover { opacity: .8; }

/* Responsive adjustments */
@media(max-width:600px){
  .facebook-float { left: 20px; margin-top: 70px; }
  .footer-content { flex-direction: column; align-items: flex-start; }
  .footer-services ul { text-align: left; margin-top: 20px; }
}



