:root{
  --edsc-ink:#202020;
  --edsc-muted:#535353;
  --edsc-soft:#747474;
  --edsc-orange:#f47b20;
  --edsc-line:rgba(32,32,32,.16);
  --edsc-card:rgba(255,255,255,.26);
}

.edsc-wrap,
.edsc-wrap *{box-sizing:border-box}

.edsc-wrap{
  width:100%;
  max-width:1500px;
  margin:0 auto;
  padding:92px 40px 110px;
  font-family:'Poppins',Arial,sans-serif;
  color:var(--edsc-ink);
}

/* ===== Heading: same language as Custom 3D Parts ===== */
.edsc-heading{
  max-width:1250px;
  margin:0 auto 58px;
  text-align:center;
}
.edsc-eyebrow{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  margin:0 0 24px;
  color:#3f3f3f;
  font-size:12px;
  font-weight:600;
  letter-spacing:4px;
  text-transform:uppercase;
}
.edsc-eyebrow:before,.edsc-eyebrow:after{
  content:"";
  width:55px;
  height:1px;
  background:rgba(32,32,32,.40);
}
.edsc-heading h1{
  margin:0 0 22px;
  color:var(--edsc-ink);
  font-size:clamp(44px,4.8vw,72px);
  line-height:1.05;
  font-weight:700;
  letter-spacing:-2.5px;
}
.edsc-heading p{
  max-width:940px;
  margin:0 auto;
  color:#4a4a4a;
  font-size:18px;
  line-height:1.7;
}

/* ===== Alerts ===== */
.edsc-alert{
  max-width:980px;
  margin:0 auto 28px;
  padding:15px 18px;
  border:1px solid;
  border-radius:10px;
  font-size:14px;
  line-height:1.6;
}
.edsc-success{background:rgba(65,140,80,.08);border-color:rgba(65,140,80,.35)}
.edsc-error{background:rgba(190,50,50,.07);border-color:rgba(190,50,50,.30)}

/* ===== Map ===== */
.edsc-map-card{
  width:100%;
  height:360px;
  margin:0 0 30px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.72);
  border-radius:16px;
  background:var(--edsc-card);
  box-shadow:0 4px 14px rgba(0,0,0,.035),0 16px 38px rgba(0,0,0,.06);
}
.edsc-map-card iframe{
  display:block;
  width:100%;
  height:100%;
  border:0;
  filter:grayscale(100%) contrast(.92) brightness(1.03);
}

/* ===== Main two cards ===== */
.edsc-grid{
  display:grid;
  grid-template-columns:minmax(0,.82fr) minmax(0,1.18fr);
  gap:28px;
  align-items:stretch;
}
.edsc-card{
  min-width:0;
  padding:40px;
  border:1px solid rgba(255,255,255,.70);
  border-radius:16px;
  background:var(--edsc-card);
  box-shadow:0 4px 14px rgba(0,0,0,.035),0 14px 34px rgba(0,0,0,.055);
  transition:transform .3s ease,box-shadow .3s ease,background .3s ease;
}
.edsc-card:hover{
  transform:translateY(-4px);
  background:rgba(255,255,255,.38);
  box-shadow:0 8px 22px rgba(0,0,0,.055),0 22px 46px rgba(0,0,0,.085);
}
.edsc-card-kicker{
  margin:0 0 15px;
  color:#4a4a4a;
  font-size:11px;
  font-weight:600;
  letter-spacing:3.2px;
  text-transform:uppercase;
}
.edsc-card h2{
  margin:0 0 18px;
  color:var(--edsc-ink);
  font-size:clamp(28px,2.4vw,38px);
  line-height:1.16;
  font-weight:700;
  letter-spacing:-1px;
}
.edsc-lead{
  margin:0 0 30px;
  color:#555;
  font-size:15px;
  line-height:1.8;
}

