/* ==========================================================================
   VHV SPEED — Kontakt page redesign
   ========================================================================== */

/* Full-bleed breakout (protože <main class="wrap"> má max-width:1390px) */
.kontakt-hero,
.vhv-kontakt-section,
.vhv-kontakt-map-section{
  width:100vw;
  position:relative;
  left:50%;
  right:50%;
  margin-left:-50vw !important;
  margin-right:-50vw !important;
}
.vhv-kontakt-section{padding:3.5rem 1.5rem;scroll-margin-top:100px;background:#fff}
.vhv-kontakt-section.alt{background:#f1f7ff}
.vhv-kontakt-inner{max-width:1100px;margin:0 auto}
.vhv-kontakt-head{text-align:center;margin-bottom:2.5rem}
.vhv-kontakt-head .eyebrow{
  display:inline-block;color:#0061a5;font-size:.85rem;font-weight:700;
  letter-spacing:.14em;text-transform:uppercase;margin-bottom:.5rem
}
.vhv-kontakt-head h2{color:#03274b;font-size:clamp(1.5rem,1.2rem+1vw,2.1rem);margin:0 0 .6rem;line-height:1.25}
.vhv-kontakt-head p{color:#4a5568;font-size:1.02rem;max-width:640px;margin:0 auto;line-height:1.55}

/* Quick contact hero card */
.vhv-kontakt-quick{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:1.25rem;
  max-width:820px;margin:0 auto;
}
@media(max-width:640px){.vhv-kontakt-quick{grid-template-columns:1fr}}
.vhv-kontakt-quick-card{
  background:#fff;
  border-radius:16px;
  padding:1.75rem;
  display:flex;align-items:center;gap:1rem;
  box-shadow:0 8px 30px rgba(3,39,75,.08);
  border:1px solid #c4daea;
  text-decoration:none;color:inherit;
  transition:all .2s;
}
.vhv-kontakt-quick-card:hover{transform:translateY(-3px);box-shadow:0 14px 36px rgba(0,97,165,.15);border-color:#0061a5}
.vhv-kontakt-quick-icon{
  width:56px;height:56px;
  background:linear-gradient(135deg,#da251d,#b70f07);
  border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.vhv-kontakt-quick-icon svg{width:28px;height:28px;stroke:#fff;fill:none;stroke-width:2.2}
.vhv-kontakt-quick-card.email .vhv-kontakt-quick-icon{background:linear-gradient(135deg,#0061a5,#067fd3)}
.vhv-kontakt-quick-label{color:#718096;font-size:.85rem;font-weight:500;margin-bottom:.15rem}
.vhv-kontakt-quick-value{color:#03274b;font-size:1.2rem;font-weight:700;font-family:"Ubuntu",sans-serif;line-height:1.2}

/* Team cards */
.vhv-team-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:2rem;
  max-width:900px;margin:0 auto;
}
@media(max-width:700px){.vhv-team-grid{grid-template-columns:1fr;max-width:400px}}
.vhv-team-card{
  background:#fff;
  border-radius:14px;
  padding:2rem 1.5rem;
  text-align:center;
  box-shadow:0 8px 26px rgba(3,39,75,.08);
  border:1px solid #e2e8f0;
  transition:all .25s;
}
.vhv-team-card:hover{transform:translateY(-3px);box-shadow:0 14px 36px rgba(0,97,165,.12)}
.vhv-team-photo{
  width:140px;height:140px;
  border-radius:50%;
  margin:0 auto 1.2rem;
  border:4px solid #0061a5;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,97,165,.18);
}
.vhv-team-photo img{width:100%;height:100%;object-fit:cover;display:block}
.vhv-team-name{color:#03274b;font-size:1.25rem;margin:0 0 .25rem;font-weight:700;font-family:"Ubuntu",sans-serif}
.vhv-team-role{color:#0061a5;font-weight:600;font-size:.95rem;margin-bottom:1rem}
.vhv-team-contact{
  display:flex;flex-direction:column;gap:.5rem;
  padding-top:1rem;
  border-top:1px solid #e2e8f0;
}
.vhv-team-contact a{
  color:#03274b;font-size:.97rem;font-weight:500;
  text-decoration:none;
  display:inline-flex;align-items:center;gap:.4rem;justify-content:center;
  padding:.3rem;border-radius:6px;transition:background-color .15s;
}
.vhv-team-contact a:hover{background:#f1f7ff;color:#0061a5}
.vhv-team-contact svg{width:16px;height:16px;stroke:#0061a5;fill:none;stroke-width:2}

/* Hours */
.vhv-hours-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.25rem;
  max-width:900px;margin:0 auto;
}
@media(max-width:800px){.vhv-hours-grid{grid-template-columns:1fr}}
.vhv-hour-card{
  background:#fff;
  border-radius:16px;
  padding:1.75rem 1.5rem;
  text-align:center;
  box-shadow:0 4px 16px rgba(3,39,75,.06);
  border:1px solid #e2e8f0;
  transition:transform .2s,box-shadow .2s;
}
.vhv-hour-card:hover{transform:translateY(-2px);box-shadow:0 10px 28px rgba(3,39,75,.1)}
.vhv-hour-card.urgent{border-color:#da251d;background:linear-gradient(180deg,#fff5f5 0%,#fff 100%)}
.vhv-hour-icon{
  width:44px;height:44px;margin:0 auto .75rem;
  background:linear-gradient(135deg,#0061a5,#067fd3);
  border-radius:12px;
  display:flex;align-items:center;justify-content:center;
}
.vhv-hour-card.urgent .vhv-hour-icon{background:linear-gradient(135deg,#da251d,#b70f07)}
.vhv-hour-icon svg{width:22px;height:22px;stroke:#fff;fill:none;stroke-width:2.2}
.vhv-hour-label{color:#0061a5;font-weight:700;font-size:.9rem;text-transform:uppercase;letter-spacing:.05em;margin-bottom:.4rem}
.vhv-hour-card.urgent .vhv-hour-label{color:#da251d}
.vhv-hour-value{color:#03274b;font-size:1.3rem;font-weight:700;font-family:"Ubuntu",sans-serif}
.vhv-hour-sub{color:#718096;font-size:.85rem;margin-top:.3rem}
.vhv-hour-value a{color:inherit;text-decoration:none}
.vhv-hour-value a:hover{color:#da251d}

/* Billing entities */
.vhv-billing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
  max-width:1100px;margin:0 auto;
}
@media(max-width:900px){.vhv-billing-grid{grid-template-columns:1fr;max-width:600px}}
.vhv-billing-card{
  background:#fff;
  border-radius:16px;
  padding:1.5rem;
  box-shadow:0 6px 22px rgba(3,39,75,.08);
  border-top:4px solid #0061a5;
}
.vhv-billing-card.secondary{border-top-color:#da251d}
.vhv-billing-card.tertiary{border-top-color:#f6ad0f}
.vhv-billing-header{
  margin-bottom:1rem;padding-bottom:.75rem;border-bottom:1px solid #e2e8f0;
}
.vhv-billing-name{
  color:#03274b;font-size:1.1rem;font-weight:700;
  font-family:"Ubuntu",sans-serif;margin:0 0 .25rem;line-height:1.2;
}
.vhv-billing-type{color:#718096;font-size:.82rem;font-weight:500}
.vhv-billing-rows{display:grid;grid-template-columns:max-content 1fr;gap:.5rem 1rem;font-size:.93rem}
.vhv-billing-rows dt{color:#718096;font-weight:500;font-family:inherit}
.vhv-billing-rows dd{color:#03274b;margin:0;font-weight:600;font-family:inherit;font-size:.95rem;word-break:break-word;letter-spacing:.01em}
.vhv-billing-note{
  margin-top:.9rem;padding:.6rem .75rem;
  background:#f1f7ff;border-radius:8px;
  color:#4a5568;font-size:.82rem;line-height:1.45;
}

/* Contact form */
.vhv-kontakt-form-wrap{max-width:720px;margin:0 auto}
.vhv-kontakt-form{
  background:#fff;
  border-radius:16px;
  padding:2rem;
  box-shadow:0 10px 40px rgba(3,39,75,.1);
  border:1px solid #e2e8f0;
}
.vhv-kontakt-form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-bottom:1rem}
@media(max-width:540px){.vhv-kontakt-form-row{grid-template-columns:1fr}}
.vhv-kontakt-form-group{margin-bottom:1rem}
.vhv-kontakt-form label{display:block;font-weight:600;color:#03274b;font-size:.93rem;margin-bottom:.35rem}
.vhv-kontakt-form label .req{color:#da251d;margin-left:.15rem}
.vhv-kontakt-form input,
.vhv-kontakt-form textarea,
.vhv-kontakt-form select{
  width:100%;padding:.7em 1em;
  border:1.5px solid #c4daea;border-radius:8px;
  background:#f9fcff;font-size:1rem;color:#2d3748;
  font-family:inherit;box-sizing:border-box;
  transition:border-color .2s,box-shadow .2s;
}
.vhv-kontakt-form input:focus,
.vhv-kontakt-form textarea:focus,
.vhv-kontakt-form select:focus{
  border-color:#0061a5;background:#fff;
  box-shadow:0 0 0 3px rgba(0,97,165,.12);
}
.vhv-kontakt-form input:focus-visible,
.vhv-kontakt-form textarea:focus-visible,
.vhv-kontakt-form select:focus-visible{
  outline:2px solid #0061a5;outline-offset:1px;
}
.vhv-kontakt-form textarea{min-height:120px;resize:vertical}
.vhv-kontakt-form-submit{
  width:100%;display:flex;align-items:center;justify-content:center;gap:.5rem;
  background:#da251d;color:#fff;border:0;
  padding:.95em 1.5em;border-radius:50px;
  font-family:"Ubuntu",sans-serif;font-weight:700;font-size:1.05rem;
  cursor:pointer;transition:all .25s;
  box-shadow:0 4px 18px rgba(218,37,29,.3);
}
.vhv-kontakt-form-submit:hover{background:#b70f07;transform:translateY(-2px);box-shadow:0 8px 26px rgba(218,37,29,.45)}
.vhv-kontakt-gdpr{
  display:flex;align-items:flex-start;gap:.5rem;
  font-size:.85rem;color:#4a5568;margin:1rem 0;line-height:1.45;
}
.vhv-kontakt-gdpr input{width:auto;margin-top:.25em}
.vhv-kontakt-gdpr a{color:#0061a5;font-weight:600}

/* Map */
.vhv-map-wrap{
  max-width:1100px;margin:0 auto;
  border-radius:16px;overflow:hidden;
  box-shadow:0 8px 30px rgba(3,39,75,.1);
}
.vhv-map-wrap iframe{display:block;width:100%;height:420px;border:0}

/* Hero override — už je full bleed, ale upravíme padding */
.kontakt-hero{min-height:280px !important}
