.page-hero {
  padding: 155px 0 78px;
  position: relative;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.02) 100%),
    linear-gradient(180deg, rgba(212, 175, 55, 0.06), rgba(212, 175, 55, 0.01)),
    #101010;
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
}

.page-hero::before,
.contact-section::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0, transparent 12%, transparent 88%, rgba(255, 255, 255, 0.02) 100%);
  pointer-events: none;
}

.page-hero .container,
.contact-section .container,
.site-footer .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin: 0;
  text-align: center;
  color: var(--vip-gold);
  font-size: 56px;
  font-weight: 800;
  text-transform: uppercase;
}

.page-hero p {
  margin: 20px 0 0;
  text-align: center;
  color: #e1e1e1;
  font-size: 18px;
  font-weight: 500;
}

.contact-section {
  position: relative;
  padding: 90px 0 110px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.96) 0%, rgba(12, 12, 12, 0.98) 100%);
}

.contact-card,
.contact-form-box,
.map-box {
  background: linear-gradient(90deg, rgba(44, 44, 44, 0.96) 0%, rgba(18, 18, 18, 0.98) 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.contact-card {
  height: 100%;
  padding: 32px 24px;
  border-radius: 18px;
  text-align: center;
  transition: 0.3s ease;
}

.contact-card:hover,
.contact-form-box:hover,
.map-box:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.42);
}

.contact-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  margin: 0 auto 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--vip-gold);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.18);
}

.contact-card.whatsapp .contact-icon {
  color: var(--vip-whatsapp);
  background: rgba(27, 215, 65, 0.12);
  border-color: rgba(27, 215, 65, 0.18);
}

.contact-card h3 {
  margin: 0 0 16px;
  color: var(--vip-gold);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card p,
.contact-card .contact-card.whatsapp .section-title {
  margin-bottom: 24px;
}

.section-title h2 {
  margin: 0;
  color: var(--vip-gold);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-title p {
  margin: 16px 0 0;
  color: #d3d3d3;
  line-height: 1.9;
  font-size: 14px;
}

.contact-form-box,
.map-box {
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  transition: 0.3s ease;
}

.form-label {
  color: var(--vip-gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.8px;
}

.form-control {
  min-height: 50px;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  background: #0c0c0c;
  color: #fff;
  box-shadow: none !important;
  padding: 12px 14px;
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.form-control::placeholder {
  color: #777;
}

.form-control:focus {
  border-color: rgba(212, 175, 55, 0.42);
  background: #101010;
  color: #fff;
}

.map-frame {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 290px;
  background: #0a0a0a;
}

.map-frame iframe {
  width: 100%;
  height: 290px;
  border: 0;
  filter: grayscale(1) contrast(1.1) brightness(0.9);
}

@media (max-width: 991.98px) {
.page-hero {
    padding: 138px 0 64px;
  }

  .page-hero h1 {
    font-size: 42px;
  }
}

@media (max-width: 767.98px) {
.page-hero h1 {
    font-size: 34px;
}

.page-hero p {
    font-size: 16px;
  }

  .contact-section {
    padding: 70px 0 90px;
  }

  .contact-form-box,
  .map-box {
    padding: 22px;
  }
}