/* ===== Contact information ===== */
.edsc-info-row{
  display:grid;
  grid-template-columns:125px minmax(0,1fr);
  gap:18px;
  padding:18px 0;
  border-top:1px solid var(--edsc-line);
  font-size:14px;
  line-height:1.65;
}
.edsc-info-label{color:#333;font-weight:600}
.edsc-info a,.edsc-info span{color:#555;text-decoration:none}
.edsc-info a:hover{color:var(--edsc-orange)}

/* ===== Buttons: same outlined style ===== */
.edsc-map-link,.edsc-submit{
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:34px;
  min-width:300px;
  margin-top:28px;
  padding:20px 27px;
  border:1px solid var(--edsc-ink);
  border-radius:0;
  background:transparent;
  color:var(--edsc-ink)!important;
  box-shadow:none;
  text-decoration:none!important;
  font:600 12px/1 'Poppins',Arial,sans-serif;
  letter-spacing:2.4px;
  text-transform:uppercase;
  cursor:pointer;
  transition:background .3s ease,color .3s ease,border-color .3s ease;
}
.edsc-map-link:hover,.edsc-submit:hover{
  background:#171717;
  border-color:#171717;
  color:#fff!important;
}
.edsc-map-link span,.edsc-submit span:last-child{
  font-size:20px;
  transition:transform .3s ease;
}
.edsc-map-link:hover span,.edsc-submit:hover span:last-child{transform:translateX(5px)}

/* ===== Form ===== */
.edsc-form{display:block;width:100%}
.edsc-two{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.edsc-field{margin:0 0 18px}
.edsc-field label{
  display:block;
  margin:0 0 8px;
  color:#353535;
  font-size:12px;
  font-weight:600;
  letter-spacing:.2px;
}
.edsc-field label span,.edsc-consent>span>span{color:var(--edsc-orange)}
.edsc-field label small{color:#777;font-weight:400}
.edsc-field input,
.edsc-field select,
.edsc-field textarea{
  display:block;
  width:100%;
  min-width:0;
  margin:0;
  padding:14px 15px;
  border:1px solid rgba(32,32,32,.22);
  border-radius:8px;
  outline:none;
  background:rgba(255,255,255,.48);
  color:var(--edsc-ink);
  box-shadow:none;
  font:400 14px/1.5 'Poppins',Arial,sans-serif;
  transition:border-color .2s ease,box-shadow .2s ease,background .2s ease;
  -webkit-appearance:none;
}
.edsc-field select{background-image:linear-gradient(45deg,transparent 50%,#555 50%),linear-gradient(135deg,#555 50%,transparent 50%);background-position:calc(100% - 18px) 50%,calc(100% - 13px) 50%;background-size:5px 5px,5px 5px;background-repeat:no-repeat;padding-right:40px}
.edsc-field textarea{min-height:170px;resize:vertical}
.edsc-field input:focus,
.edsc-field select:focus,
.edsc-field textarea:focus{
  border-color:var(--edsc-orange);
  background:rgba(255,255,255,.72);
  box-shadow:0 0 0 3px rgba(244,123,32,.10);
}
.edsc-consent{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin:4px 0 18px;
  color:#555;
  font-size:12px;
  line-height:1.6;
}
.edsc-consent input{flex:0 0 auto;width:16px;height:16px;margin:2px 0 0;accent-color:var(--edsc-orange)}
.edsc-captcha{margin:10px 0 20px}
.edsc-submit{width:100%;margin-top:10px}
.edsc-hp{position:absolute!important;left:-10000px!important;top:auto!important;width:1px!important;height:1px!important;overflow:hidden!important}

@media(max-width:900px){
  .edsc-wrap{padding:72px 24px 90px}
  .edsc-grid{grid-template-columns:1fr}
  .edsc-map-card{height:320px}
}

@media(max-width:600px){
  .edsc-wrap{padding:58px 14px 74px}
  .edsc-heading{margin-bottom:40px}
  .edsc-eyebrow{gap:12px;font-size:10px;letter-spacing:3px}
  .edsc-eyebrow:before,.edsc-eyebrow:after{width:28px}
  .edsc-heading h1{font-size:40px;letter-spacing:-1.5px}
  .edsc-heading p{font-size:15px}
  .edsc-map-card{height:255px;border-radius:12px}
  .edsc-card{padding:27px 20px;border-radius:12px}
  .edsc-card h2{font-size:28px}
  .edsc-two{grid-template-columns:1fr;gap:0}
  .edsc-info-row{grid-template-columns:1fr;gap:4px}
  .edsc-map-link{width:100%;min-width:0}
  .edsc-submit{padding:19px 22px}
}
