/* ==== EASCT Contact Styles (unique, conflict-safe) ==== */
:root{
  --easct-bg: #0f172a;          /* deep slate */
  --easct-accent: #79be3f;      /* brand accent */
  --easct-card: rgba(255,255,255,.08);
  --easct-stroke: rgba(255,255,255,.12);
  --easct-text: #e5e7eb;
  --easct-muted: #a5b4fc;
  --easct-radius: 16px;
  --easct-shadow: 0 10px 30px rgba(0,0,0,.25);
}

/* utility container */
.container{ width: min(1160px, 92%); margin-inline: auto; }

/* Page root */
.easct-page{ background: #fff; }

/* ---------- HERO ---------- */
.easct-hero{
  position: relative;
  color: var(--easct-text);
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(121,190,63,.35), transparent 60%),
    linear-gradient(180deg, #0b1023 0%, #111637 100%);
  padding-top: 50px;
  overflow: hidden;
}
.easct-hero::before{
  content:"";
  position:absolute; inset:0;
  background-image: var(--easct-hero-bg, none);
  background-size: cover; background-position:center;
  opacity:.15; mix-blend: screen; pointer-events:none;
}
.easct-hero__wrap{
  display:grid; grid-template-columns: 1.1fr .9fr; gap:34px; align-items: center;
}
@media (max-width: 992px){
  .easct-hero__wrap{ grid-template-columns: 1fr; gap:22px; }
}
.easct-hero__kicker{
  display:inline-block; font-size:12px; letter-spacing:.14em; text-transform:uppercase;
  color: var(--easct-muted); margin-bottom:10px;
}
.easct-hero__title{
  font-size: clamp(32px, 4.5vw, 48px);
  line-height:1.1; margin:0 0 10px; color:#fff; font-weight:800;
}
.easct-hero__subtitle{ color:#cbd5e1; font-size:16px; margin:0 0 18px; max-width:600px; }
.easct-hero__badge{
  display:inline-flex; align-items:center; gap:10px; padding:8px 12px;
  border:1px solid var(--easct-stroke); border-radius:999px; backdrop-filter: blur(6px);
  background: var(--easct-card);
}
.easct-hero__badge svg{ fill:#c7d2fe; }

.easct-hero__formcard .easct-card{
  background: #fff;
  border:1px solid var(--easct-stroke);
  border-radius: var(--easct-radius);
  padding:18px;
  box-shadow: var(--easct-shadow);
}
.easct-hero__formcard .wpforms-container{ --wpforms-field-size: 14px; }
.easct-hero__formcard input[type="text"],
.easct-hero__formcard input[type="email"],
.easct-hero__formcard input[type="tel"],
.easct-hero__formcard textarea,
.easct-hero__formcard select{
  background: rgba(255,255,255,.85);
  border:1px solid #e5e7eb; border-radius:12px; padding:12px 14px;
}
.easct-hero__formcard .wpforms-submit{
  background: var(--easct-accent); color:#0b1a08; border:none;
  border-radius: 12px; padding:12px 18px; font-weight:700; cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease;
}
.easct-hero__formcard .wpforms-submit:hover{ transform: translateY(-1px); box-shadow:0 6px 18px rgba(121,190,63,.4); }

.easct-hero__waves svg{ width:100%; height:60px; display:block; fill:#fff; opacity:.9; margin-top: 34px; }

/* ---------- MAP ---------- */
.easct-map{ background:#fff; padding: 28px 0 16px; }
.easct-map__wrap{ position:relative; }
.easct-map__frame{
  overflow:hidden; border-radius: 18px; border:1px solid #e5e7eb;
}
.easct-map__embed iframe{ display:block; width:100%; height: 420px; }
@media (max-width: 768px){ .easct-map__embed iframe{ height: 300px; } }
.easct-map__card{
  position: relative;
  margin-top: -60px;
  max-width: 420px;
  background: #0f172a !important; color:#e2e8f0;
  border: 1px solid #1f2a44; border-radius: 14px; padding: 16px 18px;
  box-shadow: 0 10px 24px rgba(2,6,23,.25);
}
@media (max-width: 992px){ .easct-map__card{ margin-top: 14px; } }
.easct-chip{
  display:inline-block; font-size:12px; letter-spacing:.12em; text-transform:uppercase;
  background:#e8f6da; color:#274f0f; padding:6px 10px; border-radius:999px; margin-bottom:8px;
}
.easct-map__caption{ margin:6px 0 12px; color:#cbd5e1; }
.easct-map__miniaddress{ display:flex; gap:10px; align-items:flex-start; color:#dbeafe; }
.easct-map__miniaddress svg{ fill:#c7d2fe; flex:0 0 auto; margin-top:3px; }

/* ---------- INFO GRID ---------- */
.easct-info{ padding: 34px 0 60px; background:#fff; }
.easct-info__head h2{ font-size: clamp(26px,3.6vw,34px); margin:0 0 6px; color:#0b1023; }
.easct-info__head p{ color:#475569; margin:0 0 18px; }

.easct-info__grid{
  display:grid; grid-template-columns: repeat(4, 1fr); gap:16px;
}
@media (max-width: 992px){ .easct-info__grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .easct-info__grid{ grid-template-columns: 1fr; } }

.easct-card{
  background: #ffffff;
  border:1px solid #e5e7eb;
  border-radius: 14px;
  padding: 18px;
  transition: box-shadow .15s ease, transform .15s ease, border-color .15s ease;
}
.easct-card:hover{ transform: translateY(-2px); box-shadow:0 12px 28px rgba(2,6,23,.08); border-color:#dbeafe; }

.easct-info__icon{ width:42px; height:42px; border-radius:10px; background:#f0fdf4; display:grid; place-items:center; margin-bottom:10px; }
.easct-info__icon svg{ fill:#4d7c0f; }

.easct-info__card h3{ margin:0 0 6px; color:#0b1023; font-size:18px; }
.easct-info__body{ color:#334155; }
.easct-info__muted{ color:#64748b; margin-top:6px; }

.easct-hours{ list-style:none; margin:0; padding:0; }
.easct-hours li{ display:flex; justify-content:space-between; gap:14px; padding:6px 0; border-bottom:1px dashed #e2e8f0; }
.easct-hours li:last-child{ border-bottom:0; }

.easct-info__cta{
  display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between;
  gap:10px; margin-top:22px; padding:14px 16px; border:1px dashed #c7d2fe; border-radius:14px; background:#f8fafc;
}
.easct-btn{
  display:inline-flex; align-items:center; gap:8px; padding:10px 14px; border-radius:12px;
  background: var(--easct-accent); color:#0b1a08; text-decoration:none; font-weight:700;
  transition: transform .12s ease, box-shadow .12s ease;
}
.easct-btn:hover{ transform: translateY(-1px); box-shadow:0 8px 20px rgba(121,190,63,.35); }

.easct-link{ color:#14532d; text-decoration: none; border-bottom:1px solid rgba(20,83,45,.25); }
.easct-link:hover{ border-color: transparent; }

.easct-socials{ margin-top:16px; display:flex; flex-wrap:wrap; gap:10px; }
.easct-socials__link{
  display:inline-flex; align-items:center; padding:8px 12px; border-radius:999px;
  background:#eef2ff; color:#312e81; text-decoration:none; font-weight:600; border:1px solid #c7d2fe;
}