body {
  background: #fff;
  font-family: "Mukta Mahee", arial, sans-serif;
  font-weight: 200;
  font-size: 16px;
  line-height: 1.8;
  color: #6c757d;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

* {
  box-sizing: border-box;
  min-width: 0;
  min-height: 0;
}

::-moz-selection {
  color: #fff;
  background: #71435e;
}

::selection {
  color: #fff;
  background: #71435e;
}

a {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

h1, h2, h3, h4, h5 {
  color: #000;
  font-family: "Playfair+Display", times, serif;
}

.container-fluid {
  max-width: 1600px;
}

.btn {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 50px;
}

.btn.uppercase {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: .2em;
}

.btn, .form-control {
  outline: none;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.btn:focus, .btn:active, .form-control:focus, .form-control:active {
  outline: none;
}

.form-control {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  height: 50px;
  border-width: 2px;
}

textarea.form-control {
  height: inherit;
}

.site-header {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 60px 0;
  z-index: 2;
}

.menu-open .site-header {
  position: fixed;
}

.site-logo a {
  font-size: 30px;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  font-family: "Playfair+Display", times, serif;
}

.site-navbar {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  min-height: 300px;
  overflow-y: scroll;
}

.site-navbar nav {
  text-align: left;
}

.site-navbar nav .menu {
  font-family: "Playfair+Display", times, serif;
}

.site-navbar nav .menu li a {
  color: #000;
  font-size: 40px;
  padding: 5px 10px;
  position: relative;
}

.site-navbar nav .menu li a:before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 50%;
  width: 0%;
  z-index: -1;
  background: #71435e;
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
}

.site-navbar nav .menu li a:hover:before {
  width: 100%;
}

.site-navbar nav .menu li.active a:before {
  width: 100%;
}

.site-navbar .extra-info a {
  color: #000;
}

.site-navbar .extra-info ul li a {
  color: #000;
}

.site-navbar .extra-info h3 {
  font-family: "Mukta Mahee", arial, sans-serif;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .2em;
  color: #adb5bd;
  margin-bottom: 30px;
}

.site-navbar .extra-info p {
  color: #212529;
}

.full-height {
  height: 100vh;
  min-height: 700px;
}

.site-hero {
  background-size: cover;
  height: 100vh;
  min-height: 700px;
  width: 100%;
}

.site-hero .scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  color: #fff;
}

.site-hero.overlay:before {
  background: rgba(0, 0, 0, 0.45);
  content: "";
  position: absolute;
  height: 100vh;
  min-height: 700px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.site-hero-inner {
  height: 100vh;
  min-height: 700px;
}

.site-hero-inner .heading {
  font-size: 80px;
  font-family: "Playfair+Display", times, serif;
  color: #fff;
  line-height: 1;
  font-weight: bold;
}

@media (max-width: 991.98px) {
  .site-hero-inner .heading {
    font-size: 40px;
  }
}

.site-hero-inner .sub-heading {
  font-size: 30px;
  font-weight: 200;
  color: #fff;
  line-height: 1.5;
}

@media (max-width: 991.98px) {
  .site-hero-inner .sub-heading {
    font-size: 18px;
  }
}

.page-inside .site-hero-inner, .page-inside {
  height: 70vh;
  min-height: 500px;
}

.page-inside.overlay:before {
  height: 70vh;
  min-height: 500px;
}

.menu-open .site-menu-toggle span {
  background: #000;
}

.site-menu-toggle {
  float: right;
  width: 40px;
  height: 45px;
  position: relative;
  margin: 0px auto;
  z-index: 200;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

.site-menu-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.site-menu-toggle span:nth-child(1) {
  top: 0px;
}

.site-menu-toggle span:nth-child(2) {
  top: 10px;
}

.site-menu-toggle span:nth-child(3) {
  top: 20px;
}

.site-menu-toggle.open span:nth-child(1) {
  top: 13px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.site-menu-toggle.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.site-menu-toggle.open span:nth-child(3) {
  top: 13px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.section {
  padding: 7em 0; 
}

@media (max-width: 991.98px) {
  .section {
    padding: 3em 0;
  }
}

@media (max-width: 991.98px) {
  .lead {
    font-size: 16px;
  }
}

.visit-section .heading {
  font-size: 15px;
  text-transform: uppercase;
  font-family: "Mukta Mahee", arial, sans-serif;
  color: #b3b3b3;
  letter-spacing: .2em;
  margin-bottom: 30px;
}

.visit-section .visit a {
  color: #000;
}

.visit-section .visit a:hover {
  color: #71435e;
}

.visit-section .visit img {
  -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 15px;
}

.visit-section .visit h3 {
  font-size: 20px;
  margin-bottom: 0;
}

.visit-section .reviews-star span {
  font-size: 18px;
  color: #71435e;
}

.visit-section .reviews-count {
  color: #adb5bd;
  font-style: italic;
}

.heading-serif, .testimonial-section .heading, .slider-section .heading, .blog-post-entry .heading {
  font-size: 80px;
  font-family: "Playfair+Display", times, serif;
}

@media (max-width: 991.98px) {
  .heading-serif, .testimonial-section .heading, .slider-section .heading, .blog-post-entry .heading {
    font-size: 40px;
  }
}

.bg-pattern {
  background: #e9ecef url("../img/round.png");
}

.slider-section {
  position: relative;
}

.blog-post-entry {
  position: relative;
  margin-top: -500px;
  padding-top: 500px;
}

@media (max-width: 991.98px) {
  .blog-post-entry {
    margin-top: -300px;
    padding-top: 300px;
  }
}

.half .image, .half .text {
  width: 50%;
}

@media (max-width: 991.98px) {
  .half .image, .half .text {
    width: 100%;
  }
}

.half .image {
  background-size: cover;
  background-position: center center;
}

@media (max-width: 991.98px) {
  .half .image {
    height: 300px;
  }
}

.half .text {
  padding: 100px 7%;
}

@media (max-width: 991.98px) {
  .half .text {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.half .text h2 {
  font-size: 70px;
}

@media (max-width: 991.98px) {
  .half .text h2 {
    font-size: 40px;
  }
}

.testimonial blockquote {
  padding: 0;
}

.testimonial blockquote p {
  line-height: 1.5;
  font-family: "Playfair+Display", times, serif;
  font-size: 20px;
  color: #000;
  font-style: italic;
}

.testimonial .author-image img {
  width: 70px;
}

.post .media-custom {
  background: #fff;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  -webkit-box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
}

.post .media-custom:hover, .post .media-custom:focus {
  -webkit-box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.post .media-custom a {
  color: #000;
}

.post .media-custom a:hover {
  color: #71435e;
}

.post .media-custom .media-body {
  padding: 10px 30px;
}

.post .media-custom h2 {
  font-size: 26px;
}

.media-custom .meta-post {
  color: #ced4da;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.owl-carousel .owl-item {
  opacity: .4;
}

.owl-carousel .owl-item.active {
  opacity: 1;
}

.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
  position: absolute;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: -10px;
}

.owl-carousel .owl-nav .owl-prev:hover, .owl-carousel .owl-nav .owl-prev:focus, .owl-carousel .owl-nav .owl-prev:active,
.owl-carousel .owl-nav .owl-next:hover,
.owl-carousel .owl-nav .owl-next:focus,
.owl-carousel .owl-nav .owl-next:active {
  outline: none;
}

.owl-carousel .owl-nav .owl-prev span:before,
.owl-carousel .owl-nav .owl-next span:before {
  font-size: 40px;
}

.owl-carousel .owl-nav .owl-prev {
  left: 30px !important;
}

.owl-carousel .owl-nav .owl-next {
  right: 30px !important;
}

.owl-carousel .owl-dots {
  text-align: center;
}

.owl-carousel .owl-dots .owl-dot {
  border-width: 2px !important;
  width: 10px;
  height: 10px;
  margin: 5px;
  border-radius: 50%;
}

.owl-carousel.home-slider {
  z-index: 1;
  position: relative;
}

.owl-carousel.home-slider .owl-nav {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.owl-carousel.home-slider .owl-nav button {
  color: #fff;
}

.owl-carousel.home-slider:focus .owl-nav, .owl-carousel.home-slider:hover .owl-nav {
  opacity: 1;
  visibility: visible;
}

.owl-carousel.home-slider .slider-item {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: calc(100vh - 117px);
  min-height: 700px;
  position: relative;
}

.owl-carousel.home-slider .slider-item .slider-text {
  color: #fff;
  height: calc(100vh - 117px);
  min-height: 700px;
}

.owl-carousel.home-slider .slider-item .slider-text h1 {
  font-size: 40px;
  color: #fff;
  line-height: 1.2;
  font-weight: 800 !important;
  text-transform: uppercase;
}

@media (max-width: 991.98px) {
  .owl-carousel.home-slider .slider-item .slider-text h1 {
    font-size: 40px;
  }
}

.owl-carousel.home-slider .slider-item .slider-text p {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 300;
  color: white;
}

.owl-carousel.home-slider .slider-item.dark .child-name {
  color: #000;
}

.owl-carousel.home-slider .slider-item.dark h1 {
  color: #000;
}

.owl-carousel.home-slider .slider-item.dark p {
  color: #000;
}

.owl-carousel.home-slider .owl-dots {
  position: absolute;
  bottom: 100px;
  width: 100%;
}

.owl-carousel.home-slider .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  margin: 5px;
  border-radius: 50%;
  border: 2px solid transparent;
  outline: none !important;
  position: relative;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  background: #fff;
}

.owl-carousel.home-slider .owl-dots .owl-dot.active {
  border: 2px solid white;
  background: none;
}

.owl-carousel.major-caousel {
  -webkit-box-shadow: 0 10px 70px -10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 70px -10px rgba(0, 0, 0, 0.2);
}

.owl-carousel.major-caousel .owl-stage-outer {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.owl-carousel.major-caousel .owl-stage-outer {
  padding-top: 30px;
  padding-bottom: 30px;
}

.owl-carousel.major-caousel .slider-item {
  height: inherit;
  min-height: inherit;
}

.owl-carousel.major-caousel .slider-item img {
  margin-bottom: 0;
}

.owl-carousel.major-caousel .owl-nav {
  opacity: 1;
  visibility: visible;
}

.owl-carousel.major-caousel .owl-nav .owl-prev, .owl-carousel.major-caousel .owl-nav .owl-next {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  color: #495057;
}

.owl-carousel.major-caousel .owl-nav .owl-prev:hover, .owl-carousel.major-caousel .owl-nav .owl-prev:focus, .owl-carousel.major-caousel .owl-nav .owl-next:hover, .owl-carousel.major-caousel .owl-nav .owl-next:focus {
  color: #6c757d;
  outline: none;
}

.owl-carousel.major-caousel .owl-nav .owl-prev.disabled, .owl-carousel.major-caousel .owl-nav .owl-next.disabled {
  color: #dee2e6;
}

.owl-carousel.major-caousel .owl-nav .owl-prev {
  left: -60px !important;
}

.owl-carousel.major-caousel .owl-nav .owl-next {
  right: -60px !important;
}

.owl-carousel.major-caousel .owl-dots {
  bottom: 50px !important;
}

@media (max-width: 991.98px) {
  .owl-carousel.major-caousel .owl-dots {
    bottom: 10px !important;
  }
}

.owl-custom-nav {
  float: right;
  position: relative;
  z-index: 10;
}

.owl-custom-nav .owl-custom-prev,
.owl-custom-nav .owl-custom-next {
  padding: 10px;
  font-size: 30px;
  background: #ccc;
  line-height: 0;
  width: 60px;
  text-align: center;
  display: inline-block;
}

.footer-section {
  background: #1a1a1a;
  color: #fff;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-section a:hover {
  color: #fff;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.5);
}

.footer-section .bordertop {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.footer-section .contact-info span.d-block {
  font-style: italic;
  color: #fff;
}

.footer-section .social a {
  font-size: 18px;
  padding: 10px;
}

.footer-section .link li {
  margin-bottom: 10px;
}

.footer-newsletter .form-group {
  position: relative;
}

.footer-newsletter .form-control {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  color: #fff;
}

.footer-newsletter .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(255, 255, 255, 0.2);
  font-style: italic;
}

.footer-newsletter .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(255, 255, 255, 0.2);
  font-style: italic;
}

.footer-newsletter .form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: rgba(255, 255, 255, 0.2);
  font-style: italic;
}

.footer-newsletter .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(255, 255, 255, 0.2);
  font-style: italic;
}

.footer-newsletter .form-control:active, .footer-newsletter .form-control:focus {
  border-bottom: 1px solid white;
}

.footer-newsletter button[type="submit"] {
  background: none;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
}

.side-box, .sidebar-search {
  padding: 30px;
  background: #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.side-box .heading, .sidebar-search .heading {
  font-size: 18px;
  margin-bottom: 30px;
  font-family: "Mukta Mahee", arial, sans-serif;
}

.post-list li {
  margin-bottom: 20px;
}

.post-list li a > div {
  margin-top: -10px;
}

.post-list li a .meta {
  font-size: 13px;
  color: #adb5bd;
}

.post-list li a .image {
  width: 150px;
}

.post-list li a h3 {
  font-size: 16px;
}

.post-list li:last-child {
  margin-bottom: 0;
}

.sidebar-search .form-group {
  position: relative;
  margin-bottom: 0;
}

.sidebar-search .icon-search {
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.sidebar-search .search-input {
  border-color: #dee2e6;
  padding-left: 40px;
  border-radius: 0px;
}

.sidebar-search .search-input:focus, .sidebar-search .search-input:active {
  border-color: #343a40;
}

.contact-section .contact-info p {
  color: white;
  font-family: "Playfair+Display", times, serif;
  font-size: 30px;
  margin-bottom: 30px;
}

.contact-section .contact-info p .d-block {
  font-size: 14px;
  letter-spacing: .2em;
  font-family: "Mukta Mahee", arial, sans-serif;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.post-categories li {
  display: block;
}

.post-categories li a {
  display: block;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #e9ecef;
}

.post-categories li a .count {
  position: absolute;
  top: 0;
  right: 0;
  color: #6c757d;
}

.custom-pagination .page-item .page-link {
  text-align: center;
  border: none;
  background: none;
  border-radius: 50% !important;
  width: 50px;
  height: 50px;
  padding: 0;
  line-height: 50px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.custom-pagination .page-item.active .page-link {
  background: #dc3545;
  -webkit-box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.2);
}

/* Estilo para el botón de WhatsApp */
.whatsapp-float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 40px;
	right: 40px;
	background-color: #25d366;
	color: #FFF;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 3px #999;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	animation: whatsappPulse 1.5s infinite;
	text-decoration: none;
	border: 2px solid #fff;
}

/* Estilo para el botón de Llamada */
.call-float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 40px;
	right: 120px;
	/* Ajusta la posición para que no se solape con el de WhatsApp */
	background-color: #71435e;
	color: #FFF;
	border-radius: 50px;
	text-align: center;
	font-size: 30px;
	box-shadow: 2px 2px 3px #999;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	animation: callPulse 1.5s infinite;
	text-decoration: none;
	border: 2px solid #fff;
}

.whatsapp-float:hover {
	background-color: #128C7E;
	transform: scale(1.1);
	color: #fff;
}

.call-float:hover {
	background-color: #71435e;
	transform: scale(1.1);
	color: #fff;
}

/* Animación de pulso para el botón de WhatsApp */
@keyframes whatsappPulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.8);
	}

	70% {
		box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
	}
}

/* Animación de pulso para el botón de Llamada */
@keyframes callPulse {
	0% {
		box-shadow: 0 0 0 0 rgba(113, 67, 94, 0.8);
	}

	70% {
		box-shadow: 0 0 0 15px rgba(255, 186, 90, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(255, 186, 90, 0);
	}
}

/* Calendarios */
/* Estilos personalizados para el modal y calendario */
.date-range-modal {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	overflow: auto;
	/* Añadido para permitir scroll */
}

.date-range-content {
	background-color: #fff;
	margin: 10% auto;
	padding: 20px;
	border-radius: 8px;
	width: 90%;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	max-width: 800px;
	max-height: 90vh;
	/* Limitar altura máxima */
	overflow-y: auto;
	/* Añadir scroll vertical cuando sea necesario */
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	-webkit-overflow-scrolling: touch;
	/* Mejorar scroll en iOS */
}

.date-range-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
}

.date-range-title {
	font-size: 1.5rem;
	color: #333;
}

.close-modal {
	font-size: 1.5rem;
	cursor: pointer;
	color: #777;
}

.date-range-calendars {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.calendar-container {
	flex: 1;
	min-width: 300px;
	margin: 0 10px;
}

.calendar-month {
	text-align: center;
	font-weight: bold;
	margin-bottom: 10px;
}

.calendar-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 5px;
}

.calendar-day-header {
	text-align: center;
	font-weight: bold;
	padding: 5px;
}

.calendar-day {
	text-align: center;
	padding: 10px 5px;
	cursor: pointer;
	border-radius: 4px;
}

.calendar-day:hover {
	background-color: #f0f0f0;
}

.calendar-day.selected {
	background-color: #71435e;
	color: white;
}

.calendar-day.in-range {
	background-color: #583351;
}

.calendar-day.disabled {
  color: #A01B35; /* Gris para texto original */
  position: relative;
  background: #F9EAEB;
  cursor: not-allowed;
}

.calendar-day.disabled::after {
	content: '';
	position: absolute;
	left: 15%;
	top: 55%;
	/* Bajar un poco la línea */
	width: 70%;
	height: 1.5px;
	background: #A01B35;
	/* Rojo más suave */
	transform: translateY(-50%) rotate(-5deg);
	/* Línea ligeramente inclinada */
	opacity: 0.8;
}

.date-range-footer {
	margin-top: 20px;
	text-align: right;
}

.btn-confirm {
	background-color: #71435e;
	color: white;
	border: none;
	padding: 8px 16px;
	border-radius: 4px;
	cursor: pointer;
}

.btn-confirm:hover {
	background-color: #583351;
}

.date-range-input {
	background-color: white;
	cursor: pointer;
}

.error-message {
	color: #dc3545;
	background-color: #f8d7da;
	border: 1px solid #f5c6cb;
	padding: 10px;
	border-radius: 4px;
	margin: 10px 0;
	display: none;
}

/* Reserva para dispositivos moviles */
/* Resumen flotante para móviles */
@media (max-width: 767.98px) {
	#Summary-desktop {
		display: none !important;
	}

	.floating-summary-container {
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 1000;
		background: #71435e;
		box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
		transform: translateY(0);
		transition: all 0.3s ease;
		max-height: 70vh;
	}

	.floating-summary-container.collapsed {
		transform: translateY(calc(100% - 50px));
		max-height: 50px;
	}

	.floating-summary-toggle {
		background: #71435e;
		color: white;
		padding: 12px;
		text-align: center;
		font-weight: bold;
		cursor: pointer;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.floating-summary-content {
		max-height: calc(70vh - 50px);
		overflow-y: auto;
		padding: 15px;
		background: #71435e;
		display: none;
	}

	.floating-summary-container.expanded .floating-summary-content {
		display: block;
	}

	.floating-summary-container.expanded .floating-summary-toggle .toggle-icon {
		transform: rotate(180deg);
	}

	.toggle-icon {
		transition: transform 0.3s ease;
		font-size: 12px;
	}

	/* Ajustar el padding del contenedor principal */
	.contact-section {
		padding-bottom: 60px !important;
	}

	/* Ajustar posición de los botones flotantes */
	.whatsapp-float {
		bottom: 140px !important;
		/* Más arriba que antes */
		right: 20px !important;
	}

	.call-float {
		bottom: 80px !important;
		/* Más arriba que antes */
		right: 20px !important;
	}
}

/* Ocultar en desktop */
.floating-summary-container {
	display: none;
}

/* Botón flotante de Reservar */
.reservar-float {
	position: fixed;
	top: 20px;
	left: 20px;
	background-color: #583351;
	color: white;
	padding: 10px 15px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: bold;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	z-index: 9999;
	transform: translateX(-150px);
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	gap: 8px;
}

.reservar-float.show {
	transform: translateX(0);
}

.reservar-float:hover {
	background-color: #71435e;
	color: white;
	text-decoration: none;
}

/* Asegúrate que no interfiera con el menú en móviles */
@media (max-width: 768px) {
	.reservar-float {
		 top: 70px;
		 font-size: 14px;
		 padding: 8px 12px;
	}
}

/* Estilos para la sección de características de precios */
.pricing-features {
	padding: 5rem 0;
	background-color: #f8f9fa;
}

.feature-box {
	background: white;
	border-radius: 8px;
	padding: 2rem;
	height: 100%;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	transition: transform 0.3s ease;
	border-top: 4px solid #583351;
	position: relative;
}

.feature-box.highlight {
	border-top: 4px solid #71435e;
	box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.feature-box h3 {
	color: #583351;
	font-size: 1.5rem;
	margin-bottom: 1.5rem;
	font-weight: 600;
}

.feature-list {
	list-style: none;
	padding: 0;
	margin-bottom: 2rem;
}

.feature-list li {
	padding: 0.5rem 0;
	position: relative;
	padding-left: 2rem;
}

.feature-list i.fa-check {
	color: #4CAF50;
	position: absolute;
	left: 0;
	top: 0.7rem;
}

.price-tag {
	font-size: 2.5rem;
	font-weight: 700;
	color: #583351;
	margin: 1.5rem 0;
	text-align: center;
}

.price-tag span {
	font-size: 1rem;
	font-weight: 400;
	color: #583351;
}

.btn-feature {
	display: block;
	width: 100%;
	padding: 0.75rem;
	background-color: #583351;
	color: white;
	text-align: center;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 500;
	transition: background-color 0.3s;
}

.btn-feature:hover {
	background-color: #583351;
	color: white;
}

.feature-box.highlight .btn-feature {
	background-color: #71435e;
}

.feature-box.highlight .btn-feature:hover {
	background-color: #71435e;
}

.section h2.heading {
  font-size: 2.5rem; /* 40px */
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: "Playfair Display", serif;
  color: #71435e;
}

@media (max-width: 768px) {
  .section h2.heading {
      font-size: 2rem; /* 32px */
      margin-bottom: 1rem;
  }
}

/* Estilos Sección Entorno */
.entorno-section {
  padding: 5rem 0;
}

.lugar-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.lugar-card:hover {
  transform: translateY(-10px);
}

.image-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.lugar-card:hover img {
  transform: scale(1.05);
}

.badge-ico {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #71435e;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.lugar-info {
  padding: 1.5rem;
}

.lugar-info h3 {
  color: #583351;
  font-family: "Playfair Display", serif;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
  line-height: 1.1;
  word-break: break-word;
}

.meta-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #6c757d;
}

.meta-info i {
  margin-right: 5px;
}

.lugar-info p {
  color: #6c757d;
  margin-bottom: 1.5rem;
  min-height: 80px;
}

@media (max-width: 768px) {
  .lugar-card {
      margin-bottom: 2rem;
  }
  
  .image-wrapper {
      height: 200px;
  }
  
  .lugar-info p {
      min-height: auto;
  }
}

@media (max-width: 480px) {
  .lugar-card {
    min-width: 0;
    max-width: 98vw;
  }
}

/* === GALERÍA SCROLL === */
.scroll-gallery-section {
  padding: 4rem 0;
  position: relative;
}

.scroll-gallery-section .heading {
  color: #583351 !important; 
  font-size: 2.5rem !important;
}

@media (max-width: 768px) {
  .scroll-gallery-section .heading {
    font-size: 2rem !important; /* Mantener responsive */
  }
}

.scroller-wrapper {
  overflow-x: auto;
  padding: 2rem 0;
  scrollbar-width: thin;
  scrollbar-color: #71435e transparent;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.scroller-wrapper::-webkit-scrollbar {
  height: 8px;
}

.scroller-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.scroller-wrapper::-webkit-scrollbar-thumb {
  background-color: #71435e;
  border-radius: 20px;
}

.image-scroller {
  display: flex;
  gap: 1.5rem;
  padding: 0 2rem;
  scroll-snap-type: x mandatory;
  min-width: min-content;
}

.image-card {
  flex: 0 0 280px;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  scroll-snap-align: start;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  cursor: pointer;
  background: #f8f9fa;
}

.image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-card:hover img {
  transform: scale(1.03);
}

.card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  color: white;
  padding: 1.5rem;
  font-size: 1rem;
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateY(10px);
}

.image-card:hover .card-caption {
  opacity: 1;
  transform: translateY(0);
}

/* === MODAL (VERSIÓN FUNCIONAL) === */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.96);
  z-index: 99999;
  display: none; /* Inicialmente oculto */
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
}

