body, h1, h2, h3, h4, h5, h6, p, a, button, input, textarea {
  font-family: 'Montserrat', Arial, sans-serif;
}
.remodel-cta {
  position: relative;
  width: 100%;
  min-height: 400px;    /* Puedes ajustar según tu diseño */
  height: 26vw;         /* Hace la sección responsiva */
  max-height: 260px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a4265;
}

.remodel-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  display: block;
}

.remodel-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, #08416b 0%, rgba(8,65,107,0.78) 80%, rgba(8,65,107,0) 100%);
  z-index: 2;
}

.remodel-content {
  position: relative;
  z-index: 3;
  padding-left: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.remodel-content h2 {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}


.quote-form-section {
  background: #0a4265;
  padding: 34px 0 42px 0;
  display: flex;
  justify-content: center;
}

.quote-form {
  background: transparent;
  max-width: 750px;
  width: 95vw;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote-form-desc {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 12px;
  text-align: left;
}

.quote-form label {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 3px;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 9px 10px;
  border-radius: 5px;
  border: none;
  outline: none;
  font-size: 1rem;
  margin-bottom: 7px;
  background: #f4f4f4;
  color: #222;
  resize: vertical;
  box-sizing: border-box;
  font-family: inherit;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border: 2px solid #0a72bb;
  background: #fff;
}

.quote-form textarea {
  min-height: 86px;
}

.quote-form-btn {
  margin-top: 10px;
  background: #fff;
  color: #0a72bb;
  font-weight: bold;
  border-radius: 4px;
  padding: 10px 18px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.quote-form-btn:hover {
  background: #0a72bb;
  color: #fff;
}
.contact-info-section {
  display: flex;
  background: #f4f4f4;
  min-height: 230px;
  align-items: stretch;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.contact-info-left {
  flex: 1 1 340px;
  padding: 32px 28px 24px 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #08315e;
  background: #fff;
}

.contact-info-left h3 {
  font-size: 3rem;
  color: #1670b8;
  margin-bottom: 16px;
  font-weight: 700;
}

.contact-info-left p {
  font-size: 1.4rem;
  margin: 0 0 14px 0;
  line-height: 1.5;
  color: #222;
}

.contact-info-left a {
  color: #1670b8;
  text-decoration: underline;
  word-break: break-all;
}

.contact-info-right {
  flex: 1 1 340px;
  min-width: 180px;
  background: #e9e9e9;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}

.contact-info-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
  display: block;
}
.renovation-cta {
  position: relative;
  width: 100%;
  min-height: 280px; 
  height: 60vw;      
  max-height: 500px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: #0a4265;
}

.renovation-cta-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.renovation-cta-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, #08416b 20%, rgba(8,65,107,0.90) 60%, rgba(8,65,107,0) 100%);
  z-index: 2;
}

.renovation-cta-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-left: 250px;
}

.renovation-cta-content h2 {
  color: #fff;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.16;
  margin-bottom: 8px;
}

.renovation-cta-content p {
  color: #e4eefa;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 13px;
}

.renovation-cta-btn {
  background: #fff;
  color: #0a72bb;
  font-weight: bold;
  border-radius: 4px;
  padding: 9px 22px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: inline-block;
}

.renovation-cta-btn:hover {
  background: #0a72bb;
  color: #fff;
}



@media (max-width: 600px) {
    .remodel-cta {
    min-height: 200px;
    height: 24vw;
    max-height: 110px;
  }
  .remodel-content {
      width: 100%;
  background: linear-gradient(180deg, #08416b 10%, rgba(8,65,107,0.3) 90%, rgba(8,65,107,0) 100%);
    padding-left: 34px;
  }
  .remodel-content h2 {
    font-size: 1.3rem;
  }
    .quote-form-section {
    padding: 22px 0 26px 0;
  }
  .quote-form {
    padding: 0 2vw;
    font-size: 0.97rem;
  }
   .contact-info-section {
    flex-direction: column;
  }
   .contact-info-left h3{
      font-size: 1.7rem;
   }
   .contact-info-left p{
      font-size: 1.2rem;
   }
  .contact-info-left, .contact-info-right {
    
    flex: none;
    width: 100%;
    min-width: 0;
    padding: 18px 8vw 8px 8vw;
  }
  .contact-info-right img {
    min-height: 120px;
    height: 140px;
  }
  .renovation-cta-overlay {
    width: 100%;
  background: linear-gradient(180deg, #08416b 10%, rgba(8,65,107,0.3) 90%, rgba(8,65,107,0) 100%);

}
.renovation-cta {
    min-height: 170px;
    max-height: 230px;
  }
  .renovation-cta-content {
    padding-left: 40px;
  }
  .renovation-cta-content h2 {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
  .renovation-cta-content p {
    font-size: 1rem;
    margin-bottom: 7px;
  }
  .renovation-cta-btn {
    font-size: 0.95rem;
    padding: 7px 13px;
  }
}
