/*----------------------------------------------------------
# Contact Page Styles
----------------------------------------------------------*/

:root {
    --contact-brand-blue: #1b7895;
    --contact-brand-teal: #5DBCC4;
    --contact-ink: #1f2a2e;
    --contact-muted: #6b7b83;
    --contact-bg-cream: #f5f3ef;
    --contact-field-bg: #f3f1ee;
  }
  

.contact-social-section {
    border-top: 1px solid #efefef;
    padding-top: 40px;
    margin-top: 40px;
}

.contact-social-section h4 {
    padding-bottom: 9px;
}



@media (max-width: 575px) {
    .contact-info-card-icon {
        width: 64px;
        margin-top: -13px !important;
        height: 64px;
        margin-bottom: 16px;
    }
	
	.contact-info-card h5 {
    color: #3a5260;
    font-size: 20px;
    font-weight: 700;
    margin-top: 0px !important;
    margin-bottom: -31px;
    line-height: 1.3;
}
}
  /* Hero Section */
  .contact-hero-section {
    position: relative;
    min-height: 590px;
    height: 590px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0) 100%);
  }
  
  .contact-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 40px 0;
  }
  
  .contact-hero-title {
    font-family: 'Proxima Nova', 'Nunito Sans', sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: 44px;
    letter-spacing: 0.3px;
    margin-bottom: 20px;
  }
  
  .contact-page .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: #fff;
  }
  
  .contact-page .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }
  
  .contact-page .breadcrumb-item a:hover {
    opacity: 0.8;
  }
  
  .contact-page .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.9);
  }
  
  .contact-page .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
  }
  
  /* Main Content Section */
  .contact-main-section {
    padding: 80px 0;
    background: #fff;
  }
  
  .contact-main-section .row {
    display: flex;
    align-items: stretch;
  }
  
  .contact-main-section .col-lg-7,
  .contact-main-section .col-lg-5 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .contact-section-title {
    /* color: var(--contact-brand-blue); */
    /* font-family: 'Proxima Nova', 'Nunito Sans', sans-serif; */
    /* font-size: 38px; */
    /* font-weight: 700; */
    margin-bottom: 57px;
  }
  
  .contact-required-tag {
  
	  display:none;
  }
  
  .contact-form-wrapper {
    margin-top: 30px;
  }

@media screen and (min-width: 1025px) {
  .contact-form-wrapper {
    margin-top: -60px;
  }
	h2.contact-section-title {
    /* margin-left: 17px; */
}
}


  
  /* Form Styling */
  .contact-form .form-control,
  .contact-form .form-control:focus,
  .wpcf7-form .form-control,
  .wpcf7-form .form-control:focus {
    background: var(--contact-field-bg);
    border: none;
    padding: 18px 16px;
    border-radius: 3px;
    font-size: 16px;
    color: var(--contact-ink);
  }
  
  .contact-form .form-control:focus,
  .wpcf7-form .form-control:focus {
    box-shadow: none;
    background: var(--contact-field-bg);
    outline: 2px solid var(--contact-brand-teal);
  }
  
  .contact-form .form-control::placeholder,
  .wpcf7-form .form-control::placeholder {
    color: var(--contact-muted);
    opacity: 0.7;
  }
  
  /* Button Styling */
  .contact-btn-teal {
    background: var(--contact-brand-teal);
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 14px 22px;
    box-shadow: 0 6px 18px rgba(93, 188, 196, 0.35);
    transition: transform 0.1s ease, box-shadow 0.3s ease;
    border-radius: 4px;
  }
  
  .contact-btn-teal:hover {
    background: var(--contact-brand-teal);
    transform: translateY(-1px);
    color: #fff;
    box-shadow: 0 8px 24px rgba(93, 188, 196, 0.45);
  }
  
  .contact-recap-box {
    width: 22px;
    height: 22px;
    border: 2px solid #c9d1d6;
    border-radius: 4px;
    background: #fff;
    display: inline-block;
  }
   

.contact-main-section:before {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background: #efefef;
    left: 50%;
    top: 0;
    bottom: 0;
}

.contact-main-section {
    position: relative;
}
  /* Contact Info */
