#contact-page {
  --ct-primary: #00BAF2;
  --ct-primary-dark: #0098c7;
  --ct-ink: #2B2A2A;
  --ct-muted: #69727a;
  --ct-line: #e7e9ee;
  --ct-bg: #f4f6f9;
  --ct-card: #fff;
  --ct-danger: #d64545;
  --ct-radius: 12px;
  --ct-radius-sm: 8px;
  --ct-shadow: 0 2px 10px rgba(16, 36, 74, .06);
  --ct-shadow-hover: 0 6px 20px rgba(16, 36, 74, .12);

  font-family: 'Roboto', sans-serif;
  color: var(--ct-ink);
  padding: 8px 0 56px;
}

#contact-page *,
#contact-page *::before,
#contact-page *::after { box-sizing: border-box; }

#contact-page h1,
#contact-page h2,
#contact-page h3 {
  font-family: 'Roboto', sans-serif;
  color: var(--ct-ink);
  margin: 0;
}

#contact-page p { margin: 0; }

#contact-page a { color: var(--ct-primary-dark); }

.ct-hero {
  padding: 28px 24px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #eaf8fe 0%, #f7fbfd 60%, #fff 100%);
  border: 1px solid var(--ct-line);
  border-radius: var(--ct-radius);
  box-shadow: var(--ct-shadow);
}

#contact-page .ct-hero__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.ct-hero__title::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 12px;
  border-radius: 2px;
  background: var(--ct-primary);
}

#contact-page .ct-hero__intro {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ct-muted);
  max-width: 62ch;
  margin-top: 14px;
}

.ct-hero__media {
  margin: 24px 0 0;
  min-width: 0;
  line-height: 0;
  border-radius: var(--ct-radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(16, 36, 74, .14);
}

.ct-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: cover;
  object-position: center 45%;
}

.ct-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.ct-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.ct-card {
  background: var(--ct-card);
  border: 1px solid var(--ct-line);
  border-radius: var(--ct-radius);
  box-shadow: var(--ct-shadow);
  padding: 22px 24px;
  transition: box-shadow .2s ease;
}

.ct-card:hover { box-shadow: var(--ct-shadow-hover); }

#contact-page .ct-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .01em;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--ct-line);
}

.ct-card__title i {
  color: var(--ct-primary);
  font-size: 18px;
}

.ct-store {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px !important;
}

.ct-address {
  font-style: normal;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ct-muted);
  margin: 0 0 16px;
}

.ct-open {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ct-muted);
}

.ct-depts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ct-dept {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px;
  border-radius: var(--ct-radius-sm);
  transition: background .15s ease;
}

.ct-dept:hover { background: var(--ct-bg); }

.ct-dept__icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 186, 242, .12);
  color: var(--ct-primary-dark);
  font-size: 16px;
}

.ct-dept__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ct-dept__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--ct-muted);
}

.ct-dept__phones {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
}

.ct-dept__phone {
  font-size: 17px;
  font-weight: 600;
  color: var(--ct-ink) !important;
  text-decoration: none;
  white-space: nowrap;
  transition: color .15s ease;
}

.ct-dept__phone:hover {
  color: var(--ct-primary-dark) !important;
  text-decoration: none;
}

.ct-emails {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ct-emails a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--ct-radius-sm);
  font-size: 15px;
  font-weight: 500;
  color: var(--ct-ink) !important;
  text-decoration: none;
  word-break: break-word;
  transition: background .15s ease, color .15s ease;
}

.ct-emails a i {
  color: var(--ct-primary);
  font-size: 15px;
}

.ct-emails a:hover {
  background: var(--ct-bg);
  color: var(--ct-primary-dark) !important;
  text-decoration: none;
}

.ct-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: var(--ct-radius-sm);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
}

.ct-btn:hover { text-decoration: none; transform: translateY(-1px); }

.ct-btn--ghost {
  background: #fff;
  border-color: var(--ct-primary);
  color: var(--ct-primary-dark) !important;
}

.ct-btn--ghost:hover {
  background: var(--ct-primary);
  color: #fff !important;
}

.ct-btn--primary {
  align-self: flex-start;
  background: var(--ct-primary);
  color: #fff !important;
  padding: 13px 30px;
  font-size: 16px;
  box-shadow: 0 4px 14px rgba(0, 186, 242, .3);
}

.ct-btn--primary:hover { background: var(--ct-primary-dark); }

.ct-form__intro {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ct-muted);
  margin-bottom: 20px !important;
}

.ct-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ct-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ct-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--ct-muted);
  margin: 0;
}

.ct-req {
  color: var(--ct-danger);
  margin-left: 3px;
}

.ct-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--ct-line);
  border-radius: var(--ct-radius-sm);
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  color: var(--ct-ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}

.ct-input::placeholder { color: #adb5bd; }

.ct-input:focus {
  border-color: var(--ct-primary);
  box-shadow: 0 0 0 3px rgba(0, 186, 242, .18);
}

#contact-page .ct-btn:focus-visible,
#contact-page .ct-consent input[type="checkbox"]:focus-visible,
#contact-page a:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 186, 242, .45);
  border-radius: var(--ct-radius-sm);
}

.ct-textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.6;
}

.ct-input--error {
  border-color: var(--ct-danger);
  background: #fff8f8;
}

.ct-error {
  font-size: 13px;
  font-weight: 500;
  color: var(--ct-danger);
}

.ct-field--consent { gap: 6px; }

.ct-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ct-muted);
  font-weight: 400;
  margin: 0;
  cursor: pointer;
}

.ct-consent input[type="checkbox"] {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--ct-primary);
  cursor: pointer;
}

.ct-consent a {
  color: var(--ct-primary-dark);
  text-decoration: underline;
}

.ct-trap {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.ct-done {
  max-width: 640px;
  margin: 24px auto;
  text-align: center;
  padding: 40px 28px;
}

.ct-done__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: rgba(0, 186, 242, .12);
  color: var(--ct-primary-dark);
  font-size: 34px;
}

.ct-done__title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px !important;
}

.ct-done__note {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ct-muted);
  margin: 0 auto 26px !important;
  max-width: 46ch;
}

.ct-done__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.ct-done__actions .ct-btn--primary { align-self: auto; }

.ct-card--locations { margin-top: 24px; }

.ct-locations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.ct-location__image {
  max-width: 100%;
  height: auto;
  border-radius: var(--ct-radius-sm);
  margin-bottom: 12px;
}

.ct-location__name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px !important;
}

.ct-location__row {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ct-muted);
  margin-bottom: 6px !important;
}

@media (min-width: 768px) {
  .ct-hero { padding: 34px 36px; }

  .ct-hero__title { font-size: 36px; }
}

@media (min-width: 992px) {
  .ct-layout { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
}

@media (max-width: 575px) {
  #contact-page { padding-bottom: 36px; }

  .ct-hero { padding: 22px 16px; }

  .ct-hero__media { margin-top: 18px; }

  .ct-hero__title { font-size: 25px; }

  .ct-card { padding: 18px 16px; }

  .ct-dept { padding: 10px 4px; }

  .ct-btn--primary { width: 100%; }
}
