/* ================================================================
   Endora Kontakt — ekk-*
   ================================================================ */

.ekk-wrap {
  padding: 64px 0 80px;
  font-family: "Inter", sans-serif;
}

.ekk-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* ---- Info kaardid ---- */
.ekk-info-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ekk-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid #e6e9ed;
  border-radius: 14px;
  padding: 20px 22px;
}

.ekk-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ekk-icon--email    { background: #FEE9F0; color: #F67599; }
.ekk-icon--phone    { background: #E3F4FB; color: #00A3E0; }
.ekk-icon--kmkr     { background: #EEF5D5; color: #7A9010; }
.ekk-icon--location { background: #FEF8DC; color: #B89000; }

.ekk-card-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ekk-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.9px;
  color: #9399a2;
  text-transform: uppercase;
}

.ekk-card-value {
  font-size: 17px;
  font-weight: 700;
  color: #111820;
  line-height: 1.2;
}

/* ---- Vormi veerg ---- */
.ekk-form-col {
  background: #fff;
  border: 1px solid #e6e9ed;
  border-radius: 18px;
  padding: 40px 44px;
  box-sizing: border-box;
}

.ekk-title {
  font-family: "Montserrat", sans-serif !important;
  font-weight: 800 !important;
  font-size: 34px !important;
  color: #111820 !important;
  margin: 0 0 8px !important;
  line-height: 1.15 !important;
}

.ekk-subtitle {
  color: #777 !important;
  font-size: 15px !important;
  margin: 0 0 30px !important;
}

/* ---- Väljad ---- */
.ekk-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ekk-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.ekk-label {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.9px !important;
  color: #555 !important;
  text-transform: uppercase !important;
}

.ekk-input {
  width: 100%;
  border: 1.5px solid #dde1e6 !important;
  border-radius: 10px !important;
  padding: 12px 14px !important;
  font-size: 15px !important;
  font-family: "Inter", sans-serif !important;
  color: #111820 !important;
  background: #fff !important;
  outline: none !important;
  transition: border-color 0.2s;
  box-sizing: border-box;
  box-shadow: none !important;
}

.ekk-input:focus {
  border-color: #00A3E0 !important;
}

.ekk-input::placeholder {
  color: #bbb !important;
}

.ekk-textarea {
  resize: vertical;
  min-height: 130px;
}

/* ---- Checkbox ---- */
.ekk-checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 26px;
  font-size: 14px;
  color: #444;
  line-height: 1.55;
}

.ekk-checkbox-wrap input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  accent-color: #00A3E0;
  cursor: pointer;
}

.ekk-checkbox-wrap a {
  color: #00A3E0;
  text-decoration: none;
}

.ekk-checkbox-wrap a:hover {
  text-decoration: underline;
}

/* ---- Nupp ---- */
.ekk-btn {
  background: #00A3E0 !important;
  color: #fff !important;
  border: 2px solid transparent !important;
  border-radius: 15px !important;
  padding: 15px 44px !important;
  font-family: "Montserrat", sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  display: inline-block;
  line-height: 1;
}

.ekk-btn:hover {
  background: transparent !important;
  color: #00A3E0 !important;
  border-color: #00A3E0 !important;
}

.ekk-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* ---- Teade ---- */
.ekk-notice {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}

.ekk-notice--ok  { background: #e7f7e7; color: #256325; border: 1px solid #b0d9b0; }
.ekk-notice--err { background: #fdeaea; color: #a02020; border: 1px solid #f0b5b5; }

/* ---- Mobiil ---- */
@media (max-width: 900px) {
  .ekk-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 16px;
  }
  .ekk-form-col {
    padding: 28px 22px;
  }
  .ekk-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .ekk-title {
    font-size: 26px !important;
  }
}
