/* Contact page enhancement only.
   Keep assets/styles.css unchanged.
   This file only improves the Contact page map section and "Send us a message" area. */

/* MAIN CONTACT SECTION */
.mp-contact-section{
  position:relative;
  overflow:hidden;
  padding-top:4rem;
  padding-bottom:4rem;
  background:
    radial-gradient(circle at 8% 10%, rgba(255,212,0,.20), transparent 22%),
    radial-gradient(circle at 95% 65%, rgba(255,212,0,.18), transparent 20%),
    linear-gradient(135deg,#fff,#fff8df);
}

.mp-contact-section::before{
  content:"";
  position:absolute;
  right:-170px;
  top:90px;
  width:680px;
  height:155px;
  background:var(--yellow);
  transform:rotate(-13deg);
  clip-path:polygon(0 24%,100% 0,92% 72%,100% 100%,0 78%);
  opacity:.38;
  pointer-events:none;
}

/* WIDER MAP LAYOUT */
.mp-contact-grid{
  display:grid;
  grid-template-columns:.75fr 1.45fr;
  gap:2rem;
  align-items:stretch;
  position:relative;
  z-index:2;
}

.mp-contact-info{
  background:rgba(255,247,213,.98);
}

.mp-contact-kicker{
  display:inline-flex;
  background:var(--black);
  color:var(--yellow);
  border-radius:999px;
  padding:.45rem .85rem;
  font-weight:1000;
  margin-bottom:1rem;
  font-size:.9rem;
}

/* CONTACT DETAILS */
.mp-info-list{
  display:grid;
  gap:.75rem;
  margin:1.25rem 0;
}

.mp-info-list p{
  background:#fff;
  border:2px solid rgba(0,0,0,.08);
  border-left:7px solid var(--yellow);
  border-radius:18px;
  padding:1rem;
  box-shadow:0 8px 20px rgba(0,0,0,.06);
}

.mp-info-list span{
  display:inline-grid;
  place-items:center;
  width:38px;
  height:38px;
  background:var(--yellow);
  border:2px solid var(--black);
  border-radius:50%;
  margin-right:.55rem;
}

/* CONTACT BUTTONS */
.mp-contact-actions,
.mp-featured-buttons{
  display:flex;
  gap:.8rem;
  flex-wrap:wrap;
}

.mp-action-btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  min-height:50px;
  padding:.8rem 1.15rem;
  border-radius:999px;
  border:2px solid var(--black);
  background:var(--yellow);
  color:var(--black);
  font-weight:1000;
  box-shadow:0 7px 0 rgba(0,0,0,.16);
  transition:transform .2s ease, box-shadow .2s ease;
}

.mp-action-btn.dark{
  background:var(--black);
  color:var(--yellow);
}

.mp-action-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 9px 0 rgba(0,0,0,.18);
}

/* WIDER MAP BOX */
.mp-map-card{
  background:#fff;
  border:3px solid var(--black);
  border-radius:28px;
  overflow:hidden;
  box-shadow:12px 12px 0 var(--black);
  position:relative;
  min-height:100%;
}

.mp-map-card::before{
  content:"📍 Find us here";
  position:absolute;
  left:1rem;
  top:1rem;
  z-index:2;
  background:var(--black);
  color:var(--yellow);
  padding:.6rem 1rem;
  border-radius:999px;
  font-weight:1000;
  box-shadow:0 8px 18px rgba(0,0,0,.20);
}

.mp-map-card iframe{
  width:100%;
  height:100%;
  min-height:680px;
  display:block;
  border:0;
}

/* SEND US A MESSAGE BOX SECTION */
.mp-contact-card.mp-contact-featured{
  margin-top:2.8rem;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.38), transparent 25%),
    linear-gradient(135deg,var(--yellow),#ffeb79);
  border:3px solid var(--black);
  border-radius:32px;
  box-shadow:12px 12px 0 var(--black);
  padding:2.4rem;
  display:flex;
  justify-content:space-between;
  gap:1.5rem;
  align-items:center;
  position:relative;
  z-index:2;
  overflow:hidden;
}

.mp-contact-card.mp-contact-featured::before{
  content:"";
  position:absolute;
  right:-120px;
  top:-35px;
  width:430px;
  height:125px;
  background:var(--black);
  transform:rotate(-12deg);
  opacity:.12;
  pointer-events:none;
}

.mp-contact-card.mp-contact-featured::after{
  content:"";
  position:absolute;
  left:-90px;
  bottom:-45px;
  width:360px;
  height:95px;
  background:#fff;
  transform:rotate(-10deg);
  opacity:.25;
  pointer-events:none;
}

.mp-featured-copy{
  display:flex;
  align-items:flex-start;
  gap:1rem;
  position:relative;
  z-index:2;
  max-width:760px;
}

.mp-card-icon{
  width:74px;
  height:74px;
  border-radius:50%;
  background:var(--black);
  color:var(--yellow);
  border:3px solid #fff;
  display:grid;
  place-items:center;
  font-size:2rem;
  flex:0 0 auto;
  box-shadow:0 8px 18px rgba(0,0,0,.18);
}

.mp-contact-featured h2{
  font-size:clamp(2rem,4vw,3.2rem);
  text-transform:uppercase;
  line-height:1;
  margin-bottom:.65rem;
}

.mp-contact-featured p{
  font-size:1.05rem;
  max-width:720px;
}

.mp-featured-buttons{
  position:relative;
  z-index:2;
  justify-content:flex-end;
  min-width:260px;
}

/* TABLET */
@media(max-width:980px){
  .mp-contact-grid{
    grid-template-columns:1fr;
  }

  .mp-map-card iframe{
    min-height:480px;
  }

  .mp-contact-card.mp-contact-featured{
    flex-direction:column;
    align-items:flex-start;
  }

  .mp-featured-buttons{
    justify-content:flex-start;
    width:100%;
  }
}

/* MOBILE */
@media(max-width:620px){
  .mp-contact-section{
    padding-top:2.5rem;
    padding-bottom:2.5rem;
  }

  .mp-info-list p{
    padding:.9rem;
  }

  .mp-contact-actions,
  .mp-featured-buttons{
    flex-direction:column;
    width:100%;
  }

  .mp-action-btn{
    width:100%;
  }

  .mp-featured-copy{
    flex-direction:column;
  }

  .mp-card-icon{
    width:62px;
    height:62px;
    font-size:1.7rem;
  }

  .mp-map-card{
    border-radius:22px;
    box-shadow:6px 6px 0 var(--black);
  }

  .mp-map-card iframe{
    min-height:360px;
  }

  .mp-contact-card.mp-contact-featured{
    padding:1.5rem;
    border-radius:24px;
    box-shadow:6px 6px 0 var(--black);
  }
}
