/* ============================================================
   СЕКЦИЯ "Контакты" id="contact" — кнопки связи (.contact-btn, .cc-*, .ci-*, .cb-*, .clv-*), расписание работы (.sched-*, .status-dot).
   ============================================================ */

.contact-title {
  font-family: var(--f-display);
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}

.contact-sub {
  font-size: 14px;
  color: var(--text);
  text-align: center;
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.contact-layout {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: var(--container-narrow);
  margin: 0 auto;
  width: 100%;
}

.contact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 4px;
  border-radius: var(--r-lg);
  text-decoration: none;
  transition: 0.3s;
  border: 1.5px solid;
  text-align: center;
  min-height: 64px;
  width: 100%;
}

.cc-gold {
  border-color: rgba(255, 184, 48, 0.22);
  background: rgba(255, 184, 48, 0.035);
}

.cc-red {
  border-color: rgba(255, 59, 59, 0.22);
  background: rgba(255, 59, 59, 0.035);
}

.cc-green {
  border-color: rgba(0, 230, 138, 0.22);
  background: rgba(0, 230, 138, 0.035);
}

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

.cc-gold:hover {
  border-color: var(--gold);
}

.cc-red:hover {
  border-color: var(--red);
}

.cc-green:hover {
  border-color: var(--green);
}

.contact-btn .ci-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
  color: #fff;
}

.ci-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #08040c !important;
}

.ci-red {
  background: linear-gradient(135deg, #ff6b6b, #ff3b3b);
}

.ci-green {
  background: linear-gradient(135deg, var(--green), #00b36b);
}

.cb-label {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
}

.cb-val {
  display: none;
  font-size: 11px;
  font-weight: 700;
}

.clv-gold {
  color: var(--gold);
}

.clv-red {
  color: #ff8a8a;
}

.clv-green {
  color: var(--green);
}

.sched-box {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 26px;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.sched-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 230, 138, 0.08);
  border: 1px solid rgba(0, 230, 138, 0.25);
  color: var(--green);
  font-size: 11.5px;
  font-weight: 700;
  margin-bottom: 18px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulseGold 2s ease-in-out infinite;
}

.sched-rows {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.sched-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13.5px;
}

.sched-row:last-child {
  border-bottom: none;
}

.sched-row span {
  color: var(--text);
}

.sched-row strong {
  color: #fff;
  font-weight: 800;
}

.sched-row.dim strong {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
}

.sched-foot {
  font-size: 12px;
  color: var(--text-dim);
  padding-top: 2px;
}

.sched-foot i {
  color: var(--gold);
  margin-right: 5px;
}

@media (min-width: 1024px) {
  .contact-layout {
    max-width: none;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 36px;
    align-items: center;
  }
  .contact-row {
    max-width: none;
    margin: 0;
  }
  .contact-btn {
    padding: 22px 14px;
    min-height: 100px;
    gap: 6px;
  }
  .contact-btn .ci-box {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
  .cb-label {
    font-size: 12.5px;
  }
  .cb-val {
    display: block;
    font-size: 11px;
    font-weight: 700;
  }
  .sched-box {
    max-width: none;
    margin: 0;
  }
}

@media (min-width: 481px) and (max-width: 1023px) {
  .contact-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .contact-btn {
    min-height: 72px;
    padding: 14px 6px;
  }
  .contact-btn .ci-box {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
  .cb-label {
    font-size: 11px;
  }
  .cb-val {
    display: none;
  }
}

.sched-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.sched-status.weekday {
  background: rgba(0, 230, 138, 0.08);
  border: 1px solid rgba(0, 230, 138, 0.25);
  color: var(--green);
}

.sched-status.weekday .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulseGold 2s ease-in-out infinite;
}

.sched-status.weekend {
  background: rgba(255, 184, 48, 0.08);
  border: 1px solid rgba(255, 184, 48, 0.25);
  color: var(--gold);
}

.sched-status.weekend .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(255, 184, 48, 0.6);
  animation: pulseGold 2s ease-in-out infinite;
}

.sched-status .status-text {
  font-size: 11.5px;
  font-weight: 700;
}

