/* =========================================================
   contact.css — Contact page only
   Includes: contactHero (left text + right form card),
   mapSection (map iframe/image)
   NOTE: shared header/nav/buttons/footer live in common.css
========================================================= */

/* ===========================
   CONTACT HERO
=========================== */
.contactHero{
  background: #fff;
  padding: 86px 0 96px;
}

.contactHero__grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

/* LEFT */
.contactHero__title{
  margin: 0 0 22px;
  font-size: 80px;
  line-height: 0.98;
  letter-spacing: -1.8px;
  font-weight: 700;
  color: #0E1726;
  font-family: 'Raleway', sans-serif;
  animation: contactIn .55s ease both;
}

.contactHero__title span{ color: var(--maroon); }

.contactHero__desc{
  margin: 0;
  max-width: 640px;
  font-size: 18px;
  line-height: 1.9;
  color: #000;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  animation: contactIn .7s ease both;
  animation-delay: .06s;
}

.contactHero__info{
  list-style: none;
  padding: 0;
  margin: 44px 0 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: contactIn .85s ease both;
  animation-delay: .10s;
}

.contactHero__info li{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #4B5563;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
}

.contactHero__info a{
  color: #4B5563;
  text-decoration: none;
}
.contactHero__info a:hover{ text-decoration: underline; }

.contactIcon{
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon);
  margin-top: 2px;
}
.contactIcon svg{
  width: 22px;
  height: 22px;
}

/* RIGHT CARD */
.contactHero__card{
  background: #fff;
  border-radius: 18px;
  padding: 46px 44px;
  box-shadow: 0 22px 80px rgba(0,0,0,0.35);
  border: 1px solid rgba(14,23,38,0.08);
  transform: translateY(0);
  transition: transform .18s ease, box-shadow .18s ease;
  animation: contactCardIn .65s ease both;
  animation-delay: .08s;
}

.contactHero__card:hover{
  transform: translateY(-3px);
  box-shadow: 0 28px 92px rgba(0,0,0,0.38);
}

.contactForm{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contactInput,
.contactTextarea{
  width: 100%;
  border: 1.5px solid rgba(14,23,38,0.22);
  border-radius: 999px;
  padding: 18px 22px;
  font-size: 18px;
  outline: none;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.contactTextarea{
  border-radius: 26px;
  min-height: 180px;
  resize: none;
  padding-top: 18px;
}

.contactInput:focus,
.contactTextarea:focus{
  border-color: rgba(114,21,22,0.55);
  box-shadow: 0 0 0 6px rgba(114,21,22,0.10);
}

.contactInput:hover,
.contactTextarea:hover{
  border-color: rgba(114,21,22,0.35);
}

/* Submit */
.contactBtn{
  margin-top: 10px;
  width: 100%;
  border: 0;
  background: var(--maroon);
  color: #fff;
  font-size: 18px;
  font-weight: 650;
  border-radius: 999px;
  padding: 18px 22px;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(114,21,22,0.28);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.contactBtn:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(114,21,22,0.34);
}
.contactBtn:active{ transform: translateY(0); }

/* Accessiblity helper */
.srOnly{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* Animations */
@keyframes contactIn{
  from{ opacity: 0; transform: translateY(10px); }
  to{ opacity: 1; transform: translateY(0); }
}

@keyframes contactCardIn{
  from{ opacity: 0; transform: translateY(14px); }
  to{ opacity: 1; transform: translateY(0); }
}


/* ===========================
   MAP SECTION
=========================== */
.mapSection{
  background: #fff;
  padding: 86px 0 96px;
}

.mapCard{
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(14,23,38,0.10);
  box-shadow: 0 18px 52px rgba(0,0,0,0.10);
  transform: translateY(0);
  transition: transform .18s ease, box-shadow .18s ease;
}

.mapCard:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 62px rgba(0,0,0,0.12);
}

.mapFrame{
  width: 100%;
  height: 520px;
  border: 0;
  display: block;
}

.mapImg{
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}


/* =========================================================
   CONTACT — RESPONSIVE (all media queries here)
========================================================= */
@media (max-width: 1024px){
  .contactHero__grid{
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .contactHero__card{ max-width: 720px; }
  .contactHero__title{ font-size: 64px; }

  .mapFrame,
  .mapImg{ height: 420px; }
}

@media (max-width: 768px){
  .contactHero{ padding: 64px 0 72px; }
  .contactHero__title{ font-size: 48px; }
  .contactHero__desc{ font-size: 16px; }
  .contactHero__info li{ font-size: 16px; }
  .contactHero__card{ padding: 30px 22px; }

  .mapSection{ padding: 64px 0 72px; }
  .mapFrame,
  .mapImg{ height: 320px; }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce){
  .contactHero__title,
  .contactHero__desc,
  .contactHero__info,
  .contactHero__card,
  .mapCard{
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}
