/* ========================================
   Kendall & Regino - Custom Styles
   ======================================== */

/* Section Divider - Elegant Separator */
.kr-section-divider {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0a0a 0%, #ffffff 100%);
}

.kr-divider-line {
  position: relative;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #d4af37 20%, #d4af37 80%, transparent 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kr-divider-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: #ffffff;
  border: 3px solid #d4af37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 15px rgba(212, 175, 55, 0.1),
    0 10px 30px rgba(212, 175, 55, 0.2);
  animation: pulse-divider 3s ease-in-out infinite;
}

.kr-divider-icon i {
  font-size: 35px;
  color: #d4af37;
  animation: rotate-icon 4s linear infinite;
}

@keyframes pulse-divider {

  0%,
  100% {
    box-shadow: 0 0 0 15px rgba(212, 175, 55, 0.1),
      0 10px 30px rgba(212, 175, 55, 0.2);
  }

  50% {
    box-shadow: 0 0 0 20px rgba(212, 175, 55, 0.15),
      0 15px 40px rgba(212, 175, 55, 0.3);
  }
}

@keyframes rotate-icon {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Alternative Divider Style - Dots */
.kr-section-divider.style-dots .kr-divider-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: none;
  height: auto;
}

.kr-section-divider.style-dots .kr-divider-line::before,
.kr-section-divider.style-dots .kr-divider-line::after {
  display: none;
}

.kr-section-divider.style-dots .kr-divider-line .dot {
  width: 8px;
  height: 8px;
  background: #d4af37;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.kr-section-divider.style-dots .kr-divider-line .dot:nth-child(2) {
  width: 12px;
  height: 12px;
  animation-delay: 0.2s;
}

.kr-section-divider.style-dots .kr-divider-line .dot:nth-child(3) {
  width: 8px;
  height: 8px;
  animation-delay: 0.4s;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Responsive Adjustments for Divider */
@media (max-width: 767px) {
  .kr-section-divider {
    padding: 60px 0;
  }

  .kr-divider-icon {
    width: 70px;
    height: 70px;
  }

  .kr-divider-icon i {
    font-size: 28px;
  }
}

/* ========================================
   Contact Section - Nueva Versión con Background Full
   ======================================== */

.kr-contact-section {
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  padding: 100px 0;
}

/* Background Image - Full Width */
.kr-contact-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.kr-contact-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 2;
}

.kr-contact-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Form Wrapper */
.kr-contact-form-wrapper {
  position: relative;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 60px 50px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Heading */
.kr-contact-heading {
  text-align: left;
  margin-bottom: 40px;
}

.kr-contact-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 20px;
}

.kr-contact-title span {
  color: #d4af37;
}

.kr-contact-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Form Styles */
.kr-contact-form {
  width: 100%;
}

.kr-contact-form .form-input {
  margin-bottom: 25px;
}

.kr-contact-form .form-input input,
.kr-contact-form .form-input textarea {
  width: 100%;
  padding: 18px 25px;
  border: 2px solid #e5e5e5;
  border-radius: 10px;
  font-size: 16px;
  color: #0a0a0a;
  background: #ffffff;
  transition: all 0.3s ease;
  font-family: inherit;
}

.kr-contact-form .form-input input::placeholder,
.kr-contact-form .form-input textarea::placeholder {
  color: #999999;
}

.kr-contact-form .form-input input:focus,
.kr-contact-form .form-input textarea:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.kr-contact-form .form-input textarea {
  resize: vertical;
  min-height: 150px;
}

/* Submit Button */
.kr-contact-form .submit-btn {
  text-align: center;
  margin-top: 30px;
}

