* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: url("assets/bg.jpg") no-repeat center center/cover;
  color: white;
  overflow-x: hidden;
}

.bg-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: -1;
}

/* ================================
   NAVBAR
================================ */
.navbar {
  width: 100%;
  padding: 14px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 99;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.logo h2 {
  font-size: 20px;
  font-weight: bold;
}

nav {
  display: flex;
  gap: 18px;
}

nav a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: 0.3s;
}

nav a:hover {
  color: #ffcc00;
}

.menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: white;
  font-size: 26px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.85);
  padding: 20px;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  padding: 12px;
  font-size: 18px;
}

/* ================================
   HERO SECTION
================================ */
.hero {
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: 55px;
  color: #ffcc00;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-content p {
  margin-top: 10px;
  font-size: 18px;
  opacity: 0.95;
}

/* BUTTONS GRID FIX */
.hero-buttons {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 15px;
  justify-content: start;
  align-items: center;
  max-width: 500px;
}

.hero-buttons .btn {
  min-width: 170px;
  text-align: center;
  white-space: nowrap;
}

/* ================================
   BUTTON STYLES
================================ */
.btn {
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.primary {
  background: #ffcc00;
  color: black;
}

.primary:hover {
  transform: scale(1.07);
  background: #ffe066;
}

.secondary {
  background: #00c853;
  color: white;
}

.secondary:hover {
  transform: scale(1.07);
  background: #00e676;
}

/* WhatsApp Button */
.whatsapp-btn {
  background: #25d366;
  color: white;
}

.whatsapp-btn:hover {
  transform: scale(1.07);
  background: #1ebe5d;
}

/* Stock Button */
.stock-btn {
  background: #ff5722;
  color: white;
}

.stock-btn:hover {
  transform: scale(1.07);
  background: #ff7043;
}

/* Contact WhatsApp Button */
.whatsapp {
  background: #25d366;
  color: white;
  margin-top: 20px;
  display: inline-block;
}

.whatsapp:hover {
  transform: scale(1.06);
}

/* HERO IMAGE */
.hero-banner img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.6);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
.about-box {
  max-width: 900px;
  margin: auto;
  padding: 30px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.4);
  font-size: 18px;
  line-height: 1.8;
  text-align: justify;
  color: white;
}
/* ================================
   MAP
================================ */
.map-container {
  margin-top: 15px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);
}

/* ================================
   SECTIONS
================================ */
.section {
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 34px;
  margin-bottom: 40px;
  color: #ffcc00;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.7);
}

/* ================================
   CARDS
================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: auto;
}

.card {
  background: rgba(255, 255, 255, 0.12);
  padding: 22px;
  border-radius: 18px;
  backdrop-filter: blur(10px);
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.4);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #ffe066;
}

.card p {
  font-size: 15px;
  opacity: 0.9;
}

/* ================================
   GALLERY
================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  max-width: 1100px;
  margin: auto;
}

.gallery-grid img {
  width: 100%;
  border-radius: 18px;
  transition: 0.3s;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* ================================
   CONTACT
================================ */
.contact-box {
  max-width: 500px;
  margin: auto;
  padding: 30px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.4);
}

.contact-box a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
}

/* ================================
   FOOTER
================================ */
.footer {
  padding: 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.65);
}

/* ================================
   ANIMATION
================================ */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
.specs-box {
  max-width: 900px;
  margin: auto;
  padding: 30px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.4);
  text-align: left;
}

.specs-box ul {
  list-style: none;
  padding: 0;
}

.specs-box li {
  font-size: 18px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.specs-box li:last-child {
  border-bottom: none;
}
/* ================================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  nav {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero-buttons {
    grid-template-columns: 1fr;
    justify-content: center;
    max-width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 320px;
    margin: auto;
  }

  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 42px;
  }
}
