/* ==========================================================================
   Vajrabhumi Constructions - Contact Us Page Styles
   ========================================================================== */

/* ==========================================================================
   CONTACT HERO
   ========================================================================== */

.contact-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 90vh;
  padding: 160px 20px;
  background: url("../images/contact-hero.svg") center / cover no-repeat;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 20, 24, 0.55);
}

.contact-hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  animation: contactHeroFade 0.6s ease;
}

.contact-hero-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 0.82rem;
  margin-bottom: 16px;
}

.contact-hero-title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
  color: #fff;
}

.contact-hero-text {
  color: #e6e9ee;
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 14px;
}

.contact-hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

@keyframes contactHeroFade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-hero-content {
    animation: none;
  }
}

/* ==========================================================================
   GET IN TOUCH + SEND AN ENQUIRY
   ========================================================================== */

.contact { background-color: var(--color-white); }

.contact .section-heading.align-left {
  text-align: left;
}

.contact-info > p,
.contact-form-col > p {
  color: var(--color-muted);
  margin-bottom: 28px;
}

.contact-form-col .enquiry-form {
  margin-top: 6px;
}

/* ==========================================================================
   OUR LOCATION
   ========================================================================== */

.contact-location { background-color: var(--color-light); }

.location-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: stretch;
}

.location-info {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  border-top: 4px solid var(--color-primary);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.location-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.location-pin {
  color: var(--color-primary);
  flex-shrink: 0;
}

.location-highlight-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-dark);
}

.location-tagline {
  color: var(--color-muted);
  margin-bottom: 20px;
}

.location-address {
  font-style: normal;
  color: var(--color-muted);
  line-height: 1.9;
  margin-bottom: 26px;
  font-size: 1.05rem;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
}

.location-info .btn {
  align-self: flex-start;
}

.map-container {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 320px;
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 920px) {
  .contact-hero {
    min-height: 78vh;
  }

  .contact-hero-title {
    font-size: 2.4rem;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .location-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .location-info {
    display: contents;
  }

  .location-head {
    order: 1;
    text-align: center;
  }

  .location-head .location-highlight {
    flex-direction: column;
    text-align: center;
  }

  .map-container {
    order: 2;
    min-height: 300px;
  }

  .location-info .btn {
    order: 3;
    align-self: stretch;
    width: 100%;
    text-align: center;
    padding: 15px 28px;
    font-size: 1rem;
  }

  .location-address {
    order: 4;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .contact-hero {
    min-height: 74vh;
    padding: 110px 16px;
  }

  .contact-hero-title {
    font-size: 2rem;
  }

  .contact-hero-text {
    font-size: 1rem;
  }
}