@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #0b0b0b;
  color: #fff;
}
/* ===== FULL WIDTH NAVBAR ===== */
.navbar {
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(0,0,0,0.97);
}

/* INNER WRAPPER */
.navbar-inner {
  max-width: 1400px;   /* controls stretch on big screens */
  margin: auto;
  padding: 14px 30px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  width: 55px;
}

.nav-logo span {
  color: #C8A951;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* MENU */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-links a {
  color: #C8A951;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: 0.3s;
}

/* HOVER LINE */
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #C8A951;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: #fff;
}

/* CONTACT BUTTON */
.nav-btn {
  background: linear-gradient(45deg,#C8A951,#f3d88f);
  color: #000 !important;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
}

.nav-btn::after {
  display: none;
}

/* MOBILE */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #C8A951;
  cursor: pointer;
}

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

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #000;
    flex-direction: column;
    display: none;
    padding: 20px 0;
  }

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

  .nav-links li {
    margin: 12px 0;
  }
}

/* HERO */
.contact-hero {
  background: linear-gradient(135deg, #000, #1a1a1a);
  text-align: center;
  padding: 90px 20px;
}

.contact-hero h1 {
  font-size: 42px;
  color: #C8A951;
}

.contact-hero p {
  opacity: 0.9;
}

/* CONTAINER */
.contact-container {
  max-width: 1100px;
  margin: 70px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  padding: 0 20px;
}

/* INFO */
.info-box {
  background: linear-gradient(135deg, #111, #000);
  padding: 22px;
  border-radius: 18px;
  margin-bottom: 18px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
  transition: 0.3s;
}

.info-box:hover {
  transform: translateY(-6px);
}

.info-box h3 {
  color: #C8A951;
  margin-bottom: 6px;
}

.info-box a {
  color: #fff;
  text-decoration: none;
}

/* BUTTONS */
.quick-buttons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.whatsapp-btn,
.call-btn {
  flex: 1;
  text-align: center;
  padding: 14px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

.whatsapp-btn {
  background: #25d366;
  color: #000;
}

.call-btn {
  background: #C8A951;
  color: #000;
}

/* FORM */
.contact-form {
  background: #fff;
  padding: 35px;
  border-radius: 22px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.contact-form h2 {
  color: #000;
  text-align: center;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(45deg, #000, #333);
  color: #C8A951;
  font-weight: 600;
  cursor: pointer;
}

.contact-form button:hover {
  background: linear-gradient(45deg, #C8A951, #f1d18a);
  color: #000;
}

/* MAP */
.map-section iframe {
  width: 100%;
  height: 380px;
  border-radius: 20px;
  margin: 50px auto;
  display: block;
}

/* MOBILE */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact-hero h1 {
    font-size: 30px;
  }
}

a, button {
  -webkit-tap-highlight-color: transparent;
}
