/* ============================================================
   Contact Page Styles
   ============================================================ */

/* === CONTACT SPLIT === */
.contact-split {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px 140px;
  
}

.contact-split__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.06);
}

/* Left: details */
.contact-split__details {
  background: #1a1a1a;
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-split__label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d7261e;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-split__label-line { width: 24px; height: 1px; background: rgba(215,38,30,0.4); }

.contact-split__title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}

.contact-split__title strong { font-weight: 400; }

.contact-split__intro {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.38);
  margin-bottom: 40px;
  max-width: 380px;
}

/* Contact items */
.contact-split__items {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 40px;
}

.contact-split__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-split__item-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-split__item-icon svg {
  width: 18px; height: 18px;
  stroke: #d7261e; fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}

.contact-split__item-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}

.contact-split__item-value {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.6);
}

.contact-split__item-value a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-split__item-value a:hover { color: #d7261e; }

/* Hours */
.contact-split__divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 28px;
}

.contact-split__hours-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.38);
  margin-bottom: 14px;
}

.contact-split__hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: rgba(255,255,255,0.28);
  padding: 7px 0;
  max-width: 300px;
}

.contact-split__hours-row span:last-child {
  color: rgba(255,255,255,0.48);
  font-weight: 500;
}

.contact-split__hours-row--red span {
  color: #d7261e !important;
  font-weight: 500;
}

/* Right: form */
.contact-split__form {
  background: #fff;
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-split__form-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: #000;
  margin-bottom: 6px;
}

.contact-split__form-sub {
  font-size: 14px;
  color: #888;
  margin-bottom: 28px;
  line-height: 1.5;
}

.contact-split__form-embed iframe {
  width: 100%;
  height: 677px;
  border: none;
  border-radius: 3px;
}

/* === TRUST CARDS === */
.contact-trust {
  max-width: 1400px;
  margin: -60px auto 0;
  padding: 0 40px 140px;
  
  position: relative;
  z-index: 1;
}

.contact-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
}

.contact-trust__item {
  padding: 40px 32px;
  border-left: 1px solid rgba(0,0,0,0.05);
  transition: background 0.3s ease;
  position: relative;
}

.contact-trust__item:first-child { border-left: none; }
.contact-trust__item:hover { background: rgba(0,0,0,0.015); }

.contact-trust__item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #d7261e;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}

.contact-trust__item:hover::after { transform: scaleX(1); }

.contact-trust__num {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 300;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,0,0,0.06);
  margin-bottom: 18px;
  user-select: none;
  transition: -webkit-text-stroke-color 0.3s ease;
}

.contact-trust__item:hover .contact-trust__num {
  -webkit-text-stroke-color: rgba(215,38,30,0.15);
}

.contact-trust__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  color: #000;
  margin-bottom: 8px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.contact-trust__item:hover .contact-trust__title { color: #d7261e; }

.contact-trust__text {
  font-size: 14px;
  line-height: 1.65;
  color: #777;
}

/* === CTA === */
.contact-cta {
  position: relative;
  padding: 120px 40px;
  
  overflow: hidden;
  background: #080808;
  text-align: center;
}

.contact-cta__bg { position: absolute; inset: 0; }

.contact-cta__bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.12; filter: grayscale(30%);
}

.contact-cta__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(8,8,8,0.4) 0%, rgba(8,8,8,0.96) 70%);
}

.contact-cta__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.contact-cta__label {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d7261e;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.contact-cta__label-line { width: 28px; height: 1px; background: rgba(215,38,30,0.35); }

.contact-cta__title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 300;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
}

.contact-cta__title strong { font-weight: 400; }

.contact-cta__text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  margin-bottom: 40px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.contact-cta__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.contact-cta__btn {
  
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: #d7261e;
  border-radius: 8px;
  padding: 16px 32px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s ease, gap 0.3s ease;
}

.contact-cta__btn:hover { background: #c0211a; gap: 14px; }
.contact-cta__btn svg { width: 14px; height: 14px; }

.contact-cta__phone {
  
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease, gap 0.3s ease;
}

.contact-cta__phone:hover { color: #fff; gap: 12px; }
.contact-cta__phone svg { width: 12px; height: 12px; }

/* === RESPONSIVE === */
@media (max-width: 1080px) {
  .contact-trust__grid { grid-template-columns: repeat(2, 1fr); }
  .contact-trust__item:nth-child(3) { border-left: none; }
  .contact-trust__item { border-bottom: 1px solid rgba(0,0,0,0.05); }
}

@media (max-width: 900px) {
  .contact-hero { padding: 150px 24px 60px; }
  .contact-hero__title { font-size: 44px; }
  .contact-split { padding: 60px 24px 100px; }
  .contact-split__grid { grid-template-columns: 1fr; }
  .contact-split__details { padding: 48px 32px; }
  .contact-split__form { padding: 48px 32px; }
  .contact-split__title { font-size: 26px; }
  .contact-split__hours-row { max-width: 100%; }
  .contact-trust { padding: 0 24px 100px; margin-top: -40px; }
}

@media (max-width: 640px) {
  .contact-hero { padding: 130px 20px 48px; }
  .contact-hero__title { font-size: 34px; }
  .contact-split { padding: 48px 20px 80px; }
  .contact-split__details { padding: 36px 24px; }
  .contact-split__form { padding: 36px 24px; }
  .contact-split__form-embed iframe { height: 720px; }
  .contact-trust { padding: 0 20px 80px; }
  .contact-trust__grid { grid-template-columns: 1fr; }
  .contact-trust__item { border-left: none; border-bottom: 1px solid rgba(0,0,0,0.05); }
  .contact-trust__item:last-child { border-bottom: none; }
  .contact-cta { padding: 80px 20px; }
  .contact-cta__title { font-size: 30px; }
  .contact-cta__btns { flex-direction: column; gap: 14px; }
}