﻿/* Contact page */
.contact-page-body .contact-hero {
  position: relative;
  padding: 110px 0;
  background: var(--builza-black);
  overflow: hidden;
}

.contact-page-body .contact-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, #1a1a2ef5, #1a1a2eaa), url(../images/backgrounds/slider/slider-1-1.png) center/cover;
}

.contact-page-body .contact-hero .container {
  position: relative;
  z-index: 1;
}

.contact-page-body .tag {
  color: var(--builza-base);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-page-body .contact-hero h1 {
  margin: 14px 0;
  font-family: var(--builza-font-two);
  font-weight: 700;
  color: #fff;
  font-size: clamp(42px, 6vw, 68px);
}

.contact-page-body .contact-hero h1 span,
.contact-page-body .heading span {
  color: var(--builza-base);
}

.contact-page-body .contact-hero p {
  font-family: var(--builza-font);
  font-weight: 500;
  max-width: 580px;
  color: #ffffffd1;
  font-size: 18px;
  line-height: 30px;
}

.contact-page-body .contact-section {
  padding: 110px 0;
}

.contact-page-body .heading {
  margin: 12px 0 45px;
  font-family: var(--builza-font-two);
  font-weight: 700;
  font-size: 48px;
}

.contact-page-body .contact-card {
  height: 100%;
  padding: 32px 28px;
  border: 1px solid #e4e7e5;
  transition: 0.3s;
}

.contact-page-body .contact-card:hover {
  border-color: var(--builza-base);
  box-shadow: 0 15px 35px #1a1a2e18;
  transform: translateY(-5px);
}

.contact-page-body .card-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 20px;
  place-items: center;
  background: var(--builza-primary);
  color: var(--builza-base);
  font-size: 25px;
}

.contact-page-body .contact-card h3 {
  font-family: var(--builza-font-two);
  font-weight: 700;
  font-size: 23px;
}

.contact-page-body .contact-card p,
.contact-page-body .contact-card a {
  font-family: var(--builza-font);
  font-weight: 500;
  color: var(--builza-gray);
  line-height: 25px;
}

.contact-page-body .contact-card a:hover {
  color: var(--builza-base);
}

.contact-page-body .contact-content {
  padding-top: 80px;
}

.contact-page-body .contact-form {
  padding: 48px;
  border-radius: 10px;
  background: var(--builza-primary);
}

.contact-page-body .contact-form h2 {
  font-family: var(--builza-font-two);
  font-weight: 700;
  font-size: 38px;
}

.contact-page-body .contact-form .form-control {
  font-family: var(--builza-font);
  font-weight: 500;
  height: 58px !important;
  margin-bottom: 20px;
  padding: 0 20px !important;
  border: 0 !important;
  border-radius: 0 !important;
}

.contact-page-body .contact-form .form-control.message {
  height: 155px !important;
  padding-top: 18px !important;
}

.contact-page-body .contact-map {
  height: 100%;
  border: 1px solid #e4e7e5;
  border-radius: 10px;
  overflow: hidden;
}

.contact-page-body .contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
}

#contactForm .button,
#contactForm button {
  border: none !important;
  outline: none;
  box-shadow: none;
  appearance: none;
}

/* Contact page responsive */
@media (max-width: 991px) {
    .contact-page-body .contact-section {
        padding: 80px 0;
    }

    .contact-page-body .contact-content {
        padding-top: 50px;
    }

    .contact-page-body .contact-map {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .contact-page-body .contact-hero {
        padding: 80px 0;
    }

    .contact-page-body .contact-hero h1 {
        font-size: 42px;
        line-height: 1.12;
    }

    .contact-page-body .heading {
        font-size: 32px;
        line-height: 1.2;
    }

    .contact-page-body .contact-form {
        padding: 32px 22px;
    }

    .contact-page-body .contact-form h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .contact-page-body .contact-map iframe {
        min-height: 360px;
    }
}


