* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #000;
  color: #fff;
  font-family: "Playfair Display", serif;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
html {
  scroll-behavior: smooth;
}
.hero-contact {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../update-images/crownsy95.jpg");
  background-size: cover;
  background-position: center;
}
.hero-contact h1 {
  font-family: "Libre Baskerville", serif;
  margin-top: 60px;
  font-size: 60px;
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-contact p {
  max-width: 600px;
  margin: auto;
  opacity: 0.7;
  line-height: 1.8;
}
.contact-section {
  padding: 120px 6%;
  max-width: 1400px;
  margin: auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-info h2 {
  font-family: "Libre Baskerville", serif;
  font-size: 32px;
  font-weight: 200;
  margin-bottom: 30px;
}
.contact-info p {
  opacity: 0.7;
  margin-bottom: 30px;
  line-height: 1.8;
}
.info-box {
  margin-bottom: 25px;
}
.info-box strong {
  display: block;
  margin-bottom: 8px;
}
.info-box span {
  opacity: 0.6;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: 0.4s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #fff;
}
.contact-form textarea {
  resize: none;
  height: 140px;
}
.btn-submit {
  border: 1px solid #fff;
  padding: 14px;
  cursor: pointer;
  transition: 0.4s;
  letter-spacing: 2px;
  background: transparent;
  color: #fff;
}
.btn-submit:hover {
  background: #fff;
  color: #000;
}
.map-section {
  margin-top: 120px;
}
.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
}
.floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #fff;
  color: #000;
  padding: 14px 22px;
  border-radius: 50px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.4s;
}
.floating-wa:hover {
  background: #ddd;
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero-contact h1 {
    font-size: 38px;
  }
}
@media (max-width: 600px) {
  .hero-contact {
    height: 50vh;
  }
  .hero-contact h1 {
    font-size: 38px;
  }
}
.floating-wa {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  color: #000;
  padding: 12px 18px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 300;
  z-index: 999;
}
.wa-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.wa-box {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
}
.wa-box button {
  display: block;
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border: none;
  background: #000;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}
.close {
  display: block;
  margin-top: 40px;
  cursor: pointer;
  color: #000;
}