.kr-contact-form .submit-btn .tj-primary-btn {
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.kr-contact-form .submit-btn .tj-primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .kr-contact-section {
    min-height: 700px;
    padding: 80px 0;
  }

  .kr-contact-form-wrapper {
    padding: 50px 40px;
  }

  .kr-contact-title {
    font-size: 28px;
  }

  .kr-contact-subtitle {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .kr-contact-section {
    min-height: 650px;
    padding: 60px 0;
    justify-content: center;
  }

  .kr-contact-form-wrapper {
    padding: 40px 30px;
  }

  .kr-contact-title {
    font-size: 24px;
  }

  .kr-contact-title br,
  .kr-contact-subtitle br {
    display: none;
  }

  .kr-contact-subtitle {
    font-size: 14px;
  }

  .kr-contact-form .form-input input,
  .kr-contact-form .form-input textarea {
    padding: 15px 20px;
    font-size: 15px;
  }

  .kr-contact-form .submit-btn .tj-primary-btn {
    padding: 15px 35px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .kr-contact-section {
    min-height: 600px;
  }

  .kr-contact-form-wrapper {
    padding: 35px 25px;
  }

  .kr-contact-title {
    font-size: 22px;
  }

  .kr-contact-heading {
    margin-bottom: 30px;
  }

  .kr-contact-form .form-input {
    margin-bottom: 20px;
  }
}

/* About Section - Custom Styles */
.about-text {
  margin-bottom: 30px;
}

.about-text .desc {
  margin-bottom: 15px;
  line-height: 1.8;
  color: #666;
}

.about-img-bottom {
  margin-top: 20px;
  border-radius: 10px;
}

.about-img-bottom img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mission/Vision Box Adjustments */
.mission-vision-box {
  background: linear-gradient(135deg, #f5f1e8 0%, #e8dcc8 100%);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-vision-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.mission-vision-box .title {
  color: #1a1a1a;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.mission-vision-box .desc {
  color: #555;
  line-height: 1.7;
  margin-bottom: 0;
}

/* About Image Area Adjustments */
.about-img-area.style-2 .about-img img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-img-area.style-2 .box-area {
  margin-top: 20px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .about-bottom-area {
    margin-top: 30px;
  }

  .about-img-bottom {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .mission-vision-box {
    padding: 20px;
  }

  .mission-vision-box .title {
    font-size: 20px;
  }
}

/* ========================================
   Secciones - Mejoras Visuales
   ======================================== */

/* Asegurar que la sección de servicios tenga fondo gris */
.tj-service-section {
  background: #454a51;
  position: relative;
  z-index: 1;
}

/* Estilos de texto para la sección de servicios con fondo gris */
.tj-service-section .sec-heading .sub-title {
  color: #d4af37;
}

.tj-service-section .sec-heading .sec-title {
  color: #ffffff;
}

.tj-service-section .sec-heading .sec-title span {
  color: #d4af37;
}

/* Asegurar que la sección de contacto tenga fondo claro */
.tj-contact-section {
  background: #ffffff;
  position: relative;
  z-index: 1;
}

/* Agregar padding extra para mejor separación */
.tj-service-section.section-gap {
  padding-top: 100px;
  padding-bottom: 100px;
}

.tj-contact-section.section-gap {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media (max-width: 991px) {

  .tj-service-section.section-gap,
  .tj-contact-section.section-gap {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media (max-width: 767px) {

  .tj-service-section.section-gap,
  .tj-contact-section.section-gap {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/* ========================================
   Service Section - Custom Cards Style (Sin Imágenes)
   ======================================== */

/* Ocultar las imágenes de las cards de servicio */
.tj-service-section .service-item.style-1 .service-img {
  display: none !important;
}

/* Ajustar el contenedor de la card sin imagen */
.tj-service-section .service-item.style-1 {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 35px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hacer el icono más grande y prominente */
.tj-service-section .service-item.style-1 .service-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.tj-service-section .service-item.style-1 .service-icon i {
  font-size: 55px;
  transition: all 0.4s ease;
}

/* Efecto hover en el icono */
.tj-service-section .service-item.style-1:hover .service-icon {
  background: rgba(212, 175, 55, 0.2);
  transform: scale(1.1) rotate(5deg);
}

.tj-service-section .service-item.style-1:hover .service-icon i {
  transform: scale(1.15);
}

/* Hacer el título más grande */
.tj-service-section .service-item.style-1 .service-content .title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.tj-service-section .service-item.style-1 .service-content .title a {
  transition: color 0.3s ease;
}

/* Hacer la descripción más grande y legible */
.tj-service-section .service-item.style-1 .service-content .desc {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

/* Efecto hover en el contenido */
.tj-service-section .service-item.style-1:hover .service-content .title {
  transform: translateY(-5px);
}

.tj-service-section .service-item.style-1:hover .service-content .desc {
  transform: translateY(-3px);
}

/* Hacer el botón más visible */
.tj-service-section .service-item.style-1 .service-content .text-btn {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.tj-service-section .service-item.style-1:hover .service-content .text-btn {
  transform: translateX(10px);
}

/* Efecto hover general de la card */
.tj-service-section .service-item.style-1:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .tj-service-section .service-item.style-1 {
    min-height: 360px;
    padding: 45px 30px;
  }

  .tj-service-section .service-item.style-1 .service-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 25px;
  }

  .tj-service-section .service-item.style-1 .service-icon i {
    font-size: 50px;
  }

  .tj-service-section .service-item.style-1 .service-content .title {
    font-size: 24px;
  }

  .tj-service-section .service-item.style-1 .service-content .desc {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .tj-service-section .service-item.style-1 {
    min-height: 340px;
    padding: 40px 25px;
  }

  .tj-service-section .service-item.style-1 .service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }

  .tj-service-section .service-item.style-1 .service-icon i {
    font-size: 45px;
  }

  .tj-service-section .service-item.style-1 .service-content .title {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .tj-service-section .service-item.style-1 .service-content .desc {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .tj-service-section .service-item.style-1 .service-content .text-btn {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .tj-service-section .service-item.style-1 {
    min-height: 320px;
    padding: 35px 20px;
  }

  .tj-service-section .service-item.style-1 .service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 18px;
  }

  .tj-service-section .service-item.style-1 .service-icon i {
    font-size: 40px;
  }

  .tj-service-section .service-item.style-1 .service-content .title {
    font-size: 20px;
  }

  .tj-service-section .service-item.style-1 .service-content .desc {
    font-size: 14px;
  }
}

/* ========================================
   Grid Services (Alternativa)
   ======================================== */

.kr-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.kr-service-card {
  background: #0a0a0a;
  border-radius: 20px;
  padding: 40px 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.1);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.kr-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.kr-service-card:hover::before {
  opacity: 1;
}

.kr-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.3);
}

.kr-service-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.kr-service-icon i {
  font-size: 50px;
  color: #d4af37;
  transition: all 0.4s ease;
}

.kr-service-card:hover .kr-service-icon i {
  transform: scale(1.1) rotate(5deg);
  color: #f4d03f;
}

.kr-service-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.kr-service-card:hover .kr-service-title {
  color: #d4af37;
}

.kr-service-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #b8b8b8;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

/* Responsive Grid Adjustments */
@media (max-width: 1200px) {
  .kr-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .kr-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .kr-service-card {
    padding: 30px 25px;
    min-height: 280px;
  }

  .kr-service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .kr-service-icon i {
    font-size: 40px;
  }

  .kr-service-title {
    font-size: 20px;
  }

  .kr-service-desc {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .kr-service-card {
    padding: 25px 20px;
  }

  .kr-service-icon {
    width: 60px;
    height: 60px;
  }

  .kr-service-icon i {
    font-size: 35px;
  }
}

/* ========================================
   Contact Form - Custom Styles
   ======================================== */

.tj-contact-section-2 {
  background: linear-gradient(135deg, #f5f1e8 0%, #e8dcc8 100%);
  position: relative;
  overflow: hidden;
}

.tj-contact-section-2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.tj-contact-section-2 .sec-heading {
  margin-bottom: 50px;
}

.tj-contact-section-2 .sec-heading .sec-title {
  color: #1a1a1a;
}

.tj-contact-section-2 .sec-heading .sub-title {
  color: #d4af37;
}

.tj-contact-section-2 .sec-heading .desc {
  color: #555555;
  font-size: 16px;
  margin-top: 15px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.tj-contact-section-2 .contact-form {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  padding: 50px 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}

.tj-contact-section-2 .form-input {
  margin-bottom: 30px;
  position: relative;
}

.tj-contact-section-2 .form-input input,
.tj-contact-section-2 .form-input textarea,
.tj-contact-section-2 .form-input select {
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  padding: 15px 20px;
  color: #333333;
  font-size: 15px;
  transition: all 0.3s ease;
}

.tj-contact-section-2 .form-input input:focus,
.tj-contact-section-2 .form-input textarea:focus,
.tj-contact-section-2 .form-input select:focus {
  outline: none;
  border-color: #d4af37;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.tj-contact-section-2 .form-input input::placeholder,
.tj-contact-section-2 .form-input textarea::placeholder {
  color: #999;
}

.tj-contact-section-2 .form-input .cf-label {
  position: absolute;
  top: 16px;
  left: 20px;
  color: #666;
  font-size: 15px;
  pointer-events: none;
  transition: all 0.3s ease;
  background: transparent;
  padding: 0 5px;
}

.tj-contact-section-2 .form-input input:focus+.cf-label,
.tj-contact-section-2 .form-input input:not(:placeholder-shown)+.cf-label,
.tj-contact-section-2 .form-input textarea:focus+.cf-label,
.tj-contact-section-2 .form-input textarea:not(:placeholder-shown)+.cf-label {
  top: -10px;
  left: 15px;
  font-size: 12px;
  color: #d4af37;
  background: rgba(255, 255, 255, 0.95);
}

.tj-contact-section-2 .form-input .cf-label span {
  color: #d4af37;
}

.tj-contact-section-2 .form-input textarea {
  min-height: 150px;
  resize: vertical;
}

.tj-contact-section-2 .form-input select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4af37' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.tj-contact-section-2 .form-input select option {
  background: #ffffff;
  color: #333333;
}

.tj-contact-section-2 .submit-btn {
  margin-top: 20px;
}

.tj-contact-section-2 .submit-btn button {
  min-width: 200px;
  transition: all 0.3s ease;
}

.tj-contact-section-2 .submit-btn button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Form Response Messages */
.form-response {
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 15px;
  display: none;
  animation: slideDown 0.3s ease;
}

.form-response.show {
  display: block;
}

.form-response.success {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #4caf50;
}

.form-response.error {
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: #f44336;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loading State */
.tj-contact-section-2 .submit-btn button.loading {
  pointer-events: none;
  opacity: 0.7;
}

.tj-contact-section-2 .submit-btn button.loading .btn-text span::after {
  content: '...';
  animation: dots 1.5s infinite;
}

@keyframes dots {

  0%,
  20% {
    content: '.';
  }

  40% {
    content: '..';
  }

  60%,
  100% {
    content: '...';
  }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .tj-contact-section-2 .contact-form {
    padding: 40px 30px;
  }
}

@media (max-width: 767px) {
  .tj-contact-section-2 .contact-form {
    padding: 30px 20px;
  }

  .tj-contact-section-2 .form-input {
    margin-bottom: 25px;
  }

  .tj-contact-section-2 .submit-btn button {
    width: 100%;
  }
}

/* ========================================
   CTA Section - Call to Action
   ======================================== */
.kr-cta-section {
  padding: 80px 0;
  background: #f5f1e8;
}

.kr-cta-box {
  background: linear-gradient(135deg, #c9b896 0%, #b8a07e 100%);
  border-radius: 30px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.kr-cta-content {
  flex: 1;
  max-width: 600px;
}

.kr-cta-title {
  font-size: 32px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.4;
}

.kr-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #4a4a4a;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.kr-cta-btn:hover {
  background: #333333;
  transform: translateX(5px);
  color: #ffffff;
}

.kr-cta-btn .btn-icon {
  display: flex;
  align-items: center;
  font-size: 18px;
}

.kr-cta-image {
  flex-shrink: 0;
  width: 300px;
  height: 300px;
  position: relative;
}

.kr-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
}

/* ========================================
   Footer Section - Kendall & Regino
   ======================================== */
.kr-footer-section {
  background: #ffffff;
  padding: 60px 0 40px;
}

.kr-footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  padding-bottom: 40px;
}

.kr-footer-left {
  flex: 1;
  max-width: 500px;
}

.kr-footer-logo {
  margin-bottom: 25px;
}

.kr-footer-logo img {
  max-width: 120px;
  height: auto;
}

.kr-footer-text {
  color: #666666;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.kr-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.kr-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #333333;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.kr-contact-item:hover {
  color: #d4af37;
}

.kr-contact-item i {
  font-size: 18px;
  color: #d4af37;
}

.kr-footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
}

.kr-footer-social {
  display: flex;
  gap: 15px;
}

.kr-social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
}

.kr-social-link:hover {
  background: #d4af37;
  color: #ffffff;
  border-color: #d4af37;
  transform: translateY(-3px);
}

.kr-social-link i {
  font-size: 18px;
}

.kr-footer-copyright {
  text-align: right;
}

.kr-footer-copyright p {
  color: #999999;
  font-size: 14px;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .kr-cta-box {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }

  .kr-cta-content {
    max-width: 100%;
  }

  .kr-cta-image {
    width: 250px;
    height: 250px;
  }

  .kr-footer-main {
    flex-direction: column;
    gap: 40px;
  }

  .kr-footer-left {
    max-width: 100%;
  }

  .kr-footer-right {
    align-items: flex-start;
    width: 100%;
  }

  .kr-footer-copyright {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .kr-cta-section {
    padding: 60px 0;
  }

  .kr-cta-box {
    padding: 30px 20px;
  }

  .kr-cta-title {
    font-size: 24px;
  }

  .kr-cta-image {
    width: 200px;
    height: 200px;
  }

  .kr-footer-section {
    padding: 40px 0 30px;
  }

  .kr-footer-social {
    flex-wrap: wrap;
  }
}

/* ========================================
   Footer Kendall & Regino - Nuevo Diseño
   ======================================== */

.kr-footer-section {
  background: #C4B5A0;
  position: relative;
  z-index: 1;
}

/* Top Section with CTA */
.kr-footer-top {
  background: linear-gradient(135deg, #A89080 0%, #B8A890 100%);
  padding: 35px 0;
  border-radius: 20px;
  margin: 0 20px 40px 20px;
  position: relative;
  overflow: hidden;
}

.kr-footer-top::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  z-index: 0;
}

.kr-footer-top-content {
  position: relative;
  z-index: 1;
}

.kr-footer-top-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.4;
}

.kr-footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #5a5a5a;
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.kr-footer-btn:hover {
  background: #3a3a3a;
  transform: translateX(5px);
}

.kr-footer-btn-icon {
  font-size: 13px;
}

.kr-footer-top-image {
  position: relative;
  z-index: 1;
  text-align: right;
  max-width: 200px;
}

.kr-footer-top-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
}

/* Main Footer Content */
.kr-footer-main {
  padding: 60px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.kr-footer-widget {
  padding-right: 40px;
}

.kr-footer-logo {
  margin-bottom: 20px;
  max-width: 120px;
}

.kr-footer-logo img {
  max-width: 100%;
  height: auto;
}

.kr-footer-description {
  color: #5a5a5a;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.kr-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.kr-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #5a5a5a;
  font-size: 14px;
}

.kr-contact-item i {
  color: #8a7a6a;
  font-size: 16px;
}

.kr-contact-item a {
  color: #5a5a5a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.kr-contact-item a:hover {
  color: #3a3a3a;
}

/* Social Links */
.kr-footer-socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.kr-social-links {
  display: flex;
  gap: 20px;
}

.kr-social-links a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  color: #5a5a5a;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
}

.kr-social-links a:hover {
  background: #5a5a5a;
  color: #C4B5A0;
  transform: translateY(-3px);
}

/* Footer Bottom */
.kr-footer-bottom {
  padding: 30px 0;
  text-align: center;
}

.kr-copyright-text {
  color: #5a5a5a;
  font-size: 13px;
  margin: 0;
}

/* Responsive Footer */
@media (max-width: 991px) {
  .kr-footer-top {
    margin: 0 15px 40px 15px;
    padding: 40px 30px;
  }

  .kr-footer-top-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .kr-footer-widget {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .kr-footer-socials {
    justify-content: flex-start;
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .kr-footer-top {
    margin: 0 10px 30px 10px;
    padding: 30px 20px;
    border-radius: 15px;
  }

  .kr-footer-top-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .kr-footer-top-image {
    text-align: center;
    margin-top: 20px;
  }

  .kr-footer-main {
    padding: 40px 0;
  }

  .kr-footer-widget {
    margin-bottom: 30px;
  }

  .kr-social-links {
    gap: 15px;
  }

  .kr-social-links a {
    width: 40px;

  }
}

/* ========================================
   MeanMenu Custom Styles (Mobile)
   ======================================== */
.mean-container .mean-bar {
  background: transparent;
  padding: 0;
  min-height: 0;
  z-index: 999;
}

/* Ocultar el botón meanmenu-reveal ya que usamos .mobile_menu_bar */
.mean-container a.meanmenu-reveal {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}

.mean-container .mean-nav {
  background: #ffffff;
  margin-top: 0;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 10px 10px;
}

.mean-container .mean-nav ul li a {
  color: var(--tj-color-heading-primary);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  font-family: var(--tj-ff-heading);
  font-weight: 500;
  font-size: 15px;
  text-transform: none;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--tj-color-theme-primary);
  background: rgba(0, 0, 0, 0.02);
}

.mean-container .mean-nav ul li a.mean-expand {
  background: transparent;
  border: none !important;
  color: var(--tj-color-heading-primary);
  height: 44px;
  line-height: 44px;
}

/* ========================================
   Mobile Menu Fixed/Sticky & Overflow Fix
   ======================================== */

/* Mobile Header Sticky */
@media (max-width: 991px) {
  .header-area {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }

  .header-area.header-absolute {
    background: rgba(255, 255, 255, 0.95);
  }

  .header-area.header-sticky.sticky {
    background: rgba(255, 255, 255, 0.98);
  }

  /* Hide duplicate sticky header on mobile */
  .header-duplicate.header-sticky {
    display: none !important;
  }

  /* Logo muestra sus colores originales en móviles */
  .header-area .site_logo .logo img {
    filter: none;
    max-height: 45px;
    transition: filter 0.3s ease;
  }
}

/* Mean Menu Container - Fixed Overflow */
.mean-container .mean-nav {
  background: #ffffff;
  margin-top: 0;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 15px 15px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  overflow-x: hidden;
}

.mean-container .mean-nav ul {
  width: 100%;
  padding: 0;
  margin: 0;
}

.mean-container .mean-nav ul li {
  width: 100%;
  float: none;
  position: relative;
}

.mean-container .mean-nav ul li a {
  color: #1a1a1a;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  font-family: var(--tj-ff-heading);
  font-weight: 500;
  font-size: 16px;
  text-transform: none;
  padding: 15px 20px;
  display: block;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.mean-container .mean-nav ul li a:hover,
.mean-container .mean-nav ul li a:focus {
  color: #d4af37;
  background: rgba(212, 175, 55, 0.05);
  padding-left: 25px;
}

.mean-container .mean-nav ul li a.mean-expand {
  background: transparent;
  border: none !important;
  color: #1a1a1a;
  height: 50px;
  line-height: 50px;
  width: 50px;
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  padding: 0 !important;
}

/* Mobile menu hamburger button */
.mobile_menu_bar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  z-index: 10000;
  margin-right: 10px;
  position: relative;
}

.mobile_menu_bar span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #1a1a1a;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Transformar hamburguesa en X cuando está abierto */
.mobile_menu_bar.menu-open span:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}

.mobile_menu_bar.menu-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile_menu_bar.menu-open span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

@media (max-width: 991px) {
  .mobile_menu_bar {
    display: flex !important;
  }

  /* Color oscuro para el hamburguesa en móviles (fondo blanco) */
  .mobile_menu_bar span {
    background-color: #1a1a1a;
  }
}

/* ========================================
   Form Response Messages
   ======================================== */
.form-response {
  padding: 18px 25px;
  border-radius: 12px;
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 1.5;
  display: none;
  animation: slideDown 0.4s ease;
  position: relative;
}

.form-response.show {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-response i {
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.form-response.success {
  background: rgba(76, 175, 80, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.4);
  color: #2e7d32;
}

.form-response.success i {
  color: #4caf50;
}

.form-response.error {
  background: rgba(244, 67, 54, 0.15);
  border: 1px solid rgba(244, 67, 54, 0.4);
  color: #c62828;
}

.form-response.error i {
  color: #f44336;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loading button state */
#submit-btn.loading {
  pointer-events: none;
  opacity: 0.8;
  position: relative;
}

#submit-btn.loading::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  right: 20px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ========================================
   Header Logo Fix
   ======================================== */
/* Logo muestra sus colores originales en desktop */
.header-absolute .site_logo .logo img {
  filter: none;
  transition: filter 0.3s ease;
}

.header-sticky.sticky .site_logo .logo img {
  filter: none;
}

/* Ensure logo is visible */
.site_logo .logo img {
  max-height: 50px;
  width: auto;
}

@media (max-width: 991px) {
  .site_logo .logo img {
    max-height: 40px;
  }
}

/* ========================================
   Smooth Scroll Offset Fix
   ======================================== */
section[id] {
  scroll-margin-top: 100px;
}

@media (max-width: 991px) {
  section[id] {
    scroll-margin-top: 80px;
  }
}

/* ========================================
   Hide Search Elements
   ======================================== */
.header-search,
.search_popup,
.search-popup-overlay,
.tj_search_wrapper,
.search_form,
.search-box,
.search_close_btn,
.header-search .search {
  display: none !important;
}

/* ========================================
   Additional Mobile Responsive Fixes
   ======================================== */
@media (max-width: 767px) {
  .banner-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .sec-title {
    font-size: 24px;
  }

  .kr-contact-title {
    font-size: 22px;
  }

  .kr-footer-top-title {
    font-size: 18px;
  }

  .section-gap {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-gap-x {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .banner-title {
    font-size: 24px;
  }

  .sec-title {
    font-size: 22px;
  }

  .choose-box {
    padding: 25px 20px;
  }

  .choose-box .title {
    font-size: 16px;
  }

  .choose-box .desc {
    font-size: 14px;
  }
}