/**@media(max-width:1000px){

.grid-3{ grid-template-columns:1fr; }
.grid-4{ grid-template-columns:1fr 1fr; }

}

@media(max-width:768px){ **/

/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1100px;
  margin: auto;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: 111;
  color:#fff;
  position: relative;
}

.logo img {
  max-width: 95px;
  height: auto;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #00bcd4;
}

/* Hamburger  */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;

}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.3s;
}

/* MOBILE MENU BUTTON */
/** .menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}  **/

/* CONTACT SECTION */
.contact-container {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.contact-form,
.contact-info {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
}

.btn {
  padding: 10px 20px;
  cursor: pointer;
}

/* FAQ */
.box {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 12px 0;
  font-size: 1rem;
  border: none;
  background: none;
  cursor: pointer;
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

/* =========================
   📱 MOBILE STYLES
========================= */
@media (max-width: 768px) {

  /* NAV */
 /** .menu-toggle {
    display: block;
  }   **/

  .nav-links {
    position: fixed;
    top: 0;
    right: 100%;
    height: 100vh;
    width: 250px;
    background: #111;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  /* Animate hamburger into X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

  /* CONTACT STACK */
  .contact-container {
    flex-direction: column;
  }

  /* FAQ */
  .box {
    padding: 15px;
  }
}