@charset "UTF-8";
/* ===============================
   CONTACT – FINAL CSS
================================ */

/* ===============================
   HERO / BANNER
================================ */

.contact-hero {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
}

.contact-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Banner text aligned to site grid */
.text-banner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 100%;
  max-width: 1080px;
  padding: 0 24px;

  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  color: #000;
  text-align: left;
}

/* ===============================
   PAGE LAYOUT
================================ */

.contact-wrapper {
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px 24px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 96px;
}

/* ===============================
   LEFT CONTENT
================================ */

.contact-left h3 {
  font-size: 18px;
  font-weight: 600;
	color: #ff7a1a;
  margin-bottom: 12px;
}

.contact-left h3 span {
  color: #ff7a1a;
}

.contact-left p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 28px;
}

/* Address block */
.contact-address img {
  max-width: 160px;
  margin-bottom: 28px;
}

.contact-address h4 {
  font-size: 14px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.contact-address p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 8px;
}

/* ===============================
   RIGHT – CONTACT FORM
================================ */

.contact-right h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
}

/* Normalize CF7 / form fields */
.contact-right input,
.contact-right textarea {
  width: 100%;
  background: #f2f2f2;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 14px;
  color: #333;
  margin-bottom: 16px;
}

.contact-right textarea {
  min-height: 160px;
  resize: none;
}

.contact-right input::placeholder,
.contact-right textarea::placeholder {
  color: #777;
}

.contact-right input:focus,
.contact-right textarea:focus {
  outline: none;
  border-color: #bbb;
  background: #f5f5f5;
}

/* ===============================
   SEND BUTTON
================================ */

.contact-right button,
.contact-form button {
  margin-top: 8px;
  background: #55b7ad;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 10px 36px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}

.contact-right button:hover,
.contact-form button:hover {
  background: #46a79e;
}
/* ===============================
   COMPANY LOGO ABOVE ADDRESS
================================ */

.contact-company-logo {
  margin-bottom: 28px;
	margin-left: -13px;
}

.contact-company-logo img {
  max-width: 160px;
  height: auto;
  display: block;
}
/* =========================================
   HUBSPOT EMBED – ONLY WHAT IS POSSIBLE
========================================= */

/* Remove spacing around the embed container */
.hs-form-frame {
  margin: -40px !important;
  padding: -40px !important;
  background: transparent !important;
}

/* Control iframe box itself */
.hs-form-frame iframe {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Prevent iframe from adding layout gaps */
.contact-right .hs-form-frame {
  line-height: 0;
}


/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    row-gap: 56px;
  }

  .contact-hero .text-banner {
    font-size: 26px;
    padding-left: 20px;
    padding-right: 16px;
    max-width: 100%;
    box-sizing: border-box;
  }
}


@media (max-width: 480px) {
  .contact-hero {
    height: 280px;
  }

  .contact-hero .text-banner {
    font-size: 22px;
    padding-left: 20px;
    padding-right: 16px;
  }
}