/* ══════════════════════════════════════════════════════
   contact.css  –  BK Painters Contact Page
   BEM naming: block__element--modifier
   Variables inherited from global style.css
══════════════════════════════════════════════════════ */

/* ── PAGE HERO BANNER ── */
.page-hero {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 10, 0.6);
}
.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}
.page-hero__title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.1;
}
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}
.page-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s;
}
.page-hero__breadcrumb a:hover {
  color: #fff;
}
.page-hero__breadcrumb-sep {
  opacity: 0.5;
}

/* ══ MAIN CONTACT SECTION ══ */
.contact-page-section {
  padding: 80px 0 100px;
  background: #fff;
}

.contact-page-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

/* ── LEFT COLUMN ── */
.contact-page-section__eyebrow {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
  display: block;
  margin-bottom: 16px;
}

.contact-page-section__heading {
  font-family: "Outfit", sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: #000;
  line-height: 1.15;
  margin: 0 0 24px;
}

.contact-page-section__heading-highlight {
  color: #e87c1e; /* orange — matching design */
  display: block;
}

.contact-page-section__desc {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  color: #3d3d3d;
  line-height: 1.8;
  margin-bottom: 16px;
}

.contact-page-section__quick-msg {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.75;
  margin-bottom: 36px;
}

/* ── INFO CARDS ── */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}
.contact-info-card:last-child {
  border-bottom: none;
}

.contact-info-card__icon-wrap {
  width: 50px;
  height: 50px;
  background: var(--maroon);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.contact-info-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info-card__label {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #999;
}

.contact-info-card__value {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  line-height: 1.3;
  transition: color 0.2s;
}
a.contact-info-card__value:hover {
  color: var(--maroon);
}

.contact-info-card__sub {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  color: #888;
  line-height: 1.5;
  margin: 0;
}

/* ── RIGHT COLUMN ── */
.contact-page-section__right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-page-section__img-wrap {
  overflow: hidden;
  margin-bottom: 32px;
}
.contact-page-section__img-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

/* ── CONTACT FORM ── */
.contact-page-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-page-form__row {
  margin-bottom: 16px;
}

.contact-page-form__group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.contact-page-form__label {
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #222;
  letter-spacing: 0.02em;
}

.contact-page-form__required {
  color: var(--maroon);
  margin-left: 2px;
}

.contact-page-form__input,
.contact-page-form__textarea,
.contact-page-form__select {
  width: 100%;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 16px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: #222;
  background: #fafafa;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.contact-page-form__input:focus,
.contact-page-form__textarea:focus,
.contact-page-form__select:focus {
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(101, 2, 2, 0.08);
  background: #fff;
}

.contact-page-form__input::placeholder,
.contact-page-form__textarea::placeholder {
  color: #aaa;
  font-size: 13px;
}

.contact-page-form__textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.6;
}

/* Select wrapper */
.contact-page-form__select-wrap {
  position: relative;
}
.contact-page-form__select {
  cursor: pointer;
  padding-right: 40px;
  color: #aaa;
}
.contact-page-form__select:has(option:not([value=""]):checked) {
  color: #222;
}
.contact-page-form__select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #888;
}

/* Submit button */
.contact-page-form__submit {
  margin-top: 6px;
  width: 100%;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  border: none;
}

/* Privacy note */
.contact-page-form__privacy {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  color: #aaa;
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}

/* ══ INSTAGRAM GALLERY ══ */
.contact-instagram {
  background: #fff;
  padding-bottom: 0;
}

.contact-instagram__label {
  text-align: center;
  padding: 36px 0 24px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #888;
}
.contact-instagram__label a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-instagram__label a:hover {
  color: var(--maroon);
}

.contact-instagram__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.contact-instagram__item {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 1 / 1;
}

.contact-instagram__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.contact-instagram__item:hover img {
  transform: scale(1.07);
}

.contact-instagram__overlay {
  position: absolute;
  inset: 0;
  background: rgba(101, 2, 2, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.contact-instagram__item:hover .contact-instagram__overlay {
  opacity: 1;
}

/* ══ FULL-WIDTH MAP ══ */
.contact-map {
  width: 100%;
  display: block;
  line-height: 0;
}
.contact-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.contact-info-card__icon-wrap i {
  color: #fff;
  font-size: 20px;
}

@media (max-width: 991px) {
  .contact-page-section__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 767px) {
  .contact-page-section {
    padding: 60px 0;
  }

  .contact-page-section__heading {
    font-size: 36px;
  }
}
