/* =========================================================
   HAWA SINGH CRANE SERVICE - CONTACT PAGE ONLY
   Existing style.css continues to control global styles,
   header, footer, buttons, floating actions and offcanvas.
   ========================================================= */

.contact-page {
  overflow: hidden;
}

.contact-page-space {
  padding: 76px 0;
}

/* SIMPLE THIN BREADCRUMB */
.contact-breadcrumb {
  background: #f7f8f9;
  border-bottom: 1px solid #e7eaed;
}

.contact-breadcrumb-inner {
  min-height: 138px;
  display: flex;
  align-items: center;
  padding-top: 22px;
  padding-bottom: 22px;
}

.contact-breadcrumb h1 {
  margin: 0 0 9px;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.contact-breadcrumb .breadcrumb {
  --bs-breadcrumb-divider: '›';
  font-size: 14px;
}

.contact-breadcrumb .breadcrumb-item a {
  color: #5f6971;
  transition: color .2s ease;
}

.contact-breadcrumb .breadcrumb-item a:hover {
  color: var(--red);
}

.contact-breadcrumb .breadcrumb-item.active {
  color: var(--red);
  font-weight: 600;
}

/* MAIN CONTACT */
.contact-main-section {
  background: #fff;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 58px;
  align-items: start;
}

.contact-info-panel h2,
.contact-form-heading h2,
.contact-location-copy h2 {
  margin-bottom: 18px;
}

.contact-info-panel h2 span,
.contact-form-heading h2 span,
.contact-location-copy h2 span,
.contact-section-heading h2 span {
  color: var(--red);
}

.contact-intro {
  max-width: 590px;
  margin: 0 0 28px;
  color: #4d5860;
  font-size: 16px;
  line-height: 1.72;
}

.contact-info-list {
  display: grid;
  gap: 13px;
}

.contact-info-card {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 15px 17px;
  border: 1px solid #e8ebed;
  border-radius: 9px;
  background: linear-gradient(180deg, #fff, #fbfbfb);
  box-shadow: 0 5px 18px rgba(7, 18, 26, .045);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.contact-info-card[href]:hover {
  color: var(--ink);
  transform: translateY(-2px);
  border-color: #ffd1d3;
  box-shadow: 0 10px 24px rgba(7, 18, 26, .075);
}

.contact-info-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 54px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 23px;
}

.contact-info-icon.whatsapp {
  background: var(--green);
}

.contact-info-card small,
.contact-info-card strong,
.contact-info-card em {
  display: block;
}

.contact-info-card small {
  margin-bottom: 2px;
  color: #7b858c;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.contact-info-card strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.contact-info-card em {
  margin-top: 3px;
  color: #68737b;
  font-size: 13px;
  font-style: normal;
  line-height: 1.4;
}

/* FORM */
.contact-form-card {
  padding: 35px;
  border: 1px solid #e7e9eb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(7, 18, 26, .09);
}

.contact-form-heading {
  margin-bottom: 27px;
}

.contact-form-heading h2 {
  font-size: clamp(30px, 3vw, 43px);
}

.contact-form-heading > p:not(.eyebrow) {
  max-width: 570px;
  margin: 0;
  color: #68737b;
  font-size: 14px;
  line-height: 1.55;
}

.contact-form-card .form-label {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.contact-form-card .form-label span {
  color: var(--red);
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  min-height: 52px;
  border: 1px solid #dfe3e6;
  border-radius: 6px;
  background-color: #fbfcfc;
  color: var(--ink);
  font-size: 14px;
  box-shadow: none;
}

.contact-form-card textarea.form-control {
  min-height: 124px;
  resize: vertical;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 8, 12, .08);
}

.contact-form-card .form-control::placeholder {
  color: #9ba4aa;
}

.contact-submit {
  min-height: 50px;
}

.contact-form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 6px;
}

.contact-form-actions > p {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  color: #7a858c;
  font-size: 12px;
  line-height: 1.45;
}

.contact-form-actions > p i {
  color: var(--green);
  font-size: 17px;
}

/* HELP / SERVICES */
.contact-help-section {
  padding: 70px 0;
  background: #f7f8f9;
  border-top: 1px solid #eceff1;
  border-bottom: 1px solid #eceff1;
}

.contact-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 34px;
}

