/* =====================================================
   AQUASOFT — Contacts Page
   (hero-trust-row shared styles are in aquasoft.css)
   ===================================================== */

/* HERO */
.cnt-hero {
  background: linear-gradient(135deg, var(--deep) 0%, #0a5e57 100%);
  position: relative;
  overflow: hidden;
  padding: 28px 24px 26px;
  text-align: center;
}
.cnt-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8,164,147,.22) 0%, transparent 70%);
  pointer-events: none;
}
.cnt-hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cnt-hero h1 {
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  position: relative;
  z-index: 1;
}

/* PAGE WRAPPER */
.contacts-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 18px 64px;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  color: #111827;
}

/* MAIN GRID */
.contacts-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 22px;
  align-items: start;
}
@media (max-width: 920px) {
  .contacts-grid { grid-template-columns: 1fr; }
}

/* CARDS COLUMN */
.contacts-col { display: flex; flex-direction: column; gap: 16px; }

/* CARD */
.c-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px 20px;
  box-shadow: 0 3px 16px rgba(8,164,147,.07);
}
.c-card-title {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--teal);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.c-card-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* CONTACT ITEMS */
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f7f5;
  text-decoration: none;
  color: #111827;
  transition: color .15s, transform .15s;
}
.contact-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-item:first-child { padding-top: 0; }
.contact-item:hover { color: var(--teal); text-decoration: none; transform: translateX(3px); }

.ci-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ci-icon.teal   { background: linear-gradient(135deg, #e0f5f3, #c8eeeb); }
.ci-icon.green  { background: linear-gradient(135deg, #e0f5ea, #c5edda); }
.ci-icon.blue   { background: linear-gradient(135deg, #e0eeff, #c5d8fb); }
.ci-icon.orange { background: linear-gradient(135deg, #fff0e8, #ffe0cc); }

.ci-label { font-size: .78rem; color: var(--muted); margin-bottom: 2px; font-weight: 500; }
.ci-value { font-size: 1rem; font-weight: 700; color: inherit; }

/* ADDRESS ITEMS */
.addr-item {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f7f5;
  align-items: flex-start;
}
.addr-item:last-child { border-bottom: none; padding-bottom: 0; }
.addr-item:first-child { padding-top: 0; }
.addr-icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: linear-gradient(135deg, #e0f5f3, #c8eeeb);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.addr-city { font-size: .78rem; color: var(--muted); margin-bottom: 3px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.addr-text { font-size: .97rem; font-weight: 700; color: #111827; line-height: 1.4; }
.addr-note { font-size: .82rem; color: var(--muted); margin-top: 3px; }

/* HOURS */
.hours-header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.hours-icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: linear-gradient(135deg, #e0f5f3, #c8eeeb);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hours-icon-title { font-weight: 700; font-size: .97rem; color: var(--deep); }
.hours-icon-sub { font-size: .8rem; color: var(--muted); margin-top: 1px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 14px;
  background: var(--light);
  border-radius: 10px;
  margin-bottom: 8px;
}
.hours-row:last-child { margin-bottom: 0; }
.hours-row .label { color: var(--muted); font-size: .9rem; font-weight: 500; }
.hours-row .value { font-weight: 800; color: #111827; font-size: .95rem; }
.badge-open {
  display: inline-flex; align-items: center; gap: 6px;
  background: #d1fae5; color: #065f46;
  font-size: .8rem; font-weight: 800;
  padding: 5px 12px; border-radius: 20px;
}
.badge-open::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
  animation: pulse-green 1.8s infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

/* MAP */
.map-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: 0 3px 16px rgba(8,164,147,.07);
  overflow: hidden;
}
.map-label {
  padding: 14px 18px 10px;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--teal);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.map-inner { min-height: 440px; }
.map-inner > * { width: 100% !important; }

/* CTA */
.contacts-cta {
  margin-top: 24px;
  background: linear-gradient(135deg, var(--deep) 0%, #0a5e57 100%);
  border-radius: var(--r);
  padding: 32px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.contacts-cta::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  pointer-events: none;
}
.contacts-cta h3 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 6px;
}
.contacts-cta p { color: rgba(255,255,255,.72); font-size: .92rem; margin: 0 0 12px; }
.cta-checks {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  font-weight: 500;
}
.cta-check-dot {
  width: 16px; height: 16px;
  background: var(--teal);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: .55rem;
  font-weight: 900;
  flex-shrink: 0;
}
.btn-cta-contact {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, #FF7A45, #FF6B35);
  color: #fff;
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 800; font-size: .97rem;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 22px rgba(255,107,53,.4);
  transition: transform .15s, box-shadow .15s;
  flex-shrink: 0;
}
.btn-cta-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255,107,53,.5);
  color: #fff; text-decoration: none;
}

/* REQUISITES */
.req-card {
  margin-top: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: 0 3px 16px rgba(8,164,147,.07);
  overflow: hidden;
}
.req-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
  font-weight: 700;
  font-size: 1rem;
  color: var(--deep);
  gap: 10px;
  transition: background .15s;
}
.req-toggle:hover { background: var(--light); }
.req-toggle-left { display: flex; align-items: center; gap: 12px; }
.req-toggle-icon-wrap {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--light);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.req-toggle svg.chevron { transition: transform .22s; flex-shrink: 0; }
.req-toggle.open svg.chevron { transform: rotate(180deg); }
.req-body {
  padding: 0 22px 20px;
  display: none;
  font-size: .9rem;
  line-height: 1.7;
  color: #374151;
  border-top: 1px solid var(--border);
}
.req-body.open { display: block; padding-top: 16px; }
.req-row {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f7f5;
  align-items: baseline;
}
.req-row:last-child { border-bottom: none; }
.req-row .rk {
  color: var(--muted);
  min-width: 210px;
  flex-shrink: 0;
  font-size: .86rem;
  font-weight: 500;
}
.req-row .rv {
  font-weight: 700;
  color: #111827;
  font-size: .88rem;
  word-break: break-all;
}
@media (max-width: 600px) {
  .req-row { flex-direction: column; gap: 2px; }
  .req-row .rk { min-width: 0; }
}