body.modal-open {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.image-modal.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 40px rgba(0,0,0,0.8);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.image-modal.active .modal-content {
  transform: scale(1);
}

.close-image-modal {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100000;
  background: none;
  border: none;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-image-modal:hover {
  color: #71435e;
  transform: rotate(90deg);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .scroll-gallery-section {
    padding: 2rem 0;
  }
  
  .image-scroller {
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .image-card {
    flex: 0 0 220px;
    height: 300px;
  }
  
  .card-caption {
    padding: 1rem;
    font-size: 0.9rem;
  }
  
  .modal-content {
    max-width: 95%;
  }
  
  .close-image-modal {
    top: 20px;
    right: 20px;
    font-size: 2rem;
  }
}

/* === ACCESIBILIDAD === */
@media (prefers-reduced-motion: reduce) {
  .image-card,
  .image-card img,
  .modal-content,
  .close-image-modal,
  .image-modal {
    transition: none !important;
  }
  
  .image-modal.show .modal-content {
    transform: none !important;
  }
}

/* Botones de navegación */
.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(113, 67, 94, 0.7); /* Color principal con transparencia */
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.9;
  transition: all 0.3s ease;
  z-index: 100000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.nav-button:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.15);
  background: #71435e;
}

.nav-button i {
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.3));
}

