.contact-page-hero {
  position: relative;
  background:
    linear-gradient(to right, rgba(122, 18, 20, 0.88) 55%, rgba(33, 35, 40, 0.5) 100%),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80") center/cover no-repeat;
  padding: 64px 0 52px;
}

.contact-page-hero h1 {
  font-size: clamp(30px, 4.5vw, 54px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}

.contact-hero-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin-top: 12px;
  line-height: 1.7;
  max-width: 480px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 14px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb .current {
  color: var(--accent);
  font-weight: 600;
}

.contact-section {
  background: #fff;
  padding: 60px 0;
}

.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: start;
}

.form-title,
.info-title,
.map-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 6px;
}

.form-title-bar,
.info-title-bar,
.map-title-bar {
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.form-title-bar {
  margin-bottom: 14px;
}

.info-title-bar,
.map-title-bar {
  margin-bottom: 24px;
}

.form-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 28px;
}

.form-group {
  position: relative;
  margin-bottom: 16px;
}

.form-group .fi {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  pointer-events: none;
}

.form-group.textarea-group .fi {
  top: 16px;
  transform: none;
}

.form-control {
  width: 100%;
  padding: 13px 14px 13px 42px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 46, 90, 0.08);
}

.form-control::placeholder {
  color: #bbb;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
  padding-top: 13px;
}

select.form-control {
  appearance: none;
  cursor: pointer;
}

.select-wrap {
  position: relative;
}

.select-wrap .chevron-down {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #aaa;
}

.form-submit {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-submit {
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 36px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  transition: background 0.2s, transform 0.1s;
  width: fit-content;
}

.btn-submit:hover {
  background: var(--accent2);
  transform: translateY(-1px);
}

.form-privacy {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: #888;
}

.contact-success {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  background: #e8f5e9;
  border: 1.5px solid #4caf50;
  border-radius: 8px;
  color: #2e7d32;
  font-size: 14px;
  font-weight: 600;
  align-items: center;
  gap: 10px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.info-card:last-child {
  border-bottom: none;
}

.info-icon {
  width: 46px;
  height: 46px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-card-text h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.info-card-text p {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
  line-height: 1.5;
}

.info-card-text a {
  color: var(--accent);
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
}

.info-card-text a:hover {
  color: var(--accent2);
}

.benefits-strip {
  background: var(--primary);
  padding: 32px 0;
}

.benefits-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.benefit-item {
  padding: 16px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.benefit-item:last-child {
  border-right: none;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-item h4 {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.benefit-item p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}

.map-section {
  padding: 56px 0 0;
  background: var(--light-bg);
}

.map-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.map-wrap iframe {
  width: 100%;
  height: 440px;
  border: none;
  display: block;
}

.cta-banner {
  background: var(--primary);
  padding: 36px 0;
}

.cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 32px;
  align-items: center;
}

.cta-icon-wrap {
  width: 64px;
  height: 64px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-text h3 {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 4px;
}

.cta-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

.cta-checks {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cta-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.cta-phone-btn {
  background: var(--accent);
  border-radius: 10px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: background 0.2s;
  flex-shrink: 0;
}

.cta-phone-btn:hover {
  background: var(--accent2);
}

.cta-phone-btn strong {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  display: block;
  line-height: 1.2;
}

.cta-phone-btn span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1024px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-icon-wrap {
    margin: 0 auto;
  }

  .cta-checks {
    align-items: center;
  }

  .cta-phone-btn {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-item:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 480px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-item {
    border-right: none;
  }
}
