/* GENERAL STYLES */
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: 'Raleway', sans-serif; line-height: 1.6; background: #f4f4f4; color: #333; scroll-behavior: smooth; }

    /* NAVIGATION */
    nav {
      background: #2f4f2f;
      color: white;
      position: sticky;
      top: 0;
      z-index: 1000;
      width: 100%;
    }
    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0.75rem 1rem;
      position: relative;
    }
    .nav-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: white;
      cursor: pointer;
      position: absolute;
      top: 50%;
      right: 1rem;
      transform: translateY(-50%);
    }
    .nav-menu {
      list-style: none;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0;
      margin: 0;
      flex-wrap: wrap;
    }
    .nav-menu li {
      margin: 0.5rem 1rem;
    }
    .nav-menu a {
      color: white;
      text-decoration: none;
      font-weight: bold;
    }
    .nav-menu a:hover {
      text-decoration: underline;
    }
    @media (max-width: 768px) {
      .nav-toggle { display: block; }
      .nav-menu {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-top: 3rem;
      }
      .nav-menu.active { display: flex; }
    }

    /* HEADER */
    header {
      position: relative;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 2rem;
      color: #fff;
      background: url('../../images/home.jpg') no-repeat center center/cover;
      overflow: hidden;
    }
    header::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background-color: rgba(0, 0, 0, 0.55);
      z-index: 0;
    }
    header > * {
      position: relative;
      z-index: 1;
    }
    header h1 {
      font-size: 3rem;
      margin-bottom: 0.5rem;
      font-weight: 700;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    }
    header p {
      font-size: 1.4rem;
      margin-bottom: 1.5rem;
      text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
    }
    header a {
      background: #4CAF50;
      color: white;
      padding: 0.85rem 2rem;
      border-radius: 5px;
      font-weight: 600;
      text-decoration: none;
      transition: background-color 0.3s ease;
      box-shadow: 0 4px 10px rgba(76, 175, 80, 0.5);
    }
    header a:hover {
      background-color: #388E3C;
      box-shadow: 0 6px 14px rgba(56, 142, 60, 0.7);
    }

    /* SECTIONS */
    section { padding: 4rem 2rem; max-width: 1100px; margin: auto; }
    .services, .gallery, .testimonials {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }
    .services div, .testimonials div {
      background: white;
      padding: 1.5rem;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      text-align: center;
    }
    .services i {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      color: #4CAF50;
    }
    .gallery img {
      width: 100%;
      border-radius: 10px;
      height: auto;
    }

    /* CONTACT FORM */
    .contact form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      max-width: 600px;
      margin: auto;
    }
    .contact input, .contact textarea {
      padding: 0.75rem;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-family: inherit;
      font-size: 1rem;
    }
    .contact button {
      padding: 0.75rem;
      background: #4CAF50;
      color: white;
      border: none;
      font-weight: bold;
      border-radius: 5px;
      cursor: pointer;
      transition: background 0.3s;
    }
    .contact button:hover {
      background: #388E3C;
    }

    /* FOOTER */
    footer {
      background: #2f4f2f;
      color: white;
      text-align: center;
      padding: 2rem;
    }
    footer a {
      color: #cce6cc;
      margin: 0 10px;
    }

nav {
  background: #2f4f2f;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
  display: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-menu li a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #2f4f2f;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem 0;
  }

  .nav-menu.active {
    display: flex;
  }
}