.contact-section-heading > div {
  max-width: 700px;
}

.contact-section-heading h2 {
  margin-bottom: 0;
}

.contact-section-heading > p {
  width: min(390px, 38%);
  margin: 0 0 4px;
  color: #657078;
  font-size: 14px;
  line-height: 1.6;
}

.contact-help-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.contact-help-card {
  min-height: 230px;
  padding: 27px 23px;
  border: 1px solid #e6e9eb;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 7px 24px rgba(7, 18, 26, .04);
}

.contact-help-card > i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 27px;
}

.contact-help-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -.02em;
}

.contact-help-card p {
  margin: 0;
  color: #606b73;
  font-size: 14px;
  line-height: 1.62;
}

/* MAP / LOCATION */
.contact-location-section {
  background: #fff;
}

.contact-location-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 58px;
  align-items: center;
}

.contact-location-copy > p:not(.eyebrow) {
  margin-bottom: 24px;
  color: #556169;
  font-size: 15px;
  line-height: 1.7;
}

.location-address-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 25px;
  padding: 18px;
  border-left: 4px solid var(--red);
  background: #f7f8f9;
}

.location-address-box > i {
  color: var(--red);
  font-size: 34px;
  flex: none;
}

.location-address-box small,
.location-address-box strong,
.location-address-box span {
  display: block;
}

.location-address-box small {
  margin-bottom: 2px;
  color: #78838a;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.location-address-box strong {
  color: var(--ink);
  font-size: 18px;
}

.location-address-box span {
  margin-top: 3px;
  color: #657078;
  font-size: 13px;
}

.contact-map-wrap {
  height: 405px;
  overflow: hidden;
  border-radius: 10px;
  background: #edf0ea;
  box-shadow: 0 12px 32px rgba(7, 18, 26, .10);
}

.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  filter: saturate(.82);
}

/* RESPONSIVE */
@media (max-width: 1199px) {
  .contact-main-grid,
  .contact-location-grid {
    gap: 40px;
  }

  .contact-help-grid {
    gap: 16px;
  }

  .contact-help-card {
    padding: 24px 19px;
  }
}

@media (max-width: 991px) {
  .contact-page-space {
    padding: 62px 0;
  }

  .contact-main-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-panel {
    max-width: 760px;
  }

  .contact-info-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-help-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-location-grid {
    grid-template-columns: 1fr;
  }

  .contact-location-copy {
    max-width: 720px;
  }

  .contact-map-wrap {
    height: 350px;
  }
}

@media (max-width: 767px) {
  .contact-breadcrumb-inner {
    min-height: 108px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .contact-breadcrumb h1 {
    margin-bottom: 7px;
    font-size: 30px;
  }

  .contact-page-space,
  .contact-help-section {
    padding: 50px 0;
  }

  .contact-main-grid {
    gap: 34px;
  }

  .contact-info-list {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    padding: 26px 20px;
  }

  .contact-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-form-actions .small-button {
    width: 100%;
  }

  .contact-section-heading {
    display: block;
    margin-bottom: 28px;
  }

  .contact-section-heading > p {
    width: auto;
    margin-top: 13px;
  }

  .contact-help-grid {
    grid-template-columns: 1fr;
  }

  .contact-help-card {
    min-height: auto;
  }

  .contact-map-wrap {
    height: 315px;
  }
}

@media (max-width: 480px) {
  .contact-page-space,
  .contact-help-section {
    padding: 43px 0;
  }

  .contact-info-panel h2,
  .contact-form-heading h2,
  .contact-location-copy h2,
  .contact-section-heading h2 {
    font-size: 30px;
  }

  .contact-info-card {
    padding: 14px;
  }

  .contact-info-icon {
    width: 49px;
    height: 49px;
    flex-basis: 49px;
    font-size: 21px;
  }

  .contact-info-card strong {
    font-size: 16px;
  }

  .contact-form-card {
    padding: 23px 16px;
  }

  .contact-map-wrap {
    height: 280px;
  }
}