.prev-button {
  left: 20px;
}

.next-button {
  right: 20px;
}


/* Efecto para desktop */
@media (min-width: 769px) {
  .nav-button {
      width: 60px;
      height: 60px;
      font-size: 2rem;
      opacity: 0.7;
  }
  
  .image-modal:hover .nav-button {
      opacity: 0.9;
  }
}

.modal-content {
  transition: opacity 0.3s ease;
}

.modal-content.loading {
  opacity: 0.5;
  filter: blur(2px);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .modal-content {
      max-width: 100%;
      max-height: 80vh;
  }

  .nav-button {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    bottom: 20px;
    top: auto;
    transform: none;
    opacity: 0.9;
}

  .close-image-modal {
      top: 10px;
      right: 10px;
      font-size: 1.8rem;
  }

  /* Prevenir zoom en imagen */
  .modal-content {
      touch-action: pan-y;
      -webkit-user-drag: none;
      user-select: none;
  }

  .prev-button {
    left: 15px;
  }

  .next-button {
      right: 15px;
  }
}

@media (max-width: 480px) {
  .modal-content {
      max-height: 70vh;
  }

  .nav-button {
      bottom: 10px;
      top: auto;
      transform: none;
      background: rgba(0,0,0,0.5);
  }

  .prev-button {
      left: 10px;
  }

  .next-button {
      right: 10px;
  }
}

