/* =========================================================
   Contact page styles (scoped)
   File: assets/css/contact.css
   ========================================================= */

.page-contact{
  padding-top: 96px; /* keeps content below fixed header */
}

/* Hero */
.page-hero{
  padding: 24px 0 10px;
}
.page-hero-card{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(2,6,23,.10);
  box-shadow: 0 18px 50px rgba(2,6,23,.10);
  background: #0b1220;
}
.page-hero-img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  opacity: .88;
}
.page-hero-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 22px 18px;
  background: linear-gradient(180deg, rgba(11,18,32,0) 0%, rgba(11,18,32,.70) 58%, rgba(11,18,32,.85) 100%);
}
.page-title{
  margin: 0;
  color: #fff;
  font-weight: 800;
  letter-spacing: .2px;
}
.page-subtitle{
  margin: 6px 0 0;
  color: rgba(255,255,255,.86);
  max-width: 60ch;
}

/* Contact cards */
.contact-section{
  padding: 18px 0 48px;
}
.contact-card{
  display: flex;
  gap: 14px;
  padding: 18px 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(2,6,23,.08);
  box-shadow: 0 14px 40px rgba(2,6,23,.06);
}
.contact-card-icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(4,61,145,.10);
  color: #043d91;
  font-size: 20px;
  flex: 0 0 auto;
}
.contact-card-title{
  font-size: 16px;
  margin: 0 0 6px;
  font-weight: 800;
  color: #0f172a;
}
.contact-card-text{
  margin: 0;
  color: rgba(15,23,42,.80);
  line-height: 1.6;
}
.contact-link{
  color: #043d91;
  text-decoration: none;
  font-weight: 700;
}
.contact-link:hover{
  text-decoration: underline;
}

/* Map */
.map-card{
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(2,6,23,.08);
  box-shadow: 0 14px 40px rgba(2,6,23,.06);
}
.map-card-header{
  padding: 18px 18px 12px;
}
.map-title{
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  color: #0f172a;
}
.map-subtitle{
  margin: 6px 0 0;
  color: rgba(15,23,42,.70);
}
.map-embed iframe{
  display: block;
}

/* Responsive */
@media (max-width: 576px){
  .page-hero-img{ height: 240px; }
  .page-subtitle{ max-width: 100%; }
  .contact-card{ padding: 16px; }
}
