/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
  color: #2e2e2e;
  background: #fff;
}

/* CONTAINER */
.container {
  width: 92%;
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.header {
  background: #f2f2f2;
  padding: 15px 0;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.4rem;
}

nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: #2e2e2e;
  font-weight: 500;
}

/* BUTTONS */
.btn {
  background: #2e2e2e;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
}

.btn-large {
  padding: 14px 28px;
  font-size: 1.05rem;
}

/* HERO */
.hero {
  background: linear-gradient(to bottom, #e6e6e6, #ffffff);
  padding: 70px 15px;
  text-align: center;
}

.hero h2 {
  font-size: 2rem;
}

.price {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 10px 0;
}

/* PRICING */
.pricing {
  padding: 50px 0;
  text-align: center;
}

.price-card {
  background: #f2f2f2;
  padding: 25px;
  border-radius: 10px;
  margin-top: 20px;
}

/* SERVICES */
.services {
  padding: 60px 0;
  background: #fafafa;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin-top: 25px;
}

.service-card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

/* ABOUT + HOW */
.about, .how {
  padding: 60px 0;
}

.how ol {
  padding-left: 20px;
  margin-top: 15px;
}

/* MAP */
.map-section {
  padding: 60px 0;
  background: #f2f2f2;
}

.map-container iframe {
  width: 100%;
  height: 320px;
  border: none;
  border-radius: 10px;
}

/* CONTACT */
.contact {
  padding: 50px 0;
  text-align: center;
}

/* FOOTER */
.footer {
  background: #2e2e2e;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* WHATSAPP BUTTON */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 90px;
  width: 55px;
  height: 55px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  text-decoration: none;
  z-index: 999;
}

/* STICKY CALL (MOBILE ONLY) */
.sticky-call {
  display: none;
}

/* MOBILE FIXES */
@media (max-width: 768px) {

  nav {
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }

  .hero h2 {
    font-size: 1.6rem;
  }

  .price {
    font-size: 1.4rem;
  }

  .sticky-call {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #2e2e2e;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 1.1rem;
    text-decoration: none;
    z-index: 1000;
  }

  .whatsapp-float {
    bottom: 75px;
  }

  body {
    padding-bottom: 70px;
  }
}
.hero {
  background: url("https://images.unsplash.com/photo-1502877338535-766e1452684a") center/cover no-repeat;
  height: 75vh;
  position: relative;
}

.hero-overlay {
  background: rgba(0,0,0,0.55);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  color: #fff;
  text-align: center;
  padding: 20px;
}
.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}
.about-flex {
  display: flex;
  gap: 30px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .about-flex {
    flex-direction: column;
  }
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin-top: 30px;
  text-align: center;
}

.how-step {
  background: #f2f2f2;
  padding: 20px;
  border-radius: 10px;
  font-size: 1.5rem;
}

.how-step p {
  font-size: 1rem;
  margin-top: 10px;
}