.contact-side-title {
    /* font-family: 'Proxima Nova', 'Nunito Sans', sans-serif; */
    /* color: var(--contact-brand-blue); */
    /* font-size: 28px; */
    /* font-weight: 700; */
    /* margin-bottom: 16px; */
}
  .contact-info-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .contact-info-line {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #6E757B;
    font-weight: 300;
    transition: color 0.3s ease;
  }
  
  .contact-info-line:hover {
    color: var(--contact-brand-teal);
  }
  
  .contact-info-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F6F5F2;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  /* Social Links */
  .contact-social-section h4 {
    color: #1B7895;
    font-size: 20px;
  }
  
  .contact-social-link {
    width: 53px;
    height: 53px;
    border-radius: 50%;
    background: var(--contact-brand-teal);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.1s ease, background 0.3s ease;
    font-size: 18px;
  }
  
  .contact-social-link:hover {
    transform: translateY(-1px);
    color: #fff;
    background: var(--contact-brand-blue);
  }
  
  /* Promo Section */
  .contact-promo-section {
    padding: 80px 0;
    background: var(--contact-bg-cream);
  }
  
  .contact-promo-title {
    /* font-family: 'Proxima Nova', 'Nunito Sans', sans-serif; */
    /* color: var(--contact-brand-blue); */
    /* font-size: 28px; */
    /* font-weight: 700; */
    /* margin-bottom: 40px; */
  }
  
  /* Info Cards */
  .contact-info-card {
    background: #fff;
    border-radius: 8px;
    padding: 40px 32px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    width: 430px;
    height: 361px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
  }
  
  .contact-info-card-icon {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: var(--contact-brand-teal);
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
   margin-top: 40px;
    overflow: hidden;
    flex-shrink: 0;
  }
  
  .contact-card-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }
  
  .contact-info-card h5 {
    color: #1B7895;
    font-size: 22px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 0;
    line-height: 1.3;
    margin-bottom: 18px;
  }
  


  .contact-info-card p{
    /* color: #7a868b; */
    /* font-size: 15px; */
    /* margin: 0px 20px; */
    /* line-height: 1.6; */
    /* flex-grow: 1; */
    /* display: flex; */
    /* align-items: center; */
}
  
  
  .contact-card-link {
    color: var(--contact-brand-teal);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
  }
  
  .contact-card-link:hover {
    color: var(--contact-brand-blue);
  }
  
  /* CTA Section */
  .contact-cta-section {
    background: #b9a792;
    border-radius: 8px;
    min-height: 280px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
  }
  
  .contact-cta-section::before {
    content: "";
    display: block;
    background: url(../images/icons/cta-overlay-img.svg) no-repeat;
    width: 739px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-position: left;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
  }
  
  .contact-cta-content {
    position: relative;
    z-index: 1;
  }
  
  .contact-cta-content h3 {
    color: #fff;
    font-size: 28px;
    line-height: 1.3;
    margin: 0;
    font-family: 'Proxima Nova', 'Nunito Sans', sans-serif;
    font-weight: 700;
  }
  
  .contact-cta-buttons {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 1;
  }
  
  .contact-btn-ghost {
    background: #56c2c2;
    color: #fff;
    font-weight: 700;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    transition: background 0.3s ease;
  }
  
  .contact-btn-ghost:hover {
    background: #4ab3b3;
    color: #fff;
  }
  
  .contact-btn-dark {
    background: #1b7895;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 700;
    transition: background 0.3s ease;
  }
  
  .contact-btn-dark:hover {
    background: #156578;
    color: #fff;
  }
  
  /* Responsive Styles */
  @media (max-width: 991px) {
    .contact-hero-section {
      min-height: 450px;
      height: 450px;
    }
  
    .contact-hero-title {
      font-size: 36px;
    }
  
    .contact-main-section,
    .contact-promo-section {
      padding: 60px 0;
    }
  
    .contact-main-section .col-lg-7,
    .contact-main-section .col-lg-5 {
      flex: 0 0 100%;
      max-width: 100%;
    }
  
    .contact-section-title {
      font-size: 32px;
    }
  
    .contact-info-card {
      width: 100%;
      max-width: 430px;
      height: auto;
      min-height: 320px;
      padding: 36px 28px;
    }
  
    .contact-cta-section {
      flex-direction: column;
      text-align: center;
      padding: 40px 30px;
    }
  
    .contact-cta-buttons {
      justify-content: center;
      flex-wrap: wrap;
    }
  }
  
  @media (max-width: 767px) {
    .contact-hero-section {
      min-height: 350px;
      height: 350px;
    }
  
    .contact-hero-title {
      font-size: 32px;
    }
  
    .contact-main-section,
    .contact-promo-section {
      padding: 50px 0;
    }
  
    .contact-section-title {
      font-size: 28px;
    }
  
    .contact-side-title {
      font-size: 24px;
    }
  
    .contact-promo-title {
      font-size: 24px;
    }
  
    .contact-cta-content h3 {
      font-size: 24px;
    }
  
    .contact-cta-buttons {
      flex-direction: column;
      width: 100%;
    }
  
    .contact-btn-ghost,
    .contact-btn-dark {
      width: 100%;
      padding: 14px 24px;
    }
  
    .contact-info-card {
      width: 100%;
      max-width: 100%;
      height: auto;
      min-height: 280px;
      padding: 32px 24px;
    }
  
    .contact-info-card h5 {
      font-size: 18px;
    }
  
    .contact-info-card p {
      font-size: 14px;
    }
  }
  
  @media (max-width: 575px) {
    .contact-hero-section {
      min-height: 300px;
      height: 300px;
    }
  
    .contact-hero-title {
      font-size: 28px;
    }
  
    .contact-main-section,
    .contact-promo-section {
      padding: 40px 0;
    }
  
    .contact-section-title {
      font-size: 24px;
    }
  
    .contact-cta-section {
      min-height: 240px;
      padding: 30px 20px;
    }
  
    .contact-form .form-control,
    .wpcf7-form .form-control {
      padding: 14px 12px;
      font-size: 14px;
    }
  
    .contact-required-tag {
      font-size: 16px;
    }
  
    .contact-info-card {
      padding: 28px 20px;
      min-height: 260px;
    }
  
    .contact-info-card-icon {
      width: 64px;
      height: 64px;
      margin-bottom: 16px;
    }
  
    .contact-card-icon-img {
      width: 36px;
      height: 36px;
    }
  }



