/* ============================================================
   CONTACT PAGE — contact-page.css
   Loads ONLY on Contact page (page-template-page-contact).
   ============================================================ */

/* ── SECTION 1: Hero ── */
.cp-hero {
  background-color: #071B2E;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: calc(var(--site-header-full-height, 153px) + 120px);
  padding-bottom: 220px;
  text-align: center;
}

.cp-hero__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.cp-hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 16px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: 999px;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cp-hero__label {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #D6B54A;
  font-style: italic;
  margin: 0 0 20px;
}

.cp-hero__title {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 700;
  font-size: 52px;
  line-height: 62px;
  color: #FFFFFF;
  margin: 0 0 24px;
}

.cp-hero__desc {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #D1D5DC;
  max-width: 720px;
  margin: 0 0 40px;
  text-align: center;
}

.cp-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Shared button base */
.cp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 24px;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}

.cp-btn:hover { transform: translateY(-2px); }

.cp-btn--primary {
  background: #D6B54A;
  color: #071B2E;
  border: none;
}

.cp-btn--primary:hover {
  background: #C4A33A;
  box-shadow: 0 8px 24px rgba(214,181,74,0.35);
}

.cp-btn--secondary {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.30);
  color: #FFFFFF;
}

.cp-btn--secondary:hover { color: #FFFFFF; }

/* ── SECTION 2: Contact Info Cards ── */
.cp-cards-section {
  background: transparent;
  position: relative;
  z-index: 5;
  margin-top: -80px;
  padding-bottom: 0;
}

.cp-cards-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.cp-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cp-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}

