/* Contact Us page */
.contact-hero {
  position: relative; height: 200px; overflow: hidden; background: var(--color-dark);
}
.contact-hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .3;
}
.contact-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,30,22,.95) 0%, rgba(10,30,22,.7) 60%, rgba(10,30,22,.3) 100%);
  display: flex; align-items: center;
}
.contact-hero h1 {
  color: #fff; font-size: clamp(28px, 3vw, 44px); line-height: 1.1; margin: 0;
  letter-spacing: -.025em; text-shadow: 0 2px 18px rgba(0,0,0,.24);
}

.contact-layout { display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: start; }
.contact-left { display: flex; flex-direction: column; gap: 28px; }

.contact-card {
  background: #fff; border: 1.5px solid #e8f0ee; border-radius: 14px; padding: 28px 32px;
  transition: box-shadow var(--duration-slow), transform var(--duration-slow);
}
.contact-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.08); transform: translateY(-2px); }
.contact-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.contact-card-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card h2 { font-size: 20px; letter-spacing: -.02em; margin: 0; }

.contact-map-wrap { position: sticky; top: 96px; }
.contact-map-frame { border-radius: 16px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.12); border: 1.5px solid #e0ebe7; }
.contact-map-note {
  margin-top: 14px; background: #fff; border-radius: 12px; padding: 16px 20px;
  border: 1.5px solid #e0ebe7; display: flex; gap: 12px; align-items: flex-start;
}

.contact-form-success {
  background: #fff; border-radius: 18px; padding: 40px; text-align: center;
  box-shadow: var(--shadow-card); border: 1px solid var(--color-border-soft);
}

@media (max-width: 960px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-map-wrap { position: static; }
}
