/* =====================================================
   CONTACT PAGE ONLY STYLES
===================================================== */

.page-template-page-contact {
  --teal-blue: #2FA4B8;
  --deep-blue: #1F6F8B;
  --leaf-green: #6FBF73;
  --light-grey: #F4F6F7;
  --white: #FFFFFF;
  --dark-text: #2E2E2E;
}

/* HERO */

.page-template-page-contact .contact-hero {
  position: relative;
  min-height: 75vh;
  background: url('/wp-content/uploads/2026/02/contact-scaled.png') center / cover no-repeat;
  display: flex;
  align-items: center;
}



.page-template-page-contact .contact-hero-inner {
  position: relative;
  max-width: 720px;
  padding-left: 90px;
  color: #fff;
}

.page-template-page-contact .hero-subtitle {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  color: #E6F7F9;
}

.page-template-page-contact h1 {
  font-size: 56px;
  margin-bottom: 14px;
}

.page-template-page-contact .contact-hero-inner p {
  font-size: 18px;
  max-width: 520px;
}

/* LAYOUT */

.page-template-page-contact .contact-section {
  padding: 90px 20px;
}

.page-template-page-contact .contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
}

/* INFO BOXES */

/* INFO BOXES – BLUE THEME */

.page-template-page-contact .info-box {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--secondary-blue)
  );
  color: var(--deep-blue);
  border-radius: 22px;
  padding: 32px;
  display: flex;
  gap: 22px;
  box-shadow: 0 12px 30px rgba(31, 111, 139, 0.18);
}

.page-template-page-contact .info-box:not(:last-child) {
  margin-bottom: 22px;
}

.page-template-page-contact .info-box .icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-template-page-contact .info-box svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

.page-template-page-contact .info-box h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.page-template-page-contact .info-box p {
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.95;
}


/* FORM */

/* CONTACT FORM – CLEAN BLUE */

.page-template-page-contact .contact-form {
  background: var(--light-grey);
  padding: 50px;
  border-radius: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.page-template-page-contact .contact-form h3 {
  font-size: 30px;
  color: var(--primary-blue);
  margin-bottom: 30px;
}
/* CONTACT FORM INPUTS */

.page-template-page-contact .contact-form input,
.page-template-page-contact .contact-form textarea {
  width: 100%;
  padding: 15px 18px;
  border-radius: 30px;
  border: 1px solid #d6e4ea;
  margin-bottom: 18px;
  font-size: 15px;
  background: #ffffff;
}

.page-template-page-contact .contact-form input::placeholder,
.page-template-page-contact .contact-form textarea::placeholder {
  color: #8aa3af;
}

.page-template-page-contact .contact-form input:focus,
.page-template-page-contact .contact-form textarea:focus {
  outline: none;
  border-color: var(--secondary-blue);
}

/* SUBMIT BUTTON */

.page-template-page-contact .contact-form input[type="submit"] {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--secondary-blue)
  );
  color: #2E2E2E;
  border: none;
  padding: 15px 44px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}

.page-template-page-contact .contact-form input[type="submit"]:hover {
  opacity: 0.92;
}

/* MAP */

.page-template-page-contact .contact-map iframe {
  width: 100%;
  height: 450px;
  border: none;
  filter: grayscale(10%) contrast(1.05);
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .page-template-page-contact .contact-container {
    grid-template-columns: 1fr;
  }

  .page-template-page-contact .contact-hero-inner {
    padding: 0 25px;
  }

  .page-template-page-contact h1 {
    font-size: 38px;
  }
}
.page-template-page-contact .contact-container {
  align-items: center;
}
.page-template-page-contact .contact-map iframe {
  filter: grayscale(15%) contrast(1.05);
}

.page-template-page-contact .info-box {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-template-page-contact .info-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(31, 111, 139, 0.25);
}

/* =========================================
   CONTACT FORM 7 – CONTACT PAGE
========================================= */

.page-template-page-contact .wpcf7 {
  margin: 0;
}

.page-template-page-contact .wpcf7-form input[type="text"],
.page-template-page-contact .wpcf7-form input[type="email"],
.page-template-page-contact .wpcf7-form input[type="tel"],
.page-template-page-contact .wpcf7-form textarea {
  width: 100%;
  padding: 15px 18px;
  border-radius: 30px;
  border: 1px solid #d6e4ea;
  font-size: 15px;
  background: #ffffff;
  margin-bottom: 18px;
}

.page-template-page-contact .wpcf7-form textarea {
  border-radius: 22px;
  min-height: 130px;
  resize: vertical;
}

.page-template-page-contact .wpcf7-form input::placeholder,
.page-template-page-contact .wpcf7-form textarea::placeholder {
  color: #8aa3af;
}

.page-template-page-contact .wpcf7-form input:focus,
.page-template-page-contact .wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--secondary-blue);
}

/* SUBMIT BUTTON */

.page-template-page-contact .wpcf7-submit {
  background: linear-gradient(
    135deg,
    var(--primary-blue),
    var(--secondary-blue)
  );
  color:var(--primary-blue) ;
  padding: 15px 44px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
}

.page-template-page-contact .wpcf7-submit:hover {
  opacity: 0.92;
}

/* VALIDATION + RESPONSE */

.page-template-page-contact .wpcf7-not-valid-tip {
  font-size: 13px;
  margin-top: -10px;
  margin-bottom: 10px;
}

.page-template-page-contact .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 14px;
}

/* ICONS – FORCE VISIBILITY */

.page-template-page-contact .info-box {
  color: var(--deep-blue); /* text + svg */
}

.page-template-page-contact .info-box .icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.page-template-page-contact .info-box svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: currentColor !important;
}