.cp-card__icon-wrap {
  width: 42px;
  height: 42px;
  background: rgba(214, 181, 74, 0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.cp-card__icon-wrap img,
.cp-card__icon-wrap svg {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.cp-card__title {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #94A3B8;
  margin: 0 0 6px;
  line-height: 20px;
}

.cp-card__value {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 16px;
  font-weight: 700;
  color: #071B2E;
  margin: 0;
  text-decoration: none;
  line-height: 24px;
}

a.cp-card__value:hover { color: #D6B54A; }

/* ── SECTION 3: Contact Form + Info ── */
.cp-form-section {
  background: #F8FAFC;
  padding: 100px 0 120px;
}

.cp-form-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

.cp-form-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
  align-items: start;
}

/* Left: Form card */
.cp-form-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.cp-form-card__title {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  color: #071B2E;
  margin: 0 0 8px;
}

.cp-form-card__subtitle {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 15px;
  line-height: 24px;
  color: #64748B;
  margin: 0 0 32px;
}

.cp-form-notice {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 15px;
  color: #94A3B8;
  font-style: italic;
  padding: 20px;
  background: #F8FAFC;
  border-radius: 8px;
}

/* CF7 form styling */
.cp-cf7-wrapper .wpcf7 { margin: 0; }
.cp-cf7-wrapper .wpcf7-form { display: flex; flex-direction: column; gap: 0; }
.cp-cf7-wrapper .wpcf7-form p { margin: 0 0 20px; }
.cp-cf7-wrapper .wpcf7-form p:last-child { margin-bottom: 0; }

/* Labels */
.cp-cf7-wrapper label,
.cp-cf7-wrapper .wpcf7-form label {
  display: block;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 700;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748B;
  margin-bottom: 8px;
}

/* Inputs, selects, textarea */
.cp-cf7-wrapper input[type="text"],
.cp-cf7-wrapper input[type="email"],
.cp-cf7-wrapper input[type="tel"],
.cp-cf7-wrapper input[type="number"],
.cp-cf7-wrapper input[type="url"],
.cp-cf7-wrapper select,
.cp-cf7-wrapper .wpcf7-text,
.cp-cf7-wrapper .wpcf7-email,
.cp-cf7-wrapper .wpcf7-tel,
.cp-cf7-wrapper .wpcf7-select {
  width: 100%;
  height: 52px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 0 16px;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 15px;
  font-weight: 400;
  color: #071B2E;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.cp-cf7-wrapper input:focus,
.cp-cf7-wrapper select:focus,
.cp-cf7-wrapper .wpcf7-text:focus,
.cp-cf7-wrapper .wpcf7-email:focus,
.cp-cf7-wrapper .wpcf7-tel:focus,
.cp-cf7-wrapper .wpcf7-select:focus {
  border-color: #D6B54A;
  box-shadow: 0 0 0 3px rgba(214,181,74,0.15);
}

.cp-cf7-wrapper input::placeholder,
.cp-cf7-wrapper .wpcf7-text::placeholder {
  color: #94A3B8;
  font-weight: 400;
}

/* Textarea */
.cp-cf7-wrapper textarea,
.cp-cf7-wrapper .wpcf7-textarea {
  width: 100%;
  min-height: 120px;
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 14px 16px;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 15px;
  color: #071B2E;
  outline: none;
  resize: vertical;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
  line-height: 1.6;
}

.cp-cf7-wrapper textarea:focus,
.cp-cf7-wrapper .wpcf7-textarea:focus {
  border-color: #D6B54A;
  box-shadow: 0 0 0 3px rgba(214,181,74,0.15);
}

/* Submit button */
.cp-cf7-wrapper input[type="submit"],
.cp-cf7-wrapper .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: #071B2E;
  color: #FFFFFF;
  border: none;
  border-radius: 24px;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  width: auto;
  height: auto;
}

.cp-cf7-wrapper input[type="submit"]:hover,
.cp-cf7-wrapper .wpcf7-submit:hover {
  background: #1B2033;
  transform: translateY(-2px);
}

/* CF7 validation */
.cp-cf7-wrapper .wpcf7-not-valid-tip {
  color: #EF4444;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}

.cp-cf7-wrapper .wpcf7-response-output {
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  margin: 16px 0 0;
  border: none;
}

.cp-cf7-wrapper .wpcf7-mail-sent-ok {
  background: #F0FDF4;
  color: #166534;
}

.cp-cf7-wrapper .wpcf7-mail-sent-ng,
.cp-cf7-wrapper .wpcf7-spam-blocked {
  background: #FEF2F2;
  color: #991B1B;
}

/* Right: Info card */
.cp-info-col {
  position: relative;
  padding-bottom: 56px;
}

.cp-info-card {
  background: #071B2E;
  border-radius: 24px;
  padding: 40px;
  color: #FFFFFF;
}

.cp-info-card__title {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
  color: #FFFFFF;
  margin: 0 0 8px;
}

.cp-info-card__label {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #D6B54A;
  margin: 0 0 20px;
}

/* Gold bullet list */
.cp-info-bullets {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cp-info-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 15px;
  font-weight: 400;
  color: #D1D5DC;
  line-height: 1.5;
}

.cp-info-bullet__icon { flex-shrink: 0; }

/* Location rows */
.cp-info-locations {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.cp-info-sep {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 10px 0;
}

.cp-info-loc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
}

.cp-info-loc-city {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #94A3B8;
  text-transform: uppercase;
  flex-shrink: 0;
}

.cp-info-loc-phone {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 700;
  font-size: 15px;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cp-info-loc-phone:hover { color: #D6B54A; }

/* Divider */
.cp-info-divider {
  height: 1px;
  background: rgba(255,255,255,0.10);
  margin: 20px 0;
}

/* Mini cards row */
.cp-info-mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cp-info-mini-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.cp-info-mini-card__icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.cp-info-mini-card__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.cp-info-mini-card__label {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748B;
  margin: 0;
  line-height: 1;
}

.cp-info-mini-card__value {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  text-decoration: none;
  line-height: 1.4;
  word-break: break-word;
}

a.cp-info-mini-card__value:hover { color: #D6B54A; }

/* Floating yellow response card */
.cp-response-card {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #D6B54A;
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(214,181,74,0.35), 0 2px 8px rgba(0,0,0,0.12);
  min-width: 220px;
  max-width: 280px;
}

.cp-response-card__icon {
  width: 40px;
  height: 40px;
  background: rgba(7,27,46,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cp-response-card__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cp-response-card__label {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 12px;
  font-weight: 600;
  color: rgba(7,27,46,0.70);
  line-height: 1.3;
}

.cp-response-card__value {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 16px;
  font-weight: 700;
  color: #071B2E;
  line-height: 1.3;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* 1200px */
@media (max-width: 1200px) {
  .cp-form-container { padding: 0 40px; }
  .cp-hero__title { font-size: 44px; line-height: 54px; }
}

/* 991px (tablet) */
@media (max-width: 991px) {
  .cp-hero { padding-top: calc(var(--site-header-full-height, 153px) + 80px); padding-bottom: 180px; }
  .cp-hero__title { font-size: 40px; line-height: 50px; }

  .cp-cards-section { margin-top: -60px; }
  .cp-cards-grid { grid-template-columns: repeat(2, 1fr); }

  .cp-form-grid { grid-template-columns: 1fr; }
  .cp-info-col { padding-bottom: 72px; }

  .cp-form-section { padding: 80px 0 100px; }
}

/* 767px (mobile) */
@media (max-width: 767px) {
  .cp-hero { padding-top: calc(var(--site-header-full-height, 153px) + 60px); padding-bottom: 160px; }
  .cp-hero__title { font-size: 36px; line-height: 46px; }
  .cp-hero__desc { font-size: 16px; }
  .cp-hero__actions { flex-direction: column; width: 100%; }
  .cp-btn { width: 100%; max-width: 320px; }

  .cp-cards-section { margin-top: -30px; }
  .cp-cards-container,
  .cp-form-container { padding: 0 16px; }
  .cp-cards-grid { grid-template-columns: 1fr; gap: 16px; }
  .cp-card { padding: 20px 16px; }

  .cp-form-section { padding: 60px 0 80px; }
  .cp-form-card { padding: 28px 24px; }
  .cp-info-card { padding: 28px 24px; }
  .cp-info-mini-cards { grid-template-columns: 1fr; }

  .cp-response-card {
    position: static;
    margin-top: 20px;
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }

  .cp-info-col { padding-bottom: 0; }
}

/* ── Scroll animations ── */
.cp-card {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.2s ease;
}

.cp-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   CONTACT FORM SECTION — kk-contact-* (Custom Form + Assistance)
   ============================================================ */

.kk-contact-section {
  background: #F5F7FA;
  padding: 80px 0 80px;
}

.kk-contact-section__container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.kk-contact-section__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: start;
}

/* ── Left: Form card ── */
.kk-contact-form-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0px 20px 60px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid #F3F4F6;
}

.kk-contact-form-card__title {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  color: #1B2033;
  margin: 0 0 8px;
}

.kk-contact-form-card__subtitle {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 16px;
  line-height: 1.6;
  color: #64748B;
  margin: 0 0 46px;
}

/* Form row (two columns) */
.kk-cform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Uppercase labels */
.kk-cform__label {
  display: block;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748B;
  margin-bottom: 0px;
  line-height: 22px;
}

.kk-contact-form-card .kk-form__group {
  margin-bottom: 8px;
}

/* Icon + input wrapper */
.kk-cform__field-wrap {
  position: relative;
}

.kk-cform__icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
  z-index: 1;
}

/* Pill inputs inside the form card */
.kk-contact-form-card .kk-form__input {
  height: 56px;
  border-radius: 999px;
  padding-left: 50px;
  padding-right: 20px;
  border: 1.5px solid #E2E8F0;
  background: #FFFFFF;
  font-size: 15px;
  color: #1E293B;
}

.kk-contact-form-card .kk-form__input:focus {
  border-color: #071B2E;
  box-shadow: 0 0 0 3px rgba(7, 27, 46, 0.12);
}

/* Select: extra right padding for the chevron arrow */
.kk-contact-form-card .kk-form__select {
  padding-right: 48px;
}

/* Textarea: rectangular rounded corners, no pill */
.kk-contact-form-card .kk-cform__textarea {
  height: auto;
  border-radius: 16px;
  padding: 16px 20px;
  resize: vertical;
  min-height: 140px;
}

/* Submit row */
.kk-cform__submit-wrap {
  display: flex;
  border-top: 0px solid #E5E7EB;
  margin-top: 0px;
  padding-top: 0px;
}

/* Dark navy submit button (overrides the gold default from contact-form.css) */
.kk-contact-form-card .kk-cform__submit {
  background: #071B2E;
  color: #FFFFFF;
  border: none;
  border-radius: 24px;
  height: 60px;
  min-width: auto;
  padding: 16px 40px;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  box-shadow: 0px 8px 20px 0px rgba(6, 182, 212, 0.20);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.kk-contact-form-card .kk-cform__submit:hover:not(:disabled) {
  background: #FFC000;
  color: #071B2E;
  transform: translateY(-2px);
  box-shadow: 0px 22px 42px rgba(7, 27, 46, 0.28), 0px 9px 24px #FFEB3B;
}

.kk-contact-form-card .kk-cform__submit:hover:not(:disabled) .kk-cform__submit-icon svg path {
  stroke: #071B2E;
}

.kk-contact-form-card .kk-cform__submit:active:not(:disabled) {
  transform: translateY(0);
}

.kk-contact-form-card .kk-form__submit-text {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.kk-cform__submit-icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.kk-cform__submit-icon svg {
  width: 28px;
  height: 28px;
}

/* Error state: red pill border */
.kk-contact-form-card .kk-form__group.has-error .kk-form__input {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

/* ── Right: Assistance card ── */
.kk-assistance-col {
  position: relative;
  padding-bottom: 64px;
}

.kk-assistance-card {
  background: #071B2E;
  border-radius: 30px;
  padding: 40px 32px;
  color: #FFFFFF;
  box-shadow: 0px 20px 50px 0px #1B203326;
}

.kk-assistance-card__title {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  color: #FFFFFF;
  margin: 0 0 24px;
}

.kk-assistance-card__label {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #D6B54A;
  margin: 0 0 16px;
  line-height: 24px;
}

.kk-assistance-card__bullets {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kk-assistance-card__bullet {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 16px;
  font-weight: 700;
  color: #D1D5DC;
  line-height: 24px;
}

.kk-assistance-list__icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.kk-assistance-card__locations {
  display: flex;
  flex-direction: column;
  margin-top: 0px;
  margin-bottom: 24px;
}

.kk-assistance-card__sep {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 8px 0;
}

.kk-assistance-card__loc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
}

.kk-assistance-card__city {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.7px;
  color: #99A1AF;
  text-transform: uppercase;
  flex-shrink: 0;
}

.kk-assistance-card__phone {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-weight: 700;
  font-size: 18px;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.2s ease;
}

.kk-assistance-card__phone:hover { color: #D6B54A; }

.kk-assistance-card__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.10);
  margin: 20px 0;
}

.kk-assistance-card__mini-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.kk-assistance-card__mini-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.kk-assistance-card__mini-icon {
  flex-shrink: 0;
  margin-bottom: 12px;
}

.kk-assistance-card__mini-label {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748B;
  margin: 0 0 4px;
  line-height: 1;
}

.kk-assistance-card__mini-value {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 17px;
  font-weight: 600;
  color: #FFFFFF;
  text-decoration: none;
  line-height: 1.4;
  word-break: break-word;
}

a.kk-assistance-card__mini-value:hover { color: #D6B54A; }

/* ── Floating response card ── */
.kk-response-card {
  position: absolute;
  bottom: -15px;
  left: -48px;
  background: #FFC000;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
  min-width: 340px;
}

.kk-response-card__icon {
  width: 64px;
  height: 64px;
  background: #030A12;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kk-response-card__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.kk-response-card__label {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 14px;
  font-weight: 600;
  color: rgba(7, 27, 46, 0.70);
  line-height: 22px;
}

.kk-response-card__value {
  font-family: var(--font-family, 'Open Sans', sans-serif);
  font-size: 26px;
  font-weight: 700;
  color: #030A12;
  line-height: 34px;
}

/* ── kk-contact-section responsive ── */
@media (max-width: 1200px) {
  .kk-contact-section__container { padding: 0 40px; }
  .kk-contact-section__grid { gap: 48px; }
  .kk-contact-form-card { padding: 36px; }
  .kk-assistance-card { padding: 32px 28px; }
}

@media (max-width: 991px) {
  .kk-contact-section { padding: 60px 0 60px; }
  .kk-contact-section__grid { grid-template-columns: 1fr; gap: 40px; }
  .kk-assistance-col { padding-bottom: 80px; }
  .kk-response-card { left: 0; bottom: -15px; }
  .kk-assistance-card__bullet { gap: 12px; }
  .kk-assistance-card__bullets { gap: 14px; }
}

@media (max-width: 767px) {
  .kk-contact-section { padding: 40px 0 40px; }
  .kk-contact-section__container { padding: 0 20px; }
  .kk-contact-form-card { padding: 28px 24px; }
  .kk-assistance-card { padding: 24px 20px; }
  .kk-cform__row { grid-template-columns: 1fr; }
  .kk-contact-form-card .kk-cform__submit {
    width: 100%;
    min-width: 0;
    height: 56px;
    font-size: 16px;
    line-height: 24px;
    padding: 14px 28px;
  }
  .kk-contact-form-card .kk-form__submit-text { gap: 12px; }
  .kk-cform__submit-icon svg { width: 20px; height: 20px; }
  .kk-assistance-card__bullet { gap: 10px; }
  .kk-assistance-card__bullets { gap: 12px; }
  .kk-assistance-list__icon svg { width: 16px; height: 16px; }
  .kk-assistance-card__mini-cards { grid-template-columns: 1fr; }
  .kk-response-card {
    position: static;
    margin-top: 24px;
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
  .kk-assistance-col { padding-bottom: 0; }
}
