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

body {
  background: #f5f5f5;
  color: #111;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-box img {
  height: 60px;
}

.menu {
  display: flex;
  gap: 30px;
}

.menu a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
}

.menu a:hover {
  color: #ff2c2c;
}

.menu-icon {
  display: none;
  font-size: 32px;
  cursor: pointer;
}

#menu-toggle {
  display: none;
}

@media(max-width: 768px){
  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 85px;
    right: 0;
    width: 100%;
    background: white;
    text-align: center;
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }

  .menu a {
    padding: 12px 0;
    display: block;
  }

  #menu-toggle:checked ~ .menu {
    display: block;
  }

  .menu-icon {
    display: block;
  }
}

/* HERO */
.hero {
  padding: 150px 20px 100px;
  text-align: center;
  background: #e8e8e8;
}

.hero h2 {
  font-size: 36px;
  font-weight: 700;
}

/* SECTIONS */
.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: 700;
}

.products-grid,
.services-grid,
.brands-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 25px;
}

.card {
  background: white;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  text-align: center;
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

/* BRAND LOGOS */
/* BRAND LOGOS */
.brands-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
}

.brand-card {
  background: white;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.brand-card img {
  width: 120px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 10px;
}

.brand-card p {
  font-size: 16px;
  font-weight: 600;
}


/* CONTACT */
.contact {
  background: #111;
  color: white;
  padding: 80px 25px;
}

.contact-box {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
}

/* WHATSAPP */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.whatsapp img {
  width: 70px;
}