/* Reset & Base */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Poppins', 'Montserrat', 'Inter', sans-serif; background: #0a0a0a; color: #fff; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* Navbar */
.navbar { background: #1a1a1a; border-bottom: 1px solid #ffd70033; position: sticky; top: 0; z-index: 10; }
.navbar__container { display: flex; align-items: center; justify-content: space-between; height: 60px; padding: 0.5rem 0; }
.navbar__logo { display: flex; align-items: center; gap: 8px; }
.logo-img { width: 80px; height: 28px; }
.navbar__menu { display: flex; gap: 1.2rem; padding-top: 0; }
.navbar__link { color: #fff; text-decoration: none; font-weight: 500; transition: color 0.2s; height: 36px; display: flex; align-items: center; font-size: 1rem; }
.navbar__link:hover { color: #ffd700; }
.navbar__cta:hover { background: #ffed4e; color: #0a0a0a; }
.navbar__cta { background: #ffd700; color: #0a0a0a; padding: 0.4rem 1rem; border-radius: 8px; font-weight: 600; margin-left: 0.5rem; display: flex; align-items: center; height: 36px; font-size: 1rem; }
.navbar__toggle { display: none; background: none; border: none; color: #ffd700; font-size: 2rem; cursor: pointer; }
.navbar__mobile { display: none; flex-direction: column; gap: 1rem; background: #1a1a1a; padding: 1rem; }

/* Hero */
.section-hero { background: #0a0a0a; padding: 80px 0 60px 0; text-align: center; }
.hero__title { color: #ffd700; font-size: 2.5rem; font-weight: bold; margin-bottom: 1rem; }
.hero__subtitle { color: #ccc; font-size: 1.2rem; margin-bottom: 2rem; }
.hero__cta { background: #ffd700; color: #0a0a0a; padding: 1rem 2.5rem; border-radius: 8px; font-weight: 600; font-size: 1.1rem; text-decoration: none; box-shadow: 0 2px 8px #ffd70033; transition: background 0.2s; }
.hero__cta:hover { background: #ffed4e; }

/* About */
.section-about { background: #1a1a1a; padding: 60px 0; text-align: center; }
.about__title { color: #ffd700; font-size: 2rem; font-weight: bold; margin-bottom: 1rem; }
.about__desc { color: #ccc; max-width: 600px; margin: 0 auto; }

/* Product */
.section-product { background: #0a0a0a; padding: 60px 0; }
.product__title { color: #ffd700; font-size: 2rem; font-weight: bold; text-align: center; margin-bottom: 2rem; }
.product__list { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.product__item { background: #1a1a1a; border-radius: 16px; padding: 2rem 1.5rem; text-align: center; width: 300px; box-shadow: 0 2px 8px #ffd70022; }
.product__img { width: 80px; height: 80px; margin-bottom: 1rem; border-radius: 8px; background: #ffed4e; object-fit: cover; }
.product__name { color: #ffd700; font-size: 1.2rem; font-weight: 600; margin-bottom: 0.5rem; }
.product__desc { color: #ccc; font-size: 1rem; }

/* Contact */
.section-contact { background: #0a0a0a; padding: 60px 0; }
.contact__title { color: #ffd700; font-size: 2rem; font-weight: bold; text-align: center; margin-bottom: 2rem; }
.contact__grid { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.contact__form { background: #1a1a1a; border-radius: 16px; padding: 2rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; min-width: 260px; flex: 1; }
.contact__input { background: #0a0a0a; color: #fff; border: 1px solid #ffd70044; border-radius: 8px; padding: 0.75rem 1rem; font-size: 1rem; }
.contact__btn { background: #ffd700; color: #0a0a0a; border: none; border-radius: 8px; padding: 0.75rem 1.5rem; font-weight: 600; font-size: 1rem; cursor: pointer; transition: background 0.2s; }
.contact__btn:hover { background: #ffed4e; }
.contact__info {
  background: #181818;
  border-radius: 14px;
  box-shadow: 0 2px 12px #0002;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact__info-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.08rem;
  padding: 0.3rem 0.2rem;
  border-radius: 8px;
  transition: background 0.2s;
}
.contact__info-item:hover {
  background: #222;
}
.contact__info-item img {
  width: 24px;
  height: 24px;
  margin-right: 4px;
}
.contact__info-label {
  font-weight: 600;
  color: #ffd700;
  margin-right: 2px;
}
.contact__info-value {
  color: #f3f3f3;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.contact__info-value:hover {
  color: #ffd700;
  text-decoration: underline;
}
.contact__img { width: 100%; max-width: 250px; border-radius: 8px; margin-top: 1rem; }

/* Footer */
.site-footer { background: #1a1a1a; border-top: 1px solid #ffd70033; padding: 2rem 0; text-align: center; }
.site-footer__container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.site-footer__logo { display: flex; align-items: center; gap: 10px; }
.site-footer__nav { display: flex; gap: 1.5rem; }
.site-footer__link { color: #ccc; text-decoration: none; font-weight: 500; transition: color 0.2s; }
.site-footer__link:hover { color: #ffd700; }
.site-footer__copyright { color: #888; font-size: 0.95rem; }

/* Responsive */
@media (max-width: 900px) {
  .product__list, .contact__grid, .site-footer__container { flex-direction: column; align-items: center; }
  .product__item, .contact__form, .contact__info { width: 100%; max-width: 400px; }
}
@media (max-width: 700px) {
  .navbar__container { flex-direction: column; height: auto; gap: 0.3rem; align-items: center; padding: 0.3rem 0; }
  .navbar__logo { width: 100%; justify-content: center; }
  .logo-img { width: 70px; height: 24px; }
  .navbar__menu { display: flex !important; flex-direction: row; width: 100%; justify-content: center; gap: 0.7rem; margin-top: 0.2rem; }
  .navbar__link, .navbar__cta { font-size: 0.95rem; height: 32px; padding: 0.3rem 0.7rem; }
  .navbar__cta { margin-left: 0.3rem; }
  .contact__grid { flex-direction: column; gap: 1.5rem; }
  .contact__info { width: 100%; max-width: 100%; }
  .contact__info-item { 
    flex-direction: column; 
    align-items: flex-start; 
    gap: 0.3rem; 
    word-break: break-word; 
    font-size: 1rem; 
    padding: 0.5rem 0.3rem;
  }
  .contact__info-item img {
    width: 20px;
    height: 20px;
    margin-right: 0;
  }
  .contact__info-label {
    font-size: 0.9rem;
    margin-right: 0;
  }
  .contact__info-value {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  .contact__img, .contact__info iframe { width: 100% !important; max-width: 100% !important; height: 200px !important; }
}

::-webkit-input-placeholder { color: #bbb; }
::-moz-placeholder { color: #bbb; }
:-ms-input-placeholder { color: #bbb; }
::placeholder { color: #bbb; }