
:root{
  --red:#b30613; --black:#111; --white:#fff; --muted:#f5f5f5;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;background:var(--white);color:var(--black)}
a{color:inherit;text-decoration:none}
header{
  position:sticky;top:0;z-index:50;background:var(--white);
  border-bottom:1px solid #eee;
}
.topbar{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding:10px 16px;
}
.brand{display:flex;align-items:center;gap:12px}
.brand img{height:40px}
.badge-eds{
  display:inline-flex;align-items:center;gap:8px;
  background: var(--red);
  color:var(--white);padding:8px 20px;border-radius:6px;font-weight:700
}
.badge-eds small{opacity:.9;font-weight:600}
.navbar{
  display:flex;gap:20px;align-items:center;padding:8px 16px;background:var(--red);color:var(--white)
}
.navbar a{opacity:.9}
.navbar a:hover{opacity:1;text-decoration:underline}
.container{max-width:1100px;margin:0 auto;padding:20px 16px}
.hero{
  display:block;margin-top:18px
}
.card{
  background:var(--muted);border:1px solid #e9e9e9;border-radius:16px;padding:18px
}
.tag{display:inline-block;background:#ffe9eb;color:#a40009;border:1px solid #ffd0d6;border-radius:8px;padding:4px 10px;font-weight:600}
.btn{display:inline-flex;align-items:center;justify-content:center;padding:12px 16px;border-radius:10px;border:1px solid #ddd;background:#fff;font-weight:700;cursor:pointer;color:var(--black)}
.btn:hover{border-color:#bbb}
.btn-eds{background:linear-gradient(90deg,var(--red),#ff4d5a);color:#fff;border:none;box-shadow:0 6px 16px rgba(227,6,19,.25)}
.btn-row{display:flex;flex-wrap:wrap;gap:12px}
.msg-btn{display:flex;align-items:center;gap:10px;padding:10px 14px;border-radius:12px;border:1px solid #e1e1e1;background:#fff}
.msg-btn img{height:22px;width:22px;border-radius:6px}
.kv{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}
.kv .item{background:#fff;border:1px solid #eee;border-radius:12px;padding:12px}
.kv .item h4{margin:0 0 6px 0}
.search{display:flex;gap:8px}
.search input{flex:1;padding:12px;border:1px solid #ddd;border-radius:12px}
.search-results{margin-top:12px}
footer{margin-top:40px;border-top:1px solid #eee;padding:20px 16px;color:#555}
.highlight{font-size:1.25rem;font-weight:800}
.grid-2{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.form label{display:block;margin:10px 0 6px}
.form input,.form textarea, .form select{width:100%;padding:12px;border:1px solid #ddd;border-radius:12px}
.form button{margin-top:12px}
@media (max-width:900px){
  .grid-2{grid-template-columns:1fr}
}

/*NAVLINE*/

.navline{
  display:flex;align-items:center;justify-content:space-evenly;
  gap:0; flex-wrap:wrap; width:100%;
}
.navline a{padding:6px 10px}
@media (max-width:900px){
  .navline{justify-content:center;gap:8px}
}

.footer-top{display:flex;align-items:center;justify-content:flex-start}
.footer-actions{display:flex;align-items:center;justify-content:flex-end;gap:12px;margin-top:8px}
.footer-actions .msg-btn{padding:8px 10px}
.footer-actions .msg-btn span{font-weight:600}
@media (min-width:700px){
  footer .container{display:grid;grid-template-columns:1fr auto;gap:12px;align-items:center}
  .footer-actions{margin-top:0}
}


/* Contact block redesign */
.contact-card h4{margin:0 0 10px 0}
.phone-list{display:flex;flex-direction:column;gap:10px}
.phone{display:flex;align-items:center;gap:10px;padding:12px 14px;border:1px solid #ececec;border-radius:10px;background:#fff;box-shadow:0 1px 0 #f5f5f5 inset}
.phone img{height:18px;width:18px;opacity:.9}
.phone .num{font-weight:800;letter-spacing:.3px;color:var(--black)}
.kv .item.contact-card{background:linear-gradient(180deg,#fff, #fafafa);}







/* controls the block height */
  justify-content:space-between; /* spread to the bottom */
  align-items:flex-start;gap:12px;text-align:left;
}
@media (max-width:700px){
  .eds-stack{min-height:200px}
  .eds-stack .btn-eds-xl{width:100%}
}

/* EDS centered layout (final) */
.item.eds-card{padding:22px}
.eds-center{
  display:grid;
  place-items:center;
  text-align:center;
  gap:14px;
  min-height: 130px;
}
.eds-title{margin:0;font-weight:800}
.eds-phone{font-weight:900;white-space:nowrap;word-break:keep-all;overflow-wrap:normal;
  font-size:clamp( 24px,3.2vw,34px);letter-spacing:.3px;color:var(--black)}
.btn-eds-xl{padding:14px 20px;border-radius:10px;font-weight:800}
@media (max-width:700px){
  .eds-center{min-height:180px}
  .btn-eds-xl{width:auto}
}