.map-container {
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .map-container {
      padding-bottom: 100% !important; /* Aspect ratio 1:1 en móviles */
      margin: 0 15px; /* Margen lateral */
  }
  .col-md-3 {
      flex: 0 0 100%;
      max-width: 100%;
  }
  .footer-heading {
      margin-top: 1.5rem;
  }
  .directions-content {
      padding: 0 15px;
  }
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

/* Estilos FAQ */
.faq-section .card {
  margin-bottom: 1rem;
  border: 1px solid rgba(113, 67, 94, 0.1);
  border-radius: 8px;
}

.faq-section .card-header {
  background: #fff;
  border-bottom: none;
}

.faq-section .btn-link {
  width: 100%;
  text-align: left;
  color: #71435e;
  font-weight: 600;
  text-decoration: none;
  padding: 1.25rem;
}

.faq-section .btn-link:hover {
  color: #583351;
}

.faq-section .btn-link i {
  transition: transform 0.3s ease;
}

.faq-section .btn-link[aria-expanded="true"] i {
  transform: rotate(90deg);
}

.faq-section .card-body {
  background: #f8f9fa;
  border-top: 1px solid rgba(113, 67, 94, 0.1);
}

.card {
  border-radius: 15px !important;
  overflow: hidden;
  transition: all 0.3s ease;
}

.card-header {
  border-radius: 15px 15px 0 0 !important;
}

.card-body {
  border-radius: 0 0 15px 15px !important;
}

.faq-section .container {
  border-radius: 20px;
  overflow: hidden;
}

.btn-link {
  border-radius: 10px !important;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
/* Estilos para las tarjetas de precios */
.price-card {
	background: white;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.price-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.price-card.highlight {
	border: 2px solid #71435e;
	position: relative;
}

.price-card.highlight::before {
	content: 'Más Popular';
	position: absolute;
	top: 15px;
	right: -30px;
	background: #71435e;
	color: white;
	padding: 5px 30px;
	transform: rotate(45deg);
	font-size: 12px;
	font-weight: bold;
}

.price-header {
	padding: 25px;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	text-align: center;
	border-bottom: 1px solid #eee;
}

.price-header h3 {
	color: #583351;
	font-size: 1.5rem;
	margin-bottom: 10px;
	font-weight: 600;
}

.price-period {
	color: #6c757d;
	font-size: 0.9rem;
	margin-bottom: 15px;
}

.price-tag {
	color: #583351;
	font-size: 2.2rem;
	font-weight: 700;
	margin: 10px 0;
}

.price-tag span {
	font-size: 1rem;
	font-weight: 400;
	color: #6c757d;
}

.price-features {
	padding: 25px;
	list-style: none;
	flex-grow: 1;
}

.price-features li {
	padding: 8px 0;
	color: #495057;
	display: flex;
	align-items: flex-start;
}

.price-features i {
	color: #71435e;
	margin-right: 10px;
	margin-top: 3px;
	font-size: 1.1rem;
}

.btn-price {
	display: block;
	background: #71435e;
	color: white;
	text-align: center;
	padding: 12px;
	margin: 0 25px 25px;
	border-radius: 6px;
	font-weight: 600;
	transition: all 0.3s ease;
	text-decoration: none;
}

.btn-price:hover {
	background: #583351;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(113, 67, 94, 0.3);
}

/* Responsive */
@media (max-width: 767px) {
	.price-card {
		 margin-bottom: 30px;
	}
	
	.price-card.highlight::before {
		 right: -25px;
		 padding: 3px 25px;
		 font-size: 10px;
	}
}

.price-card.current-season {
	transform: scale(1.05);
	z-index: 10;
	box-shadow: 0 15px 35px rgba(113, 67, 94, 0.3);
	border: 2px solid #71435e;
}

.current-badge {
	position: absolute;
	top: 15px;
	left: -10px;
	background: #71435e;
	color: white;
	padding: 5px 15px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: bold;
	z-index: 3;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Ajustes para el orden de las tarjetas */
#pricing-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

@media (min-width: 768px) {
	#pricing-container {
		 flex-wrap: nowrap;
	}
	
	.price-card.current-season {
		 order: 1;
	}
	
	.price-card:not(.current-season) {
		 order: 2;
	}
}

/* ====================
   MODERNIZACIÓN FORMULARIO 
   ==================== */

.contact-section .container {
  overflow: hidden;
  background: transparent !important; /* Eliminamos el fondo del contenedor */
  box-shadow: none !important;
}

/* Bloques individuales con fondo */
#reservation-form,
.reservation-summary,
.bg-white.p-md-5.p-4.mb-5.border {
  background: #fff !important;
  border-radius: 20px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
  margin-bottom: 30px;
  overflow: hidden;
  border: none !important;
}

/* Campos del formulario */
.form-group .form-control {
  border: 2px solid #e9ecef !important;
  border-radius: 12px !important;
  padding: 12px 15px !important;
  transition: border-color 0.3s ease;
}

.form-group .form-control:focus {
  border-color: #71435e !important;
  box-shadow: none !important;
}

/* Selectores nativos */
select.form-control {
  appearance: auto !important;
  -webkit-appearance: auto !important;
  -moz-appearance: auto !important;
  background-image: none !important; /* Elimina cualquier icono previo */
}

/* Botón principal */
.btn-primary {
  background: #71435e !important;
  border-radius: 50px !important;
  padding: 12px 35px !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: transform 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

/* Acordeón simplificado */
#condicionesAccordion .card {
  border: 1px solid #e9ecef !important;
  border-radius: 15px !important;
  margin-bottom: 15px;
}

#condicionesAccordion .btn-link {
  border-radius: 15px !important;
  padding: 15px !important;
  color: #71435e !important;
  font-weight: 600;
}

/* Bloque de dirección mejorado */
.bg-white.p-md-5.p-4.mb-5.border {
  padding: 30px !important;
  border-radius: 20px !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
}

/* Espaciado entre elementos */
#reservation-form .form-group {
  margin-bottom: 1.5rem;
}

/* Títulos más limpios */
.reservation-summary {
  background: #71435e !important; /* Color morado original */
  border-radius: 20px !important;
  box-shadow: 0 10px 30px rgba(113, 67, 94, 0.2) !important;
  color: white !important;
}
select.form-control {
  height: auto !important; /* Altura automática */
  min-height: 50px; /* Altura mínima igual a la original */
  padding: 12px 35px 12px 15px !important; /* Espacio para flecha */
  line-height: 1.5 !important; /* Alineación vertical */
  -webkit-appearance: menulist !important; /* Apariencia nativa */
  -moz-appearance: menulist !important;
  appearance: menulist !important;
}
/* Asegurar consistencia en los colores */
.nav-tabs .nav-link {
    transition: color 0.3s ease;
}

.nav-tabs .nav-link.active {
    color: #583351 !important;
    border-bottom: 2px solid #583351;
}

.nav-tabs .nav-link:not(.active) {
    color: #6c757d !important;
}

.food-menu p {
    color: #6c757d !important;
}

@media (max-width: 767px) {
  .site-hero {
      background-attachment: scroll !important;
      background-position: top center !important;
  }
  
  .site-hero-inner {
      min-height: 80vh !important;
      padding: 20px 0;
  }
  
  .logo_White.png {
      max-width: 90% !important;
  }
}

.lugares-slider .owl-stage-outer {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 2.5rem;
  min-height: 620px;
}

.lugares-slider {
  overflow: visible;
  padding-bottom: 4.5rem;
}

.lugares-slider .owl-item {
  display: flex;
  justify-content: center;
}

@media (max-width: 600px) {
  .owl-carousel .owl-stage-outer {
    min-height: 560px !important;
    max-height: 620px;
  }
}
