/* =========================================================
   CONTACTS PAGE — тёмная тема, prefix: ct-
   ========================================================= */

:root {
  --ct-red:    #E00001;
  --ct-red-dk: #c20001;
  --ct-bg:     #0a0a0a;
  --ct-card:   #141414;
  --ct-border: rgba(255,255,255,.07);
  --ct-text:   #c8c8c8;
  --ct-muted:  #555;
  --ct-white:  #ffffff;
}

.ct-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Hero ── */
.ct-hero {
  padding: 120px 20px 56px;
  background: linear-gradient(160deg, #0a0a0a 55%, #180000 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.ct-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(224,0,1,.12) 0%, transparent 70%);
  pointer-events: none;
}
.ct-hero__inner {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}
.ct-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin-bottom: 24px;
}
.ct-breadcrumb a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.ct-breadcrumb a:hover { color: var(--ct-red); }
.ct-breadcrumb span { color: rgba(255,255,255,.2); }
.ct-breadcrumb span:last-child { color: rgba(255,255,255,.55); }
.ct-hero__title {
  font-family: 'Circe', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--ct-white);
  margin: 0 0 16px;
  letter-spacing: -.5px;
}
.ct-hero__title span { color: var(--ct-red); }
.ct-hero__sub {
  font-size: 16px;
  color: var(--ct-text);
  margin: 0;
}

/* ── Section ── */
.ct-section {
  background: var(--ct-bg);
  padding: 64px 0 80px;
}

/* ── Layout ── */
.ct-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: start;
}

/* ── Info column ── */
.ct-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ct-info__block {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--ct-card);
  border: 1px solid var(--ct-border);
  border-radius: 14px;
  padding: 20px 22px;
  transition: border-color .2s;
}
.ct-info__block:hover { border-color: rgba(224,0,1,.2); }

.ct-info__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(224,0,1,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ct-red);
}
.ct-info__icon svg { width: 20px; height: 20px; }

.ct-info__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ct-muted);
  margin-bottom: 6px;
}
.ct-info__value {
  font-size: 15px;
  color: var(--ct-white);
  line-height: 1.6;
}
.ct-info__value strong { color: var(--ct-white); }
.ct-info__value--link {
  text-decoration: none;
  color: var(--ct-white);
  font-size: 20px;
  font-weight: 700;
  font-family: 'Circe', sans-serif;
  transition: color .2s;
}
.ct-info__value--link:hover { color: var(--ct-red); }

.ct-info__link {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--ct-red);
  text-decoration: none;
  font-weight: 600;
  transition: opacity .2s;
}
.ct-info__link:hover { opacity: .7; }

.ct-info__socials { display: flex; flex-direction: column; gap: 8px; margin-top: 2px; }
.ct-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ct-text);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}
.ct-social:hover { color: var(--ct-red); }
.ct-social i { font-size: 16px; }

/* ── Contact form ── */
.ct-form-block {
  background: linear-gradient(135deg, #1a0000 0%, #141414 100%);
  border: 1px solid rgba(224,0,1,.2);
  border-radius: 16px;
  padding: 28px 24px;
  margin-top: 8px;
}
.ct-form-block__title {
  font-family: 'Circe', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ct-white);
  margin: 0 0 6px;
}
.ct-form-block__sub {
  font-size: 13px;
  color: var(--ct-muted);
  margin: 0 0 22px;
  line-height: 1.5;
}
.ct-form { display: flex; flex-direction: column; gap: 12px; }
.ct-form__field input {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--ct-white);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
  box-sizing: border-box;
}
.ct-form__field input::placeholder { color: #444; }
.ct-form__field input:focus { border-color: rgba(224,0,1,.5); }

.ct-form__success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 0;
  gap: 8px;
}
.ct-form__success-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(224,0,1,.12);
  border: 2px solid var(--ct-red);
  color: var(--ct-red);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.ct-form__success strong { color: var(--ct-white); font-size: 16px; }
.ct-form__success span { color: var(--ct-muted); font-size: 13px; }

/* ── Map ── */
.ct-map {
  position: sticky;
  top: 96px;
  height: 680px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--ct-border);
}
.ct-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  filter: invert(90%) hue-rotate(180deg) saturate(0.8) brightness(0.85);
}

/* ── Buttons ── */
.ct-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Circe', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: background .2s, transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.ct-btn--primary {
  background: var(--ct-red);
  color: #fff;
  border-color: var(--ct-red);
  box-shadow: 0 8px 24px rgba(224,0,1,.35);
  width: 100%;
}
.ct-btn--primary:hover {
  background: var(--ct-red-dk);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(224,0,1,.5);
  color: #fff;
}
.ct-btn--primary:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none !important;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .ct-layout {
    grid-template-columns: 1fr;
  }
  .ct-map {
    position: static;
    height: 400px;
    order: -1;
  }
  .ct-map iframe { filter: invert(90%) hue-rotate(180deg) saturate(0.8) brightness(0.85); }
}

/* ── SEO text ── */
.ct-seo-text {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--ct-border);
  max-width: 800px;
}
.ct-seo-text h2 {
  font-family: 'Circe', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ct-white);
  margin: 0 0 20px;
}
.ct-seo-text p {
  font-size: 15px;
  color: var(--ct-text);
  line-height: 1.8;
  margin: 0 0 14px;
}
.ct-seo-text p:last-child { margin-bottom: 0; }
.ct-seo-text a { color: var(--ct-red); text-decoration: none; }
.ct-seo-text a:hover { text-decoration: underline; }
.ct-seo-text strong { color: var(--ct-white); }

@media (max-width: 600px) {
  .ct-hero { padding: 100px 16px 48px; }
  .ct-section { padding: 44px 0 60px; }
  .ct-map { height: 300px; border-radius: 14px; }
  .ct-seo-text { margin-top: 40px; padding-top: 36px; }
  .ct-seo-text h2 { font-size: 18px; }
}