/* ========== FINAL CONTACT FORM STYLING ========== */

/* Form Wrapper */
.final-contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: transparent;
    padding: 0;
}

/* Form Header */
.final-contact-form-header {
    text-align: right;
    margin-bottom: 15px;
}

.final-contact-required {
    color: #5DBDB6;
    font-size: 13px;
}

/* Form Rows */
.final-contact-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

/* Form Fields */
.final-contact-form-field {
    flex: 1;
}

.final-contact-form-field.final-contact-half {
    flex: 1;
}

.final-contact-form-field.final-contact-full {
    flex: 1 1 100%;
}

/* Input Fields */
.final-contact-input,
.final-contact-textarea {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid #E5E5E5;
    background: #F6F5F2;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.final-contact-input:focus,
.final-contact-textarea:focus {
    outline: none;
    border-color: #5DBDB6;
    background: #fff;
}

.final-contact-input::placeholder,
.final-contact-textarea::placeholder {
    color: #999;
}

/* Textarea */
.final-contact-textarea {
    min-height: 100px;
    height: 100px;
    resize: vertical;
    font-family: inherit;
    line-height: 1.5;
}

/* Submit Row */
.final-contact-submit-row {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 0;
}

/* Submit Button */
.final-contact-submit-btn {
    background: #5DBDB6;
    color: white;
    border: none;
    padding: 14px 45px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.final-contact-submit-btn:hover {
    background: #4da9a3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(93, 189, 182, 0.3);
}

/* Remove CF7 default styling */
.final-contact-form-wrapper .wpcf7-form p {
    margin: 0;
}

.final-contact-form-wrapper .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

/* Validation Messages */
.final-contact-form-wrapper .wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.final-contact-form-wrapper .wpcf7-response-output {
    margin: 20px 0 0 0;
    padding: 15px;
    border-radius: 4px;
}

.final-contact-form-wrapper .wpcf7-validation-errors {
    border: 2px solid #dc3232;
    background: #fef7f7;
    color: #dc3232;
}

.final-contact-form-wrapper .wpcf7-mail-sent-ok {
    border: 2px solid #5DBDB6;
    background: #f0faf9;
    color: #1B7895;
}

/* Override all CF7 inputs to ensure background color */
.final-contact-form-wrapper input[type="text"],
.final-contact-form-wrapper input[type="email"],
.final-contact-form-wrapper input[type="tel"],
.final-contact-form-wrapper textarea {
    background: #F6F5F2 !important;
}

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

@media (max-width: 768px) {
    .final-contact-form-wrapper {
        padding: 0 15px;
    }

    .final-contact-form-row {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
    }

    .final-contact-form-field.final-contact-half {
        flex: 1 1 100%;
    }

    .final-contact-input,
    .final-contact-textarea {
        padding: 15px 18px;
    }

    .final-contact-submit-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .final-contact-form-wrapper {
        padding: 0 10px;
    }

    .final-contact-input,
    .final-contact-textarea {
        padding: 12px 15px;
        font-size: 13px;
    }

    .final-contact-submit-btn {
        padding: 12px 35px;
        font-size: 15px;
    }
}

/* ========== END FINAL CONTACT FORM STYLING ========== */