/* ================================================
   CONTACT US PAGE STYLES – contact-us.css
   ================================================ */

/* ---------- Page Hero ---------- */
.page-hero {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  animation: heroZoom 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.06);
  }

  to {
    transform: scale(1);
  }
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(25, 35, 36, 0.7);
  z-index: 2;
}

.page-hero-content {
  position: relative;
  z-index: 3;
  margin-top: 60px;
  animation: fadeUp 0.9s 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}

.breadcrumb a {
  opacity: 0.8;
  transition: opacity var(--transition);
}

.breadcrumb a:hover {
  opacity: 1;
  color: var(--color-gold);
}

.breadcrumb .sep {
  opacity: 0.5;
}

.breadcrumb .current {
  color: var(--color-gold);
}

/* ---------- Contact Form Section ---------- */
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.contact-visual {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
}

.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.form-intro {
  color: var(--color-text-muted);
  font-size: 14px;
  margin-bottom: 40px;
  opacity: 0.8;
}

.main-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.input-group input,
.input-group textarea {
  width: 100%;
  padding: 18px 24px;
  background: #f9f9f9;
  border: 1.5px solid transparent;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  color: var(--color-dark);
  transition: all 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
  outline: none;
  background: var(--color-white);
  border-color: var(--color-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* ---------- Map Section ---------- */
.section-desc-center {
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-divider);
}

.map-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.map-container:hover img {
  transform: scale(1.02);
}

/* ---------- Contact Info Grid ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 30px;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: rgba(197, 165, 104, 0.1);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.info-card:hover .info-icon {
  background: var(--color-gold);
  color: var(--color-dark);
  transform: scale(1.1) rotate(10deg);
}

.info-icon svg {
  width: 28px;
  height: 28px;
}

.info-text h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-dark);
}

.info-text p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ---------- Utility Classes ---------- */
.no-padding-top {
  padding-top: 0 !important;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .page-hero {
    height: 350px;
  }
}