/* =========================================================
   CONTACT PAGE (Premium / Eye-Catching)
   Theme: White + Grey + Navy
   File: contact.css
   ========================================================= */

.contact-page{
  padding: 90px 0;
  background:
    radial-gradient(900px 320px at 15% 10%, rgba(15,31,61,.06), transparent 60%),
    radial-gradient(900px 320px at 85% 0%, rgba(30,58,138,.06), transparent 60%),
    var(--grey-soft);
}

/* Header */
.contact-head{
  margin-bottom: 22px;
}

.contact-head h1{
  margin: 0 0 10px;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.7px;
  color: var(--navy);
}

.contact-head p{
  margin: 0;
  max-width: 760px;
  color: var(--grey);
  line-height: 1.8;
  font-weight: 600;
}

/* Layout */
.contact-layout{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 18px;
  align-items: stretch;
}

/* =========================================================
   LEFT IMAGE PANEL
   ========================================================= */
.contact-image{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 28px 70px rgba(0,0,0,.12);
  min-height: 560px;
  background: var(--white);
}

.contact-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  filter: contrast(1.02) saturate(1.03);
}

/* Premium overlay */
.contact-image::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(700px 280px at 20% 25%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(180deg, rgba(15,31,61,.20) 0%, rgba(15,31,61,.62) 55%, rgba(15,31,61,.88) 100%);
  z-index: 1;
}

/* Overlay content */
.contact-image-overlay{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px;
  z-index: 2;
  color: var(--white);
}

.contact-image-overlay h3{
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.3px;
}

.contact-image-overlay p{
  margin: 0 0 14px;
  color: rgba(255,255,255,.86);
  line-height: 1.7;
  max-width: 520px;
  font-weight: 600;
}

/* Mini info block */
.contact-mini{
  display: grid;
  gap: 10px;
  border-radius: 18px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

.mini-item{
  display:flex;
  flex-direction: column;
  gap: 4px;
}

.mini-label{
  font-size: 12px;
  color: rgba(255,255,255,.72);
  font-weight: 800;
  letter-spacing: .2px;
}

.mini-value{
  font-size: 14px;
  font-weight: 900;
  color: var(--white);
}

/* =========================================================
   RIGHT FORM PANEL
   ========================================================= */
.contact-form{
  background: rgba(255,255,255,.95);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 55px rgba(0,0,0,.08);
  position: relative;
  overflow: hidden;
}

/* subtle top accent */
.contact-form::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height: 4px;
  background: linear-gradient(90deg, rgba(30,58,138,.65), rgba(15,31,61,.25));
}

/* Fields */
.field{
  display:flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.field label{
  font-weight: 850;
  font-size: 13px;
  color: var(--navy);
}

.field input,
.field textarea{
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 13px;
  font-size: 14px;
  outline: none;
  background: #fff;
  color: var(--navy);
  transition: box-shadow .18s ease, border-color .18s ease, transform .18s ease;
}

.field textarea{
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

/* Focus style */
.field input:focus,
.field textarea:focus{
  border-color: rgba(30,58,138,.35);
  box-shadow: 0 0 0 5px rgba(30,58,138,.12);
}

/* Nice hover micro-interaction */
.field input:hover,
.field textarea:hover{
  transform: translateY(-1px);
}

/* Submit button – fits your existing .btn-primary */
.submit-btn{
  width: 93%;
  border: none;
  cursor: pointer;
  margin-top: 6px;
}

/* Note */
.form-note{
  margin: 12px 0 0;
  color: var(--grey);
  font-size: 12.5px;
  line-height: 1.7;
  font-weight: 600;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px){
  .contact-page{
    padding: 70px 0;
  }

  .contact-layout{
    grid-template-columns: 1fr;
  }

  .contact-image{
    min-height: 340px;
  }

  .contact-head h1{
    font-size: 30px;
  }
}

@media (max-width: 520px){
  .contact-form{
    padding: 18px;
  }
}