/* =====================================================
   CONTACT PAGE
===================================================== */

.nh-body {
  background: #0A0B0D;
  color: #F3F6F7;
  -webkit-font-smoothing: antialiased;
}

.nh-body .container-xl {
  width: min(100% - 40px, 1280px);
  margin-inline: auto;
}

.ct-eyebrow {
  font-size: 17px;
  text-transform: uppercase;
  color: #D91C1C !important;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
}

.ct-eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: #D91C1C;
  display: inline-block;
}

.ct-section {
  position: relative;
  padding: 60px 0px !important;
  background-color: white;
}

.ct-section--light {
  background: #F3F5F7;
  border-top: 1px solid #E3E6E9;
  border-bottom: 1px solid #E3E6E9;
}

.ct-section--light h2 {
  color: #101214 !important;
}

.ct-section--light .ct-eyebrow {
  color: #D91C1C !important;
}

.nh-body h2 {
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  color: #fff;
}

/* ---- H2: 35px desktop / 30px tablet / 23px mobile ---- */
.nh-body h2 {
  font-size: 35px;
}

@media (max-width: 992px) {
  .nh-body h2 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .nh-body h2 {
    font-size: 23px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---- H1 (hero-title): 40px desktop / 32px tablet / 25px phone ---- */
.nh-body .pg-hero .hero-title {
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

@media (max-width: 768px) {
  .nh-body .pg-hero .hero-title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .nh-body .pg-hero .hero-title {
    font-size: 25px;
  }
}

.nh-body .pg-hero .hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .62);
  max-width: 58ch;
  margin: 0 0 1.8rem;
}

@media (max-width: 768px) {
  .nh-body .pg-hero .hero-desc {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* =====================================================
   QUICK CONTACT CARDS
===================================================== */
.ct-quick-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .ct-quick-cards {
    grid-template-columns: 1fr;
  }
}

.ct-quick-card {
  background: #fff;
  border: 1px solid #E3E6E9;
  border-radius: 8px;
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  text-decoration: none;
  display: block;
  box-shadow: 0 6px 20px rgba(16, 18, 20, .05);
}

.ct-quick-card:hover {
  border-color: rgba(217, 28, 28, .35);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(16, 18, 20, .12);
}

.ct-quick-card i {
  font-size: 29px;
  color: #D91C1C;
}

.ct-quick-card strong {
  display: block;
  font-size: 16px;
  text-transform: uppercase;
  color: #101214;
  margin: .7rem 0 .25rem;
  font-weight: 700;
}

.ct-quick-card span {
  font-size: 15px;
  color: #5b6470;
}

/* =====================================================
   CONTACT DETAILS + FORM (pattern reused from become-a-dealer.css .bd-info / .bd-form)
===================================================== */
.ct-info {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.4rem;
}

.ct-info__icon {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: rgba(217, 28, 28, .1);
  border: 1px solid rgba(217, 28, 28, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D91C1C;
  font-size: 18px;
  flex-shrink: 0;
}

.ct-info strong {
  display: block;
  font-size: 15px;
  text-transform: uppercase;
  color: #101214;
  font-weight: 700;
}

.ct-info a,
.ct-info span {
  font-size: 15px;
  color: #5b6470;
  text-decoration: none;
  word-break: break-word;
}

.ct-info a:hover {
  color: #D91C1C;
}

.ct-form {
  background: #fff;
  border: 1px solid #E3E6E9;
  border-radius: 10px;
  padding: 2.5rem;
  box-shadow: 0 6px 20px rgba(16, 18, 20, .05);
}

@media (max-width: 576px) {
  .ct-form {
    padding: 1.6rem;
  }
}
.pg-hero .hero-body {
    position: relative;
    z-index: 2;
    margin-top: 0 !important;
    padding: 0px !important;
}

.ct-form label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #5b6470;
  margin-bottom: 1.1rem;
}

.ct-form input,
.ct-form select,
.ct-form textarea {
  display: block;
  width: 100%;
  margin-top: .4rem;
  background: #F6F7F8;
  border: 1px solid #E3E6E9;
  border-radius: 5px;
  color: #101214;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  padding: .7rem .9rem;
  outline: none;
  transition: border-color .2s;
}

.ct-form input:focus,
.ct-form select:focus,
.ct-form textarea:focus {
  border-color: #D91C1C;
}

.ct-form textarea {
  min-height: 120px;
  resize: vertical;
}

@media (max-width: 768px) {

  .ct-form input,
  .ct-form select,
  .ct-form textarea {
    font-size: 16px;
    padding: .85rem .9rem;
  }

  .ct-form label {
    margin-bottom: .9rem;
  }

  .ct-form .ct-btn-red {
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }
}

.ct-btn-red {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #D91C1C;
  border: 1.5px solid #D91C1C;
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  padding: .82rem 1.7rem;
  border-radius: 4px;
  transition: .2s;
  text-decoration: none;
  cursor: pointer;
}

.ct-btn-red:hover {
  background: #a01515;
  border-color: #a01515;
}

/* =====================================================
   MAP
===================================================== */
.ct-map-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #2C3238;
}

.ct-map-wrap iframe {
  width: 100%;
  height: 420px;
  display: block;
  border: 0;
  filter: grayscale(.4) contrast(1.05);
}

@media (max-width: 768px) {
  .ct-map-wrap iframe {
    height: 300px;
  }
}
