/* HabittaMX Styles - Modern Youth Housing Design */

/* ===== CSS VARIABLES ===== */
:root {
  /* Color Palette - Official Brand Colors */
  --warm-white: #fefffd;
  --modern-gray: #9fa1a5;
  --vibrant-yellow: #f5b509;
  --youth-pink: #f3a3e4;
  --pastel-yellow: #fbe9a3;
  --dark-gray: #2c2c2c;
  --light-gray: #f8f9fa;
  --accent-gray: #e9ecef;
  --text-color: #000000;

  /* Typography */
  --font-primary: "Quicksand", sans-serif !important;
  --font-display: "Bebas Neue", sans-serif !important;
  --font-script: "Dancing Script";

  /* Spacing */
  --container-max: 2000px;
  --section-padding: clamp(3rem, 8vw, 6rem) 0;
  --element-radius: 16px;

  /* Shadows */
  --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 12px 35px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);

  /* Viewport Height Optimization for Mobile */
  --vh: 1vh;
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--warm-white);
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--black);
  text-align: center;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.4rem, 3vw, 1.6rem);
  font-weight: 400;
  color: var(--dark-gray);
}

p {
  font-size: clamp(1rem, 2vw, 1.1rem);
  margin-bottom: 1rem;
  color: var(--text-color);
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  width: 100%;
}

.section-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--modern-gray);
  text-align: center;
  margin-bottom: clamp(2rem, 6vw, 4rem);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

/* ===== BUTTONS ===== */
.cta-button,
.secondary-button,
.room-button,
.submit-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  text-align: center;
  justify-content: center;
  background-image: linear-gradient(
    45deg,
    var(--vibrant-yellow),
    var(--youth-pink)
  );
  color: white;
  box-shadow: var(--shadow-medium);
}

.cta-button:hover,
.secondary-button:hover,
.room-button:hover,
.submit-button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(254, 255, 253, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 0.5rem 0;
  box-shadow: var(--shadow-light);
  border-bottom: 1px solid rgba(245, 181, 9, 0.1);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 65px;
}

.nav-logo {
  flex-shrink: 0;
  transition: var(--transition);
}

.nav-logo a {
  display: block;
  line-height: 1;
}

.logo-img {
  height: 70px;
  width: auto;
  transition: var(--transition);
}

.nav-logo:hover .logo-img {
  transform: scale(1.05);
}

.nav-menu {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav-menu a {
  color: var(--dark-gray);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--vibrant-yellow);
  background-color: rgba(245, 181, 9, 0.1);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--vibrant-yellow);
  transition: var(--transition);
  border-radius: 1px;
}

.nav-menu a:hover::after {
  width: 80%;
}

.nav-menu a.active {
  color: var(--vibrant-yellow);
  font-weight: 600;
}

.nav-menu a.active::after {
  width: 80%;
  background-color: var(--vibrant-yellow);
}

.nav-menu a.nav-highlight {
  background: linear-gradient(135deg, #f8b500, #f5a623);
  color: white !important;
  border-radius: 25px;
  padding: 0.5rem 1.2rem !important;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(248, 181, 0, 0.3);
  transition: all 0.3s ease;
}

.nav-menu a.nav-highlight:hover {
  background: linear-gradient(135deg, #f5a623, #f8b500);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(248, 181, 0, 0.4);
  color: white !important;
}

.nav-menu a.nav-highlight::after {
  display: none;
}

.nav-social {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.nav-social a {
  color: var(--modern-gray);
  font-size: 1.1rem;
  transition: var(--transition);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(245, 181, 9, 0.1);
  opacity: 0.8;
}

.nav-social a:hover {
  color: var(--youth-pink);
  transform: translateY(-2px) scale(1.1);
  background-color: rgba(243, 163, 228, 0.2);
  opacity: 1;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: var(--dark-gray);
  margin: 3px 0;
  transition: var(--transition);
}

.show-menu {
  display: block !important;
}

.home-bar,
.choose-habitta {
  display: none;
  position: absolute;
  background-color: white;
  padding: 0.8rem 1rem;
  list-style: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin-top: 0.5rem;
  z-index: 1002;
}

.home-bar li a,
.choose-habitta li a {
  display: block;
  padding: 0.4rem 0;
  white-space: nowrap;
  color: var(--dark-gray);
}

.home-bar li a:hover,
.choose-habitta li a:hover {
  color: var(--vibrant-yellow);
}

.submenu {
  display: none;
}
.submenu.show-menu {
  display: block;
}

.submenu-toggle {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
}

@media (max-width: 768px) {
  .submenu {
    /*position: static;*/
    box-shadow: none;
    margin-left: 1rem;
  }
}

.nav-menu li {
  position: relative;
}

/* Oculta la navbar moviéndola hacia arriba */
.navbar.hidden {
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}

/* Navbar visible */
.navbar {
  transition: transform 0.4s ease;
}

/* Área sensible al mouse para mostrar la navbar al acercarse */
.navbar-trigger {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px; /* el área donde el mouse hace aparecer la navbar */
  z-index: 999;
  pointer-events: auto;
}

/* ===== HERO SECTION - Split Layout Design ===== */
.hero {
  min-height: 70vh;
  min-height: calc(var(--vh, 1vh) * 70);
  padding: 0;
  display: flex;
  align-items: stretch;
  position: relative;
  background: url("fondo.webp") center/cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  scroll-margin-top: 80px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0.55) 60%,
    rgba(255, 255, 255, 0.35) 70%,
    rgba(255, 255, 255, 0.2) 80%,
    rgba(255, 255, 255, 0.1) 90%,
    rgba(255, 255, 255, 0.05) 100%
  );

  z-index: 1;
}

.hero-content-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(80px, 6vw, 100px) 0;
  background: transparent;
  position: relative;
  z-index: 3;
  animation: heroContentEntrance 1.5s cubic-bezier(0.25, 0.8, 0.25, 1) both;
}

.hero-content-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 clamp(2rem, 5vw, 4rem);
  width: 100%;
}

@keyframes heroContentEntrance {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-title {
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
  text-align: left;
  animation: heroTitleEntrance 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes heroTitleEntrance {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.script-text {
  display: block;
  font-family: "Urbanist", sans-serif;
  font-size: clamp(2.7rem, 4vw, 3rem);
  font-weight: 600;
  /*font-style: italic;*/
  margin-top: 75px;
  margin-bottom: 0.8rem;
  color: #f8b500;
  text-shadow: 2px 2px 4px rgb(97, 95, 95);
  /* text-shadow: 
    -1px -1px 0 #000000, 
     1px -1px 0 #000000, 
    -1px  1px 0 #000000, 
     1px  1px 0 #000000; */
  animation: scriptTextGlow 2s ease-out 0.8s both;
  text-transform: uppercase;
}

@keyframes scriptTextGlow {
  from {
    opacity: 0;
    text-shadow: none;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    /*text-shadow: none;*/
    transform: translateY(0);
  }
}

.brand-text {
  display: block;
  font-family:
    "Bebas Neue", sans-serif !important; /* Aquí se aplica Bebas Neue */
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 3px;
  color: #393e46;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  animation: brandTextReveal 1.5s cubic-bezier(0.25, 0.8, 0.25, 1) 1s both;
}

@keyframes brandTextReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-description {
  display: block;
  font-family: "Quicksand", sans-serif !important;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-weight: 500;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  color: #393e46;
  max-width: 600px;
  margin-left: 0;
  margin-right: 0;
  text-shadow: none;
  animation: heroDescriptionFade 1.2s ease-out 1.8s both;
  line-height: 1.6;
  text-align: left;
  background: rgba(255, 255, 255, 0.7);
  padding: 1.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
}

@keyframes heroDescriptionFade {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* New pill-style CTA buttons */
.cta-button-pill {
  background: var(--warm-white);
  color: var(--dark-gray);
  border: 2px solid var(--dark-gray);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-size: clamp(0.8rem, 1.8vw, 1rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(245, 181, 9, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-button-pill::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(245, 181, 9, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.cta-button-pill:hover {
  background: var(--dark-gray);
  color: var(--warm-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(89, 67, 6, 0.16);
}

.cta-button-pill:hover::before {
  left: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-content-wrapper {
    padding: 0 2rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Enhanced features with better visual appeal */
.hero-features {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: clamp(1.5rem, 4vw, 2rem);
  animation: heroFeaturesSlide 1.2s ease-out 2.8s both;
}

@keyframes heroFeaturesSlide {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: white;
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-feature:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(85, 65, 10, 0.136);
  transform: translateY(-2px) scale(1.05);
}

.hero-feature i {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--vibrant-yellow);
  filter: drop-shadow(0 0 5px rgba(245, 181, 9, 0.3));
  transition: transform 0.3s ease;
}

.hero-feature:hover i {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  section {
    scroll-margin-top: 70px;
  }

  .hero-content {
    padding-top: 110px;
    padding-bottom: 2rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    padding: 0 clamp(1rem, 4vw, 2rem);
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
  }

  .hero-feature {
    padding: 0.5rem 1rem;
    width: 100%;
    max-width: 260px;
    justify-content: center;
    font-size: 0.9rem;
  }

  .hero-social {
    display: none;
  }

  .hero {
    background-attachment: scroll;
  }

  .hero::before {
    animation: subtleFloatParticles 25s ease-in-out infinite;
  }

  .hero-subtitle {
    font-size: clamp(0.95rem, 2.2vw, 1.2rem);
    padding: 0 1rem;
    margin-bottom: 0.8rem;
  }

  .hero-description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    padding: 1rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-content {
    padding-top: 90px;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 1.5rem;
  }

  .hero-cta-group {
    padding: 0 0.5rem;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
  }

  .hero-features {
    margin-top: 1.2rem;
    gap: 0.6rem;
  }

  .hero-feature {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    max-width: 240px;
  }

  .hero-feature i {
    font-size: 1rem;
  }

  .script-text {
    font-size: clamp(1.4rem, 4.5vw, 2rem);
    margin-bottom: 0.2rem;
  }

  .brand-text {
    font-size: clamp(2rem, 6vw, 3.2rem);
    letter-spacing: 1.5px;
  }

  .hero-title {
    margin-bottom: 0.8rem;
  }

  .hero-subtitle {
    font-size: clamp(0.9rem, 2.2vw, 1.1rem);
    margin-bottom: 0.6rem;
    padding: 0 0.5rem;
  }

  .hero-description {
    font-size: clamp(0.8rem, 1.8vw, 0.95rem);
    margin-bottom: 1.2rem;
    padding: 0 0.5rem;
    background: linear-gradient(135deg, #f5b509, #f3a3e4);
  }

  .hero::before {
    animation: subtleFloatParticles 20s ease-in-out infinite;
  }
}

/* ===== spots secction ===== */

.spots-content {
  max-width: 1300px;
  margin: 0 auto;
}

/* CONTENEDOR DE LAS TARJETAS */
.spots-columns {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* TARJETAS */
.spots-card {
  flex: 1;
  min-width: 280px;
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.spots-card-link {
  flex: 1;
  min-width: 280px;
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.spots-card {
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.spots-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--dark-black);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  text-align: center;
}

.spots-subtitle {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark-black);
}

.spots-text {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.7;
  color: var(--dark-gray);
  text-align: justify;
}

.minimal-icon {
  width: 64px;
  height: 64px;
  color: #f8b500;
}
.spots-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  background-color: var(--dark-gray);
  color: var(--accent-gray);
}

.spots-card:hover .spots-text {
  color: var(--light-gray);
}
/* ===== Advantages SECTION ===== */
.advantages {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background-color: var(--warm-white);
  scroll-margin-top: 120px;
  position: relative;
}

.advantages-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 1vw, 1rem);
  max-width: 1300px;
  margin: 0 auto;
}

.advantages-text {
  font-family: "Quicksand", sans-serif !important;
  flex: 1;
  max-width: 900px;
  padding: 0 20px;
  text-align: justify; /* Justificado */
}

.advantages-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--dark-black);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  text-align: center; /* Título centrado */
}

.advantages-text p {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  color: var(--dark-gray);
  text-align: justify; /* Párrafos justificados */
}

.advantages-text strong {
  color: rgb(241, 163, 18);
  font-weight: 600;
}

.advantages-image {
  width: 100%;
  max-height: min-contentS;
  display: flex;
  justify-content: center;
}

.advantages-image img {
  width: 100%;
  max-width: 950px;
  height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.advantages-image img:hover {
  transform: translateY(-5px);
}

@media (min-width: 768px) {
  .advantages-content {
    flex-direction: row;
    align-items: flex-start;
  }

  .advantages-image,
  .advantages-text {
    flex: 1;
  }

  .advantages-image img {
    max-width: 100%;
    /*height: 100%;*/
  }
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background-color: var(--warm-white);
  scroll-margin-top: 120px;
  position: relative;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 1vw, 1rem);
  max-width: 1300px;
  margin: 0 auto;
}

.about-text {
  font-family: "Quicksand", sans-serif !important;
  flex: 1;
  max-width: 900px;
  padding: 0 20px;
  text-align: justify; /* Justificado */
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--dark-black);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  text-align: center; /* Título centrado */
}

.about-text p {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  color: var(--dark-gray);
  text-align: justify; /* Párrafos justificados */
}

.about-text strong {
  color: rgb(241, 163, 18);
  font-weight: 600;
}

.about-image {
  width: 100%;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 950px;
  height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: translateY(-5px);
}

/* ===== why-us secction ===== */

.why-us-content {
  max-width: 1300px;
  margin: 0 auto;
  margin-bottom: 40px;
}

/* CONTENEDOR DE LAS TARJETAS */
.why-us-columns {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* TARJETAS */
.why-us-card {
  flex: 1;
  min-width: 280px;
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.why-us-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.why-us-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--dark-black);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  text-align: center;
}

.why-us-subtitle {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark-black);
}

.why-us p {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.7;
  color: var(--dark-gray);
  text-align: justify;
}

.minimal-icon {
  width: 64px;
  height: 64px;
  color: #f8b500;
}

/* Media Queries para Responsividad */
@media (min-width: 768px) {
  .about-content {
    flex-direction: row;
    align-items: center;
    gap: clamp(1rem, 5vw, 1rem);
  }

  .about-text {
    max-width: 600px;
  }

  .about-image {
    width: 50%;
  }

  .about-image img {
    max-width: 530px;
  }
}

/* Estilos para tablets */
@media (min-width: 481px) and (max-width: 767px) {
  .about-image img {
    height: 320px;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  }

  .about-content {
    gap: 2rem;
  }
}

/* MODIFICACIÓN: Mantener justificación en móviles */
@media (max-width: 768px) {
  .about-image img {
    height: 200px;
    max-width: 102%;
    border-radius: 8px;
  }

  .about-content {
    gap: 1.5rem;
  }

  .about-text {
    padding: 0 15px;
    max-width: 100%;
  }

  /* ELIMINADO: text-align: left para párrafos en móviles */
  /* .about-text p {
        text-align: left;
    } */
}

/* Estilos para móviles - Diseño similar a la referencia */
@media (max-width: 480px) {
  .about-image img {
    height: 407px;
    border-radius: 79px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
}

/* Efectos adicionales para mejorar la apariencia */
.about-image img {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.35s ease;
}

.about-image img:hover {
  opacity: 0.95;
}

/* Sección de características */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 50px 0;
  justify-content: center;
}

.feature {
  background: white;
  border-radius: 10px;
  padding: 25px;
  width: 100%;
  max-width: 350px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature h3 {
  color: var(--dark-black);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.feature p {
  color: var(--dark-gray);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--accent-color);
}

footer {
  text-align: center;
  padding: 30px;
  margin-top: 50px;
  background: var(--dark-black);
  color: white;
}

/* ===== INVERSIONES SECTION ===== */
.inversiones {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--warm-white);
  position: relative;
}

.inversiones-content {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4rem);
  max-width: 1300px;
  margin: 0 auto;
}

.inversiones-text {
  flex: 1;
  max-width: 500px;
}

.inversiones-title {
  font-family: "Bebas Neue", sans-serif !important;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

.inversiones-description {
  font-family: "Quicksand", sans-serif !important;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: var(--dark-gray);
  line-height: 1.6;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 400;
  text-align: justify; /* Justificado añadido */
}

.inversiones-details {
  font-size: clamp(0.95rem, 1.7vw, 1.05rem);
  color: var(--modern-gray);
  line-height: 1.6;
  font-weight: 400;
  text-align: justify; /* Justificado añadido */
}

.inversiones-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.inversiones-top {
  display: flex;
  align-items: center;
  gap: clamp(4rem, 8vw, 6rem);
}

.before-after-container {
  display: flex;
  gap: 2rem;
  width: 100%;
  max-width: 650px;
}

.before-image,
.after-image {
  flex: 1;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  width: 100%;
  height: auto;
  display: block;
}

.before-image:hover,
.after-image:hover {
  transform: translateY(-5px);
}

.before-image img,
.after-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.image-label {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.label-text {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.carousel-indicator {
  margin-top: 0.5rem;
  opacity: 0.6;
}

.carousel-text {
  font-size: 0.85rem;
  color: var(--modern-gray);
  font-style: italic;
}

/* Media Queries para hacer imágenes más grandes en móviles */
@media (max-width: 768px) {
  .inversiones-top {
    flex-direction: column;
    gap: 2rem;
  }

  .inversiones-text {
    max-width: 100%;
    text-align: center;
  }

  .inversiones-description {
    text-align: justify; /* Justificado mantenido en móviles */
  }

  .before-after-container {
    flex-direction: column;
    gap: 1.5rem;
    max-width: 100%;
  }

  .before-image,
  .after-image {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }

  .before-image img,
  .after-image img {
    height: 280px; /* Altura aumentada para tablets */
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .inversiones {
    padding: 3rem 0;
  }

  .inversiones-content {
    gap: 2rem;
  }

  .inversiones-description {
    text-align: justify; /* Justificado mantenido en móviles pequeños */
  }

  .before-image,
  .after-image {
    max-width: 100%;
  }

  .before-image img,
  .after-image img {
    height: 320px; /* Altura aumentada para móviles */
    border-radius: 15px;
  }

  .image-label {
    bottom: 20px;
    padding: 0.6rem 1.2rem;
  }

  .label-text {
    font-size: 1rem;
  }
}

/* Estilos para pantallas muy pequeñas */
@media (max-width: 360px) {
  .before-image img,
  .after-image img {
    height: 280px; /* Ajuste para pantallas muy pequeñas */
  }
}

/* Segunda parte - Gráfica y texto */
.inversiones-middle {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 3rem);
  margin: clamp(2rem, 4vw, 3rem) 0;
}

.graph-section {
  flex: 1;
  max-width: 400px;
}

.graph-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.graph-container img {
  width: 100%;
  height: auto;
  display: block;
}

.graph-label {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.graph-text {
  flex: 1;
  max-width: 1000px;
}

.graph-description {
  font-family: "Quicksand", sans-serif !important;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: var(--dark-gray);
  line-height: 1.6;
  font-weight: 400;
  text-align: justify; /* Justificado añadido */
}

/* Media queries para la segunda parte en móviles */
@media (max-width: 768px) {
  .inversiones-middle {
    flex-direction: column;
    gap: 2rem;
  }

  .graph-section {
    max-width: 100%;
  }

  .graph-text {
    max-width: 100%;
  }

  .graph-description {
    text-align: justify; /* Justificado mantenido en móviles */
  }
}

/* Tercera parte - Tabla de datos e imagen */
.inversiones-bottom {
  display: flex;
  align-items: flex-start;
  gap: clamp(2rem, 4vw, 3rem);
  margin: clamp(2rem, 4vw, 3rem) 0;
}

.data-section {
  flex: 1;
}

.data-title {
  font-family: "Bebas Neue", sans-serif !important;
  font-size: clamp(1.2rem, 2.2vw, 1.4rem);
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  text-align: center;
}

.data-table {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.data-row {
  display: flex;
  border-bottom: 1px solid #ddd;
}

.data-row:last-child {
  border-bottom: none;
}

.data-cell {
  flex: 1;
  padding: 1rem;
  border-right: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.data-cell:last-child {
  border-right: none;
}

.data-row-full {
  display: flex;
  border-bottom: 1px solid #ddd;
}

.data-row-full:last-child {
  border-bottom: none;
}

.data-cell-full {
  width: 100%;
  padding: 1rem;
  text-align: center;
  background-color: #f8f9fa;
}

.data-label {
  font-family: "Quicksand", sans-serif !important;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--dark-gray);
  font-weight: 600;
  text-align: center; /* Centrado para etiquetas de tabla */
}

.data-sublabel {
  font-size: clamp(0.8rem, 1.3vw, 0.9rem);
  color: var(--modern-gray);
  font-weight: 400;
  text-align: center; /* Centrado para subetiquetas de tabla */
}

.bottom-image {
  flex: 1;
  max-width: 400px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.bottom-image img {
  width: 100%;
  height: auto;
  display: block;
}

.bottom-image-label {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

/* Media queries para la tercera parte en móviles */
@media (max-width: 768px) {
  .inversiones-bottom {
    flex-direction: column;
    gap: 2rem;
  }

  .bottom-image {
    max-width: 100%;
    order: -1; /* La imagen va primero en móviles */
  }

  .data-label,
  .data-sublabel {
    text-align: center; /* Mantener centrado en móviles */
  }
}

/* Línea divisoria */
.section-divider {
  margin-top: clamp(1rem, 2vw, 1.5rem);
  width: 100%;
}

.divider-line {
  height: 8px;
  background: linear-gradient(to right, #000000 50%, #ff9500 50%);
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .inversiones-top,
  .inversiones-middle,
  .inversiones-bottom {
    flex-direction: column;
    text-align: center;
  }

  .before-after-container {
    justify-content: center;
  }

  .data-table {
    font-size: 0.9rem;
  }

  .data-cell {
    padding: 0.75rem;
  }
}

.rooms-redesign {
  padding: 4rem 0 0 0;
  margin: 0;
}

/* Header Section */
.rooms-redesign-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.rooms-redesign-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  color: #e9967a;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.rooms-redesign-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #4a5568;
  margin-bottom: 2rem;
  font-weight: 400;
}

/* Filter Pills */
.filter-pills {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-pill {
  font-family: var(--font-primary);
  background: #e2e8f0;
  color: #4a5568;
  padding: 0.8rem 1.2rem;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-pill.active {
  background: #4a5568;
  color: white;
}

.filter-pill i {
  font-size: 0.9rem;
}

/* Floor Sections */
.floor-section {
  margin-bottom: 3rem;
}

.floor-title {
  background: #4a5568;
  color: white;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  padding: 1rem 0;
  margin: 0 0 2rem 0;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.planta-alta .floor-title {
  background: #4a5568;
  color: white;
}

/* Studios Grid */
.studios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Studio Cards */
.studio-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.studio-card:hover {
  transform: translateY(-5px);
}

.studio-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
  display: flex;
  align-items: center;
  justify-content: center;
}

.studio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio-placeholder {
  color: #999;
  font-size: 1.2rem;
  text-align: center;
}

.studio-features {
  position: absolute;
  top: 10px;
  left: 10px;
}

.feature-tag {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.studio-status {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.studio-status.rentado {
  background: rgba(220, 53, 69, 0.9);
  color: white;
}

.studio-status.disponible {
  background: rgba(40, 167, 69, 0.9);
  color: white;
}

.studio-status i {
  font-size: 0.7rem;
}

/* Studio Info */
.studio-info {
  padding: 1.5rem;
  text-align: center;
}

.studio-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #4a5568;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.studio-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ff8e04;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3rem;
}

.price-period {
  font-size: 1rem;
  color: #718096;
  font-weight: 400;
}

.studio-btn {
  background: #05b11fdb;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.studio-btn:hover {
  background: #4c51bf;
  transform: translateY(-2px);
}

.studio-btn.waitlist-btn {
  background: #718096;
}

.studio-btn.waitlist-btn:hover {
  background: #4a5568;
}

/* Confidence Section */
.confidence-section {
  background: #4a5568;
  color: white;
  padding: 3rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.confidence-header {
  flex-shrink: 0;
}

.confidence-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
  margin: 0;
  line-height: 1.1;
  letter-spacing: 1px;
}

.confidence-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  flex: 1;
  max-width: 600px;
}

.confidence-feature {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
}

.confidence-feature:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(246, 173, 85, 0.5);
}

.feature-icon {
  background: #f6ad55;
  width: 50px;
  height: 50px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.3rem;
  font-size: 1.3rem;
  color: #4a5568;
}

.feature-text {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.3;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .filter-pills {
    flex-direction: column;
    align-items: center;
  }

  .filter-pill {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .studios-grid {
    grid-template-columns: 1fr;
    padding: 0 0.5rem;
  }

  .confidence-section {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
  }

  .confidence-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .confidence-title {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .confidence-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .rooms-redesign-title {
    font-size: 1.8rem;
  }

  .studio-name {
    font-size: 1.4rem;
  }

  .studio-price {
    font-size: 1.8rem;
  }
}

/* ===== ROOMS SECTION ===== */
.rooms {
  padding: 4rem 0 4rem 0;
  background: linear-gradient(
    135deg,
    var(--pastel-yellow) 0%,
    var(--warm-white) 100%
  );
  scroll-margin-top: 90px;
}

/* Rooms as first section - special styling */
.rooms-first {
  padding: 4rem 0 4rem 0; /* Reduced from 12rem to 6rem */
  margin-top: 0;
}

/* Rooms header styles */
.rooms-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
}

.rooms-main-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 0;
  letter-spacing: 3px;
  text-transform: uppercase;
  flex: 1;
  text-align: left;
}

.highlight-text {
  display: block;
  background: linear-gradient(45deg, var(--vibrant-yellow), var(--youth-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

#Titulo-estudios {
  text-align: center;
}
.available-text {
  display: block;
  color: var(--dark-gray);
  font-size: 0.7em;
  font-weight: 400;
  margin-top: 0.5rem;
  letter-spacing: 2px;
}

/* Rooms hero title styles - now smaller subtitle */
.rooms-hero-title {
  text-align: right;
  margin-bottom: 0;
  color: var(--dark-gray);
  flex: 1;
}

.rooms-hero-title .script-text {
  color: var(--dark-gray);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  text-shadow: none;
}

.rooms-hero-title .brand-text {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  background: linear-gradient(45deg, var(--vibrant-yellow), var(--youth-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rooms h2 {
  text-align: center;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin-top: clamp(2rem, 5vw, 3rem);
}

#Planta-alta {
  margin-top: 4rem;
}

.rooms-floor-title {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 2.5rem;
  font-family: var(--font-display);
  color: var(--dark-gray);
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.room-card {
  background: linear-gradient(145deg, #fefffd, #fbe9a3);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(19, 163, 228, 0.1);
  border: 2px solid rgba(19, 163, 228, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  backdrop-filter: blur(10px);
  cursor: pointer;
}

/* Hint tooltip removed - no animations */

.room-card .image-container {
  position: relative;
  overflow: hidden;
}

.room-card img {
  width: 100%;
  height: clamp(180px, 30vw, 240px);
  object-fit: cover;
}

.room-card .room-info {
  padding: clamp(1rem, 3vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.room-card .room-info h3 {
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  margin: 0;
  color: #13a3e4;
  font-weight: 600;
}

.room-card .room-price {
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  font-weight: 600;
  color: #13a3e4;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.room-card .price-period {
  font-size: clamp(0.85rem, 2vw, 1rem);
  color: #9fa1a5;
  font-weight: 500;
}

.room-card .view-details-btn {
  width: 100%;
  padding: clamp(0.8rem, 2vw, 1rem);
  font-size: clamp(0.9rem, 2vw, 1rem);
}

/* ===== ROOM BADGES - KIT DE INICIO Y CARACTERÍSTICAS ===== */
.room-badges {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.room-promo-badge {
  background: #fbe9a3;
  color: #2d3748;
  padding: 1rem 1.3rem;
  border-radius: 18px;
  font-size: 0.85rem;
  font-weight: 500;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 4px 15px rgba(245, 181, 9, 0.2);
  border: 2px solid rgba(45, 55, 72, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

/* Removido - ahora se maneja en .promo-main i */

.room-promo-badge .promo-main {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-family: var(--font-primary);
}

.room-promo-badge .promo-main i {
  font-size: 1.1rem;
}

.limited-time {
  background: #2d3748;
  color: #fefffd;
  font-size: 0.75rem;
  padding: 0.4rem 0.8rem;
  border-radius: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(45, 55, 72, 0.3);
  border: 1px solid rgba(45, 55, 72, 0.2);
  white-space: nowrap;
}

.room-feature-badge {
  background: #f3a3e4;
  color: #2d3748;
  padding: 0.7rem 1rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 3px 10px rgba(243, 163, 228, 0.3);
  border: 1px solid rgba(243, 163, 228, 0.4);
  text-transform: capitalize;
  letter-spacing: 0.3px;
}

/* Badges de características ahora usan el mismo estilo rosa sólido */

.room-feature-badge i {
  font-size: 0.9rem;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.room-feature-badge span {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.9rem;
}

/* Animaciones Súper Llamativas */
@keyframes promoBadgeShake {
  0%,
  80%,
  100% {
    transform: translateX(0) scale(1) rotate(0deg);
  }
  83% {
    transform: translateX(-6px) scale(1.03) rotate(-1deg);
  }
  86% {
    transform: translateX(6px) scale(1.03) rotate(1deg);
  }
  89% {
    transform: translateX(-4px) scale(1.02) rotate(-0.5deg);
  }
  92% {
    transform: translateX(4px) scale(1.02) rotate(0.5deg);
  }
  95% {
    transform: translateX(-2px) scale(1.01) rotate(-0.2deg);
  }
  98% {
    transform: translateX(2px) scale(1.01) rotate(0.2deg);
  }
}

@keyframes giftBounce {
  0%,
  70%,
  100% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
  35% {
    transform: translateY(-5px) scale(1.2) rotate(-5deg);
  }
}

@keyframes urgentPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.6);
  }
  50% {
    transform: scale(1.1);
    opacity: 0.9;
    box-shadow: 0 6px 25px rgba(229, 62, 62, 0.9);
  }
}

@keyframes promoBadgeGlow {
  0%,
  70%,
  100% {
    box-shadow: 0 8px 25px rgba(245, 181, 9, 0.4);
    border-color: rgba(45, 55, 72, 0.2);
  }
  75% {
    box-shadow:
      0 12px 40px rgba(245, 181, 9, 0.8),
      0 0 20px rgba(245, 181, 9, 0.6);
    border-color: rgba(45, 55, 72, 0.5);
  }
  80% {
    box-shadow:
      0 15px 50px rgba(245, 181, 9, 1),
      0 0 30px rgba(245, 181, 9, 0.8);
    border-color: rgba(45, 55, 72, 0.7);
  }
  85% {
    box-shadow:
      0 12px 40px rgba(245, 181, 9, 0.8),
      0 0 20px rgba(245, 181, 9, 0.6);
    border-color: rgba(45, 55, 72, 0.5);
  }
}

/* Efectos hover removidos - sin animaciones */

/* Room image styles - consolidated and cleaned */

.room-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.room-content h3 {
  font-family: var(--font-display);
  color: var(--dark-gray);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  letter-spacing: 1px;
  line-height: 1.2;
}

.room-content p {
  color: var(--modern-gray);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  display: none; /* Ocultar descripción para simplificar */
}

.room-details {
  display: none; /* Ocultar detalles para simplificar */
  gap: 0.5rem;
  color: var(--modern-gray);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  align-items: center;
  font-weight: 500;
}

.room-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--vibrant-yellow);
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.room-card img {
  width: 100%;
  height: 240px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 12px 12px 0 0;
}

/* Hover effect removed */

.room-card .room-info {
  padding: 20px;
  background-color: #fff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.room-card .room-info h3 {
  margin-top: 0;
  font-size: 1.25rem;
  color: var(--primary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.room-card .room-info p {
  display: none; /* Ocultar descripción adicional */
  margin-bottom: 15px;
  color: #666;
  flex-grow: 1;
}

.room-card .room-price {
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--vibrant-yellow);
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.room-card .room-status {
  display: none; /* Ocultar status para simplificar */
  font-size: 0.8rem;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 50px;
  color: #fff;
}

.room-status.available {
  background-color: #28a745;
}

.room-status.rented {
  background-color: #dc3545;
}

.room-card .view-details-btn {
  width: 100%;
  padding: 12px;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* ===== LOCATION SECTION ===== */
.location {
  padding: 4rem 0 6rem 0;
  background-color: var(--warm-white);
  scroll-margin-top: 120px;
}

.location h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--dark-black);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  text-align: center; /* Título centrado */
}

.location-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 3rem;
}

/* Columna del mapa */
.location-map-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.location-map {
  width: 100%;
  height: 450px;
  border-radius: var(--element-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  border: 2px solid rgba(245, 181, 9, 0.1);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-address {
  background: linear-gradient(135deg, white, var(--pastel-yellow));
  padding: 1.5rem;
  border-radius: var(--element-radius);
  box-shadow: var(--shadow-light);
  text-align: center;
}

.address-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: var(--dark-gray);
  font-weight: 500;
}

.address-item i {
  color: var(--vibrant-yellow);
  font-size: 1.2rem;
}

.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--vibrant-yellow);
  color: var(--dark-gray);
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(245, 181, 9, 0.3);
}

.directions-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(245, 181, 9, 0.4);
}

/* Columna de descripción */
.location-description-column {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  height: 450px;
  justify-content: space-between;
}

.location-text {
  flex: 0 0 auto;
}

.location-text h3 {
  font-family: var(--font-display);
  color: var(--dark-gray);
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.location-text p {
  font-family: "Quicksand", sans-serif !important;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  color: var(--dark-gray);
  text-align: justify; /* Párrafos justificados */
}

.location-text strong {
  color: rgb(241, 163, 18);
  font-weight: 600;
}

.locations-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.location-card {
  display: flex;
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.location-card:hover {
  transform: translateY(-3px);
}

.location-accent {
  width: 10px; /* Grosor del acento */
  background-color: rgb(241, 163, 18);
}

.location-card-content {
  padding: 20px;
}

.location-card-content h3 {
  font-family: var(--font-display);
  color: var(--dark-gray);
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.location-card-content p {
  font-family: "Quicksand", sans-serif !important;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  color: var(--dark-gray);
  text-align: justify; /* Párrafos justificados */
}

.location-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  flex: 1 1 auto;
  justify-content: center;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: linear-gradient(135deg, white, rgba(245, 181, 9, 0.05));
  padding: 1.5rem;
  border-radius: var(--element-radius);
  box-shadow: var(--shadow-light);
  border-left: 4px solid var(--vibrant-yellow);
  transition: var(--transition);
}

.highlight-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.highlight-icon {
  background: linear-gradient(135deg, var(--vibrant-yellow), var(--youth-pink));
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(245, 181, 9, 0.3);
}

.highlight-content h4 {
  font-family: var(--font-display);
  color: var(--dark-gray);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.highlight-content p {
  font-family: var(--font-primary);
  color: var(--text-color);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  text-align: justify; /* Justificación añadida para los textos de highlights */
}

.location-photo-column {
  display: flex;
  flex-direction: column;
  align-self: center;
  gap: 20px;
}

.location-photo img {
  width: 100%;
  height: 280px;
  object-fit: fill;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.location-photo-column img:hover {
  transform: scale(1.01);
}

/* Responsive design */
@media (max-width: 768px) {
  .location-description-column {
    height: auto;
    gap: 2rem;
  }

  .location-text p {
    text-align: justify; /* Mantener justificación en tablets */
  }

  .highlight-content p {
    text-align: justify; /* Mantener justificación en tablets */
  }

  .location-map {
    height: 300px;
  }

  .location-description-column {
    height: auto;
    gap: 2rem;
  }

  .highlight-item {
    flex-direction: column;
    text-align: center;
  }

  .highlight-icon {
    align-self: center;
  }

  .location-photo img {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .location-text p {
    text-align: justify; /* Mantener justificación en móviles */
  }

  .highlight-content p {
    text-align: justify; /* Mantener justificación en móviles */
  }

  .highlight-item {
    padding: 1.2rem;
  }

  .highlight-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}

.video-placeholder {
  background: linear-gradient(135deg, var(--youth-pink), var(--vibrant-yellow));
  border-radius: var(--element-radius);
  padding: 3rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  color: white;
}

.video-placeholder:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.video-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.video-placeholder p {
  font-weight: 600;
  color: white;
  margin: 0;
}

/* ===== REMOVED - TIPS SECTION NOW COMBINED WITH WHY-CHOOSE-US ===== */

:root {
  --dark-gray: #2c3e50;
  --modern-gray: #7f8c8d;
  --accent-gray: #bdc3c7;
  --light-gray: #ecf0f1;
  --warm-white: #fefefe;
  --pastel-yellow: #fff9c4;
  --vibrant-yellow: #f1c40f;
  --youth-pink: #e74c3c;
  --element-radius: 12px;
  --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--warm-white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== COMBINED TESTIMONIALS AND CONTACT SECTION ===== */
.testimonials-contact-section {
  padding: 4rem 0 6rem 0;
  background-color: #ffffff;
  /*background: linear-gradient(
    135deg,
    var(--light-gray) 0%,
    var(--warm-white) 100%
  );*/
  scroll-margin-top: 120px;
}

.testimonials-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* ===== TESTIMONIALS SECTION (LEFT SIDE) ===== */
.testimonials-content {
  padding: 2rem;
  background-color: var(--warm-white);
  border-radius: var(--element-radius);
  box-shadow: var(--shadow-light);
  text-align: center;
}

.testimonials-content h2 {
  color: var(--dark-gray);
  margin-bottom: 2rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.testimonials-slider {
  position: relative;
}

.testimonial {
  display: none;
  padding: 1rem;
}

.testimonial.active {
  display: block;
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-content {
  background: linear-gradient(135deg, var(--pastel-yellow), white);
  padding: 2rem 1.5rem;
  border-radius: var(--element-radius);
  box-shadow: var(--shadow-light);
  position: relative;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  top: -5px;
  left: 15px;
  font-size: 3rem;
  color: var(--youth-pink);
  font-family: serif;
  opacity: 0.5;
}

.testimonial-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author strong {
  color: var(--dark-gray);
  font-size: 1rem;
  font-weight: 400;
}

.stars {
  margin-top: 0.5rem;
  color: var(--vibrant-yellow);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--accent-gray);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active,
.dot:hover {
  background-color: var(--youth-pink);
  transform: scale(1.2);
}

/* ===== CONTACT SECTION (RIGHT SIDE) ===== */
.contact-content {
  padding: 2rem;
  background: white;
  border-radius: var(--element-radius);
  box-shadow: var(--shadow-light);
}

.contact-content h2 {
  color: var(--dark-gray);
  margin-bottom: 1rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.section-subtitle {
  color: var(--modern-black);
  margin-bottom: 2rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: block;
  color: var(--dark-gray);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  font-size: 0.9rem;
  border: 2px solid var(--accent-gray);
  border-radius: 8px;
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--youth-pink);
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.cta-button {
  background: linear-gradient(135deg, var(--youth-pink), #c0392b);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.form-actions {
  text-align: center;
  margin-top: 1.5rem;
}

.form-note {
  font-size: 0.8rem;
  color: var(--modern-gray);
  margin-top: 1rem;
  text-align: center;
  line-height: 1.4;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .testimonials-contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonials-contact-section {
    padding: 3rem 0 4rem 0;
  }

  .testimonials-content,
  .contact-content {
    padding: 1.5rem;
  }

  .container {
    padding: 0 1rem;
  }

  .form-row-2col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .testimonials-content,
  .contact-content {
    padding: 1rem;
  }

  .testimonial-content {
    padding: 1.5rem 1rem;
  }

  .testimonial-content p {
    font-size: 0.9rem;
  }
}

/* ===== SWEETALERT2 CUSTOM STYLES ===== */
.swal2-popup {
  border-radius: 12px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2) !important;
  font-family: var(--font-main) !important;
}

.swal2-title {
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  color: var(--dark-gray) !important;
  margin-bottom: 1rem !important;
}

.swal2-html-container {
  font-size: 1rem !important;
  line-height: 1.6 !important;
  color: var(--modern-gray) !important;
}

.swal2-confirm {
  border-radius: 8px !important;
  padding: 0.8rem 2rem !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  transition: all 0.3s ease !important;
  border: none !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.swal-success-button {
  background: linear-gradient(
    135deg,
    var(--vibrant-yellow),
    #f39c12
  ) !important;
  color: var(--dark-gray) !important;
}

.swal-success-button:hover {
  background: linear-gradient(
    135deg,
    #f39c12,
    var(--vibrant-yellow)
  ) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(245, 181, 9, 0.4) !important;
}

.swal-error-button {
  background: linear-gradient(135deg, #e74c3c, #c0392b) !important;
  color: white !important;
}

.swal-error-button:hover {
  background: linear-gradient(135deg, #c0392b, #e74c3c) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4) !important;
}

.swal2-icon {
  border: none !important;
  margin: 1rem auto 1.5rem !important;
}

.swal2-icon.swal2-success {
  color: #27ae60 !important;
}

.swal2-icon.swal2-error {
  color: #e74c3c !important;
}

.swal2-loading {
  border-color: var(--vibrant-yellow) transparent var(--vibrant-yellow)
    transparent !important;
}

.swal-loading-popup {
  border: 2px solid var(--vibrant-yellow) !important;
}

.swal-loading-title {
  color: var(--vibrant-yellow) !important;
}

.swal-info-popup {
  border-left: 4px solid #3498db !important;
}

.swal2-icon.swal2-info {
  color: #3498db !important;
}

/* Responsive SweetAlert2 */
@media (max-width: 768px) {
  .swal2-popup {
    width: 90% !important;
    margin: 0 5% !important;
    font-size: 0.9rem !important;
  }

  .swal2-title {
    font-size: 1.5rem !important;
  }

  .swal2-confirm {
    padding: 0.7rem 1.5rem !important;
    font-size: 0.95rem !important;
  }
}

@media (max-width: 480px) {
  .swal2-popup {
    width: 95% !important;
    margin: 0 2.5% !important;
    font-size: 0.85rem !important;
  }

  .swal2-title {
    font-size: 1.3rem !important;
  }

  .swal2-confirm {
    padding: 0.6rem 1.2rem !important;
    font-size: 0.9rem !important;
  }
}

.catch-inver-section {
  padding: clamp(2rem, 6vw, 4rem) 1rem;
  scroll-margin-top: 120px;
  position: relative;
  background: url("fondo.webp") center/cover no-repeat;
  overflow: hidden;
}

.catch-inver-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  width: 100%;
}

.catch-inver-section .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.catch-inver-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.85),
    rgba(137, 103, 8, 0.85) 100%
  );
  backdrop-filter: blur(3px);
}

.catch-inver-text {
  max-width: 900px;
  padding: 0 1rem;
  text-align: left;
}

.catch-inver-title {
  margin-top: 2rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  color: var(--light-gray);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  text-align: center;
}

.catch-inver-text p {
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  color: var(--light-gray);
  text-align: justify; /* Párrafos justificados */
}

.catch-inver-text strong {
  color: rgb(241, 163, 18);
  font-weight: 600;
}

.catch-inver-cta-content {
  padding: 30px 10px;
  text-align: center;
  border-radius: 12px;
  margin: 2px auto;
  max-width: 1000px;
}

.catch-inver-cta-content h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.6rem, 6vw, 3.4rem);
  color: var(--light-gray);
  margin-bottom: 1rem;
  font-weight: 400;
}

.catch-inver-cta-button {
  padding: 1rem 2.5rem;
  font-size: clamp(3rem, 7.5vw, 3.6rem);
  background: linear-gradient(135deg, #f8b500, #f5a623);
  color: #393e46;
  padding: 1.2rem 3rem;
  border: none;
  border-radius: 50px;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(248, 181, 0, 0.4);
  position: relative;
}

.catch-inver-cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(248, 181, 0, 0.5);
  color: #393e46;
}

/* Tablet */
@media (max-width: 768px) {
  .catch-inver-section {
    height: auto;
    min-height: 280px;
    background-attachment: scroll;
    padding: 2.5rem 0;
  }

  .catch-inver-content {
    gap: 2.5rem;
    display: grid;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .catch-inver-title {
    font-size: 2rem;
  }

  .catch-inver-text p {
    font-size: 1rem;
    text-align: left;
  }

  .catch-inver-cta-button {
    width: 10%;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .catch-inver-section {
    background-attachment: fixed;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, var(--dark-gray) 0%, #1a1a1a 100%);
  color: var(--accent-gray);
  padding: 4rem 0 2rem;
  border-top: 5px solid var(--vibrant-yellow);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--vibrant-yellow),
    transparent
  );
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: start;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section h3 {
  color: var(--vibrant-yellow);
  font-family: var(--font-display);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.footer-section .footer-logo-img {
  max-width: 180px;
  margin-bottom: 1.5rem;
  filter: brightness(1.1);
  transition: var(--transition);
}

.footer-section .footer-logo-img:hover {
  filter: brightness(1.3);
  transform: scale(1.02);
}

.footer-section h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--vibrant-yellow);
}

.footer-section p {
  color: #ccc;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer-section ul {
  color: #ccc;
  line-height: 1.8;
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.8rem;
  transition: var(--transition);
}

.footer-section ul li:hover {
  transform: translateX(5px);
}

.footer-section ul a {
  color: #ccc;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-section ul a:hover {
  color: var(--vibrant-yellow);
}

.footer-section ul a i {
  width: 16px;
  color: var(--vibrant-yellow);
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  color: #ccc;
  font-size: 1.3rem;
  border-radius: 50%;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social a:hover {
  color: white;
  background: var(--vibrant-yellow);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(245, 181, 9, 0.3);
}

.footer-bottom {
  border-top: 1px solid #e3e3e3;
  padding-top: 2rem;
  text-align: center;
  color: #ffffff;
  font-size: 0.9rem;
}

.footer-text {
  color: #ffffff; /* Color por defecto - puedes cambiarlo */
  font-family: "Quicksand", sans-serif;
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-text:hover {
  opacity: 1;
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 2rem;
  z-index: 1000;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  font-size: 2.4rem;
  text-decoration: none;
  box-shadow: var(--shadow-medium);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float a:hover {
  background-color: #20b85a;
  transform: scale(1.1);
  box-shadow: var(--shadow-hover);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ===== RESPONSIVE DESIGN ===== */
/* Large screens optimization */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
    padding: 0 2rem;
  }

  .rooms-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }

  .zona-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .hero-features {
    gap: 3rem;
  }

  .compact-benefits {
    max-width: 1200px;
    margin: 0 auto;
  }
}

/* Tablet styles */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero {
    flex-direction: column;
  }

  .hero-content-left {
    flex: none;
    padding: clamp(60px, 6vw, 80px) 0;
    text-align: center;
  }

  .hero-content-wrapper {
    padding: 0 clamp(1rem, 3vw, 2rem);
  }

  .hero-image-right {
    flex: none;
    height: 400px;
  }

  .hero-title {
    text-align: center;
  }

  .hero-description {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .container {
    padding: 0 2rem;
  }

  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .location-content {
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
  }

  .about-content {
    flex-direction: column;
    gap: 3rem;
    text-align: center;
  }

  .about-text {
    max-width: 100%;
  }

  .about-title {
    font-family: "Bebas Neue", sans-serif !important;
    text-align: center;
  }

  .about-image img {
    height: 280px;
  }

  .hero-features {
    gap: 1.5rem;
  }

  .compact-benefits {
    gap: 1.5rem;
    padding: 0 2rem;
  }

  .zona-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  /* Inversiones tablet adjustments */
  .inversiones-content {
    flex-direction: column;
    gap: 3rem;
    text-align: center;
  }

  .inversiones-text {
    max-width: 100%;
  }

  .before-after-container {
    max-width: 450px;
  }

  .before-image img,
  .after-image img {
    height: 280px;
  }
}

@media (max-width: 768px) {
  /* Hero Section mobile adjustments */
  .hero {
    flex-direction: column;
    min-height: auto;
  }

  .hero-content-left {
    flex: none;
    padding: clamp(50px, 5vw, 70px) 0;
    text-align: center;
  }

  .hero-content-wrapper {
    padding: 0 clamp(1rem, 3vw, 2rem);
  }

  .hero-image-right {
    flex: none;
    height: 250px;
  }

  .hero-title {
    text-align: center;
  }

  .hero-description {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(1rem, 2vw, 1rem);
  }

  .hero-cta-group {
    justify-content: center;
    gap: 0.6rem;
  }

  .cta-button-pill {
    padding: 0.7rem 1.2rem;
    font-size: clamp(0.75rem, 1.6vw, 0.9rem);
  }

  /* Base adjustments */
  .container {
    padding: 0 1.5rem;
  }

  /* Navigation */
  .navbar {
    padding: 0.4rem 0;
  }

  .nav-container {
    min-height: 55px;
  }

  .logo-img {
    height: 55px;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--warm-white);
    width: 100%;
    height: calc(100vh - 70px);
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    gap: 2rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu a {
    font-size: 1.2rem;
  }

  .nav-social {
    display: none;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  /* Hero */
  .hero {
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    background-attachment: scroll; /* Remove parallax on mobile for better performance */
    padding-top: 80px; /* Compensate for fixed navbar */
  }

  .hero-content {
    padding: clamp(120px, 8vw, 140px) 1rem clamp(2rem, 4vw, 3rem);
    text-align: center;
  }

  .hero-social {
    display: none;
  }

  .script-text {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    display: block;
    margin-bottom: 0.5rem;
  }

  .brand-text {
    font-size: clamp(2.2rem, 7vw, 3rem);
    display: block;
  }

  .hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.2rem);
    margin-bottom: 2.5rem;
    padding: 0 1rem;
  }

  .cta-button {
    padding: 1.2rem 2rem;
    font-size: 1rem;
    min-width: 280px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-features {
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .hero-feature {
    font-size: 0.85rem;
  }

  /* About */
  .about {
    padding: clamp(2rem, 5vw, 2.5rem) 0 clamp(2.5rem, 5vw, 3rem) 0;
  }

  .about-content {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }

  .about-text {
    max-width: 100%;
    text-align: center;
  }

  .about-title {
    text-align: center;
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
  }

  .about-text p {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    line-height: 1.6;
    margin-bottom: clamp(1rem, 2.5vw, 1.5rem);
    padding: 0 0.5rem;
  }

  .about-text p:last-of-type {
    margin-bottom: 1.5rem;
  }

  .about-image {
    order: -1;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
  }

  .about-image img {
    height: 200px;
    max-width: 100%;
    border-radius: 8px;
  }

  .about-text .cta-button {
    padding: 0.9rem 1.8rem;
    font-size: 0.9rem;
    min-width: 240px;
    margin-top: 1rem;
  }

  /* Rooms */
  .rooms {
    padding: 4rem 0 3rem 0;
  }

  .rooms-first {
    padding: 4rem 0 3rem 0; /* Consistent with other sections */
  }

  .rooms-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  /* Mobile rooms main title */
  .rooms-main-title {
    font-size: clamp(2.2rem, 8vw, 3rem);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-align: center;
    flex: none;
  }

  .available-text {
    font-size: 0.6em;
    letter-spacing: 1px;
  }

  /* Mobile rooms hero title */
  .rooms-hero-title {
    margin-bottom: 1rem;
    text-align: center;
    flex: none;
  }

  .rooms-hero-title .script-text {
    font-size: clamp(1rem, 4vw, 1.4rem);
  }

  .rooms-hero-title .brand-text {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }

  .rooms-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 400px;
    margin: 0 auto;
  }

  .room-card {
    margin: 0 auto;
    max-width: 350px;
  }

  .room-card img {
    height: 200px;
  }

  .room-card .room-info {
    padding: 1.2rem;
    text-align: center;
  }

  .room-card .room-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    line-height: 1.2;
  }

  .view-details-btn {
    width: 100%;
    padding: 1rem;
    margin-top: 1rem;
  }

  /* Location */
  .location {
    padding: 4rem 0;
  }

  .location-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .location-map iframe {
    height: 300px;
    border-radius: 12px;
  }

  .location-description {
    text-align: center;
    padding: 0 1rem;
  }

  /* Student Features */
  .student-features {
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.95);
  }

  .feature-item {
    min-width: 100px;
  }

  .feature-item i {
    font-size: 1.5rem;
  }

  .feature-item span {
    font-size: 0.8rem;
    color: #fff;
  }

  /* Testimonials */
  .testimonials {
    padding: 4rem 0;
  }

  .testimonial-content {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }

  /* Contact */
  .contact {
    padding: 4rem 0;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-form {
    padding: 2rem 1.5rem;
    margin: 2rem 1rem 0;
    max-width: 100%;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 1rem;
  }

  /* Footer */
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    text-align: left;
  }

  .footer-section {
    padding: 1rem 0;
  }

  .footer-section:first-child {
    grid-column: 1 / -1;
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid #444;
    margin-bottom: 1rem;
  }

  .footer-section .footer-logo-img {
    max-width: 150px;
    margin-bottom: 1rem;
  }

  .footer-social {
    justify-content: center;
    margin-top: 1rem;
  }

  .footer-section h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .footer-section ul li {
    margin-bottom: 0.6rem;
  }

  .footer-section ul a {
    font-size: 0.9rem;
  }

  /* WhatsApp */
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float a {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
  }
}

/* Extra small screens */
@media (max-width: 380px) {
  .container {
    padding: 0 0.75rem;
  }

  .cta-button {
    padding: 0.9rem 1.2rem;
    font-size: 0.9rem;
    min-width: 220px;
  }

  h2 {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

  .hero-subtitle {
    font-size: clamp(0.85rem, 4vw, 1rem);
    padding: 0 0.5rem;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 2.5rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.2rem);
    letter-spacing: 1.5px;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 3rem;
  }

  /* Navigation */
  .nav-container {
    min-height: 50px;
  }

  .logo-img {
    height: 50px;
  }

  .nav-menu {
    top: 70px;
    height: calc(100vh - 70px);
    padding-top: 1.5rem;
    gap: 1.2rem;
  }

  .nav-menu a {
    font-size: 1rem;
    padding: 0.7rem 1.5rem;
    min-width: 180px;
  }

  /* Hero */
  .hero {
    padding-top: 65px; /* Compensate for smaller fixed navbar on small mobile */
    background-attachment: scroll; /* Remove parallax on small mobile for better performance */
  }

  .hero-content {
    padding: clamp(60px, 8vw, 80px) 1rem clamp(1rem, 3vw, 1.5rem);
  }

  .script-text {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .brand-text {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
  }

  .hero-subtitle {
    font-size: clamp(0.9rem, 5vw, 1.1rem);
  }

  .cta-button {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    min-width: 250px;
  }

  /* About */
  .about {
    padding: clamp(2rem, 5vw, 2.5rem) 0 clamp(2.5rem, 5vw, 3rem) 0;
  }

  .about-title {
    font-size: clamp(1.6rem, 7vw, 2rem);
    margin-bottom: clamp(0.8rem, 2.5vw, 1rem);
  }

  .about-text p {
    font-size: clamp(1rem, 3vw, 1rem);
    line-height: 1.5;
    margin-bottom: clamp(0.8rem, 2.5vw, 1rem);
    padding: 0 0.3rem;
  }

  .about-text p:last-of-type {
    margin-bottom: 1.2rem;
  }

  .about-image img {
    height: 348px;
    border-radius: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  /* About */
  .about {
    padding: clamp(1.5rem, 4vw, 2rem) 0 clamp(2rem, 4vw, 2.5rem) 0;
  }

  .about-text .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
    min-width: 220px;
    margin-top: 0.8rem;
  }

  /* Rooms */
  .rooms {
    padding: 3rem 0 2.5rem 0;
  }

  .rooms-first {
    padding: 3rem 0 2.5rem 0; /* Consistent padding for small mobile */
  }

  /* Small mobile rooms main title */
  .rooms-header {
    flex-direction: column;
    text-align: center;
    gap: 0.3rem;
  }

  .rooms-main-title {
    font-size: clamp(2rem, 9vw, 2.8rem);
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
    text-align: center;
    flex: none;
  }

  .available-text {
    font-size: 0.55em;
    letter-spacing: 0.5px;
  }

  /* Small mobile rooms hero title */
  .rooms-hero-title {
    margin-bottom: 0.8rem;
    text-align: center;
    flex: none;
  }

  .rooms-hero-title .script-text {
    font-size: clamp(0.9rem, 4vw, 1.3rem);
  }

  .rooms-hero-title .brand-text {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }

  .rooms-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 320px;
  }

  .room-card {
    margin: 0 auto;
    max-width: 300px;
  }

  .room-card img {
    height: 180px;
  }

  .room-card .room-info {
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  /* Responsive badges */
  .room-badges {
    gap: 0.6rem;
    margin-bottom: 0.8rem;
  }

  .room-promo-badge {
    padding: 0.6rem 0.8rem;
    font-size: 0.8rem;
  }

  .room-promo-badge i {
    font-size: 0.9rem;
  }

  .limited-time {
    font-size: 0.6rem;
    padding: 0.15rem 0.5rem;
  }

  .room-feature-badge {
    padding: 0.5rem 0.7rem;
    font-size: 0.75rem;
  }

  .room-feature-badge i {
    font-size: 0.8rem;
  }

  /* Student Features */
  .student-features {
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(26, 26, 26, 0.95);
  }

  .feature-item {
    min-width: 90px;
  }

  .feature-item i {
    font-size: 1.3rem;
  }

  .feature-item span {
    font-size: 0.75rem;
    color: #fff;
  }

  /* Contact */
  .contact-form {
    padding: 1.5rem 1rem;
    margin: 1.5rem 0.5rem 0;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.875rem;
    font-size: 16px;
  }

  /* Testimonials */
  .testimonial-content {
    padding: 1.5rem 1rem;
    margin: 0 0.5rem;
  }

  /* WhatsApp */
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-float a {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  /* Mobile badges */
  .room-badges {
    gap: 0.5rem;
    margin-bottom: 0.6rem;
  }

  .room-promo-badge {
    padding: 0.5rem 0.7rem;
    font-size: 0.75rem;
    border-radius: 10px;
  }

  .room-promo-badge i {
    font-size: 0.8rem;
  }

  .limited-time {
    font-size: 0.55rem;
    padding: 0.1rem 0.4rem;
    border-radius: 8px;
  }

  .room-feature-badge {
    padding: 0.4rem 0.6rem;
    font-size: 0.7rem;
    border-radius: 6px;
  }

  .room-feature-badge i {
    font-size: 0.75rem;
  }

  /* Footer Mobile */
  .footer {
    padding: 2.5rem 0 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-section {
    padding: 1rem 0;
  }

  .footer-section:first-child {
    grid-column: 1;
    border-bottom: 1px solid #444;
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
  }

  .footer-section .footer-logo-img {
    max-width: 120px;
    margin: 0 auto 1rem;
  }

  .footer-section p {
    font-size: 0.9rem;
    max-width: 280px;
    margin: 0 auto 1rem;
  }

  .footer-social {
    justify-content: center;
    gap: 0.8rem;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .footer-section h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
  }

  .footer-section ul {
    text-align: center;
  }

  .footer-section ul li {
    margin-bottom: 0.7rem;
  }

  .footer-section ul a {
    font-size: 0.85rem;
    justify-content: center;
  }

  .footer-bottom {
    padding-top: 1.5rem;
    font-size: 0.8rem;
  }

  /* Inversiones mobile adjustments */
  .inversiones {
    padding: clamp(3rem, 6vw, 4rem) 0;
  }

  .inversiones-content {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }

  .inversiones-text {
    max-width: 100%;
  }

  .before-after-container {
    flex-direction: column;
    gap: 1.5rem;
    max-width: 300px;
  }

  .before-image img,
  .after-image img {
    height: 288px;
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .navbar,
  .whatsapp-float,
  .hero-social,
  .footer-social {
    display: none;
  }

  .hero {
    height: auto;
    padding: 2rem 0;
    background: none;
    color: black;
  }

  body {
    background: white;
    color: black;
  }
}

#sobre-nosotros,
#estudios,
#ubicacion,
#contacto,
#porque-elegir,
#quehayenlazona,
#testimonials {
  scroll-margin-top: 90px;
}

/* Ensure all sections have proper spacing from navbar */
.about,
.rooms,
.location,
.why-choose-separator,
.zona-section,
.testimonials,
.contact {
  scroll-margin-top: 90px;
}

/* Modal and Carousel Styles - Enhanced Design */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.95),
    rgba(245, 181, 9, 0.1)
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: modalFadeIn 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal-content {
  background: linear-gradient(135deg, var(--warm-white), #fafafa);
  margin: 5% auto;
  padding: 0;
  border: none;
  width: 95%;
  max-width: 1100px;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 16px;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.25),
    0 8px 16px rgba(245, 181, 9, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  animation: modalSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 2px solid rgba(245, 181, 9, 0.2);
}

.modal-header {
  background: linear-gradient(135deg, var(--vibrant-yellow), var(--youth-pink));
  padding: 1rem 1.5rem 0.8rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.modal-header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  filter: blur(20px);
}

.modal-header h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.modal-price {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 0.3rem;
  opacity: 0.95;
}

.modal-body {
  display: flex;
  gap: 1.5rem;
  padding: 1.2rem;
}

.modal-carousel {
  width: 100%;
  height: 320px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  border: 2px solid rgba(245, 181, 9, 0.3);
  flex-shrink: 0;
}

.carousel-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.carousel-slider img {
  width: 100%;
  height: 320px;
  flex-shrink: 0;
  display: block;
  object-fit: cover;
  object-position: center;
}

.carousel-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--vibrant-yellow);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(245, 181, 9, 0.6);
}

.modal-carousel .prev,
.modal-carousel .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 12px 14px;
  color: white;
  font-weight: bold;
  font-size: 14px;
  background: linear-gradient(
    135deg,
    rgba(245, 181, 9, 0.9),
    rgba(243, 163, 228, 0.9)
  );
  border: none;
  user-select: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 10;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.modal-carousel .prev {
  left: 10px;
}

.modal-carousel .next {
  right: 10px;
}

.modal-carousel .prev:hover,
.modal-carousel .next:hover {
  background: linear-gradient(135deg, var(--vibrant-yellow), var(--youth-pink));
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.modal-details {
  flex: 1;
  padding: 0;
}

.modal-details-content {
  background: rgba(255, 255, 255, 0.8);
  padding: 1.2rem;
  border-radius: 12px;
  border: 1px solid rgba(245, 181, 9, 0.2);
  backdrop-filter: blur(10px);
  height: fit-content;
}

.modal-room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.modal-feature-tag {
  background: linear-gradient(135deg, var(--vibrant-yellow), var(--youth-pink));
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(245, 181, 9, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-details p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.modal-amenities {
  background: rgba(248, 249, 250, 0.8);
  padding: 1.5rem;
  border-radius: 12px;
  margin: 1.5rem 0;
  border-left: 4px solid var(--vibrant-yellow);
}

.modal-amenities h4 {
  margin: 0 0 1rem 0;
  color: var(--dark-gray);
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-details ul li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(245, 181, 9, 0.1);
  font-size: 1rem;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.modal-details ul li:before {
  content: "✓";
  color: var(--vibrant-yellow);
  font-weight: bold;
  font-size: 1.1rem;
}

.modal-details ul li:last-child {
  border-bottom: none;
}

.modal-cta-section {
  background: linear-gradient(
    135deg,
    var(--light-gray),
    rgba(245, 181, 9, 0.05)
  );
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 2rem;
  text-align: center;
}

.modal-details .cta-button {
  margin: 0;
  width: 100%;
  font-size: 1.1rem;
  padding: 1.2rem 2rem;
  box-shadow: 0 8px 20px rgba(245, 181, 9, 0.4);
}

.close-button {
  color: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.close-button:hover,
.close-button:focus {
  color: white;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    backdrop-filter: blur(0px);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(10px);
  }
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-100px) scale(0.9);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .modal-content {
    width: 90%;
    max-width: 480px;
    margin: 10% auto;
    max-height: 70vh;
    overflow-y: auto;
    border-radius: 14px;
  }

  .modal-header {
    padding: 1.5rem 2rem 1rem;
  }

  .modal-header h3 {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }

  .modal-price {
    font-size: 1.1rem;
  }

  .modal-body {
    flex-direction: column;
    gap: 1.2rem;
    padding: 1rem;
  }

  .carousel-slider img {
    height: 180px;
  }

  .modal-carousel {
    width: 100%;
    max-width: 100%;
    height: 180px;
    border-radius: 12px;
    border-width: 2px;
  }

  .modal-carousel .prev,
  .modal-carousel .next {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .modal-carousel .prev {
    left: 10px;
  }

  .modal-carousel .next {
    right: 10px;
  }

  .carousel-indicators {
    bottom: 10px;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
    padding: 8px; /* Aumenta el área de toque */
  }

  .modal-details {
    padding: 0;
  }

  .modal-details-content {
    padding: 1.5rem;
    border-radius: 12px;
  }

  .modal-room-features {
    gap: 0.6rem;
    margin: 1rem 0;
  }

  .modal-feature-tag {
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
  }

  .modal-details p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .modal-amenities {
    padding: 1rem;
    margin: 1rem 0;
  }

  .modal-amenities h4 {
    font-size: 1rem;
  }

  .modal-details ul li {
    padding: 0.6rem 0;
    font-size: 0.9rem;
  }

  .modal-cta-section {
    padding: 1rem;
    margin-top: 1.5rem;
  }

  .modal-details .cta-button {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .close-button {
    top: 15px;
    right: 20px;
    font-size: 24px;
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  .modal-content {
    width: 95%;
    margin: 8% auto;
    border-radius: 12px;
    max-height: 70vh;
  }

  .modal-header {
    padding: 1rem 1.5rem 0.8rem;
  }

  .modal-header h3 {
    font-size: clamp(1.2rem, 6vw, 1.5rem);
  }

  .modal-price {
    font-size: 1rem;
  }

  .modal-body {
    gap: 0.8rem;
    padding: 0.8rem;
  }

  .carousel-slider img {
    height: 150px;
  }

  .modal-carousel {
    height: 150px;
    border-radius: 10px;
    border-width: 2px;
  }

  .modal-carousel .prev,
  .modal-carousel .next {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .modal-carousel .prev {
    left: 8px;
  }

  .modal-carousel .next {
    right: 8px;
  }

  .carousel-indicators {
    bottom: 8px;
  }

  .carousel-dot {
    width: 8px;
    height: 8px;
    padding: 6px; /* Mejor área de toque en móviles pequeños */
  }

  .modal-details-content {
    padding: 1rem;
    border-radius: 10px;
  }

  .modal-room-features {
    gap: 0.4rem;
    margin: 0.8rem 0;
  }

  .modal-feature-tag {
    padding: 0.25rem 0.6rem;
    font-size: 0.7rem;
  }

  .modal-details p {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
  }

  .modal-amenities {
    padding: 0.8rem;
    margin: 0.8rem 0;
  }

  .modal-amenities h4 {
    font-size: 0.95rem;
  }

  .modal-details ul li {
    padding: 0.5rem 0;
    font-size: 0.85rem;
  }

  .modal-cta-section {
    padding: 0.8rem;
    margin-top: 1rem;
  }

  .modal-details .cta-button {
    padding: 0.9rem 1.2rem;
    font-size: 0.95rem;
  }

  .close-button {
    top: 12px;
    right: 15px;
    font-size: 20px;
    width: 32px;
    height: 32px;
  }
}

/* Additional Mobile Improvements */
@media (max-width: 768px) {
  /* Improved hamburger menu */
  .hamburger {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    z-index: 1001;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  /* Improved section spacing */
  section {
    scroll-margin-top: 80px;
  }

  /* Better button touch targets */
  .cta-button,
  .view-details-btn {
    min-height: 44px;
    touch-action: manipulation;
  }

  /* Improved form labels */
  .form-group label {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
  }

  /* Better image loading */
  .room-card img,
  .about-image img {
    transition: opacity 0.3s ease;
  }

  /* Smooth scrolling adjustments */
  html {
    scroll-padding-top: 80px;
  }
}

@media (max-width: 480px) {
  /* Even smaller screens adjustments */
  .nav-container {
    padding: 0 0.75rem;
  }

  .hamburger {
    padding: 0.375rem;
  }

  section {
    scroll-margin-top: 70px;
  }

  html {
    scroll-padding-top: 70px;
  }
}

/* Landscape orientation optimization */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding-top: 10px;
    min-height: 100vh;
  }

  .hero-content {
    padding: 0 2rem;
  }

  .hero-subtitle {
    margin-bottom: 1.5rem;
  }

  .hero-cta-group {
    margin-bottom: 1rem;
  }

  .hero-features {
    margin-top: 1rem;
    gap: 1rem;
  }

  .navbar {
    padding: 0.3rem 0;
  }

  .logo-img {
    height: 40px;
  }

  .nav-container {
    min-height: 45px;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .room-card:hover,
  .tip-card:hover {
    transform: none;
  }

  .cta-button:hover,
  .view-details-btn:hover {
    transform: none;
  }

  .room-card:active,
  .tip-card:active {
    transform: scale(0.98);
  }

  .cta-button:active,
  .view-details-btn:active {
    transform: scale(0.98);
  }

  /* Modal touch optimizations */
  .modal-carousel .prev:hover,
  .modal-carousel .next:hover {
    transform: translateY(-50%);
  }

  .modal-carousel .prev:active,
  .modal-carousel .next:active {
    transform: translateY(-50%) scale(0.95);
  }

  .carousel-dot:hover {
    transform: none;
  }

  .carousel-dot:active {
    transform: scale(1.2);
  }
}

/* Mobile Safari viewport fix */
@media screen and (max-width: 768px) {
  .hero {
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
  }

  .nav-menu {
    height: calc(100vh - 100px);
    height: calc((var(--vh, 1vh) * 100) - 100px);
  }
}

/* Improved focus states for accessibility */
@media (max-width: 768px) {
  .cta-button:focus,
  .view-details-btn:focus,
  .nav-menu a:focus {
    outline: 2px solid var(--vibrant-yellow);
    outline-offset: 2px;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--vibrant-yellow);
    box-shadow: 0 0 0 3px rgba(245, 181, 9, 0.1);
  }
}

/* Performance optimizations */
.room-card img,
.about-image img,
.carousel-slider img {
  will-change: transform;
}

@media (max-width: 768px) {
  .room-card img,
  .about-image img {
    will-change: auto;
  }
}

/* Loading states */
.loading {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.loaded {
  opacity: 1;
}

/* Student Features */
.student-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 3rem 0;
  padding: 2rem;
  background: rgba(26, 26, 26, 0.9);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 181, 9, 0.2);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-align: center;
  min-width: 120px;
}

.feature-item i {
  font-size: 2rem;
  color: var(--vibrant-yellow);
  margin-bottom: 0.5rem;
}

.feature-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
}

/* Room Feature Tags */
.room-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.5rem 0;
}

.feature-tag {
  background: linear-gradient(135deg, var(--vibrant-yellow), var(--youth-pink));
  color: #fff;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
}

/* Room Price Enhancement */
.room-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vibrant-yellow);
  margin: 1rem 0;
}

.price-period {
  font-size: 0.9rem;
  font-weight: 400;
  color: #666;
}

/* Disabled Button */
.cta-button:disabled,
.cta-button.disabled {
  background: #666;
  color: #999;
  cursor: not-allowed;
  opacity: 0.6;
}

.cta-button:disabled:hover,
.cta-button.disabled:hover {
  background: #666;
  transform: none;
}

/* Pricing Info Section */
.pricing-info {
  background: rgba(26, 26, 26, 0.9);
  padding: 2rem;
  border-radius: 15px;
  margin-top: 3rem;
  text-align: center;
  border: 1px solid rgba(245, 181, 9, 0.2);
}

.pricing-info h3 {
  color: var(--vibrant-yellow);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.included-services {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  min-width: 80px;
}

.service-item i {
  font-size: 1.5rem;
  color: var(--vibrant-yellow);
}

.service-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
}

.pricing-note {
  color: #b0b0b0;
  font-style: italic;
  font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  color: #fff;
  text-align: center;
  position: relative;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(245, 181, 9, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.faq-section .container {
  position: relative;
  z-index: 1;
}

.faq-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--vibrant-yellow);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, var(--vibrant-yellow), var(--youth-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-display);
}

/* Fallback for browsers that don't support background-clip */
@supports not (-webkit-background-clip: text) {
  .faq-section h2 {
    color: var(--vibrant-yellow);
    background: none;
    -webkit-text-fill-color: var(--vibrant-yellow);
  }
}

.faq-section .section-subtitle {
  color: #e0e0e0;
  font-size: 1.1rem;
  margin-bottom: 0;
  font-weight: 400;
}

.faq-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.faq-item {
  background: rgba(26, 26, 26, 0.8);
  border-radius: 15px;
  border: 1px solid rgba(245, 181, 9, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(245, 181, 9, 0.4);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(245, 181, 9, 0.1);
}

.faq-question h3 {
  color: var(--vibrant-yellow);
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.faq-question i {
  color: var(--vibrant-yellow);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 200px;
}

.faq-answer p {
  color: #b0b0b0;
  line-height: 1.6;
  margin: 0;
}

/* About Stats */
.about-stats {
  display: flex;
  justify-content: space-around;
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(245, 181, 9, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(245, 181, 9, 0.2);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--vibrant-yellow);
  font-family: var(--font-display);
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--modern-gray);
  margin-top: 0.5rem;
}

/* Process Section */
.process-section {
  position: relative;
  background: url("fondo.webp") center/cover no-repeat fixed;
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
  color: white;
  overflow: hidden;
}

.process-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.85),
    rgba(137, 103, 8, 0.85) 100%
  );
  backdrop-filter: blur(3px);
}

.process-section .container {
  position: relative;
  z-index: 2;
}

.process-section h2 {
  text-align: center;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 1.2rem;
  color: var(--vibrant-yellow);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.8rem, 1.5vw, 1.2rem);
}

.step-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: clamp(0.8rem, 1.5vw, 1.2rem);
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
}

.step-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
}

.step-number {
  width: 30px;
  height: 30px;
  background: var(--vibrant-yellow);
  color: var(--dark-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  margin: 0 auto 0.8rem;
  box-shadow: 0 2px 6px rgba(245, 181, 9, 0.3);
}

.step-content h3 {
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: var(--vibrant-yellow);
  line-height: 1.3;
  margin: 0;
}

@media (max-width: 768px) {
  .process-section {
    background-attachment: scroll;
    padding: 1.5rem 0;
  }

  .process-section h2 {
    margin-bottom: 1rem;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .step-item {
    padding: 0.8rem;
  }

  .step-number {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
  }

  .step-content h3 {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .process-section {
    padding: 1.2rem 0;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .step-item {
    padding: 0.7rem;
  }

  .step-number {
    width: 25px;
    height: 25px;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }

  .step-content h3 {
    font-size: 0.85rem;
  }
}

/* Room photo disclaimer styles - Updated for new position */
.room-photo-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.5rem 1rem;
  padding: 0.5rem 1rem;
  background: rgba(245, 181, 9, 0.1);
  border-radius: 0 0 8px 8px;
  border-top: 2px solid var(--vibrant-yellow);
  position: relative;
  backdrop-filter: blur(5px);
}

.room-photo-disclaimer i {
  color: var(--vibrant-yellow);
  font-size: 0.9rem;
}

.room-photo-disclaimer span {
  font-size: 0.85rem;
  color: var(--dark-gray);
  font-weight: 500;
  text-align: center;
}

/* Responsive styles for disclaimer */
@media (max-width: 768px) {
  .room-photo-disclaimer {
    margin: 0.4rem 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .room-photo-disclaimer i {
    font-size: 0.85rem;
  }

  .room-photo-disclaimer span {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .room-photo-disclaimer {
    margin: 0.3rem 0.6rem;
    padding: 0.35rem 0.6rem;
  }

  .room-photo-disclaimer i {
    font-size: 0.8rem;
  }

  .room-photo-disclaimer span {
    font-size: 0.75rem;
  }
}

/* Lazy loading image animations */
img[loading="lazy"] {
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

img.lazy-loading {
  opacity: 0.7;
  transform: scale(0.98);
}

img.lazy-loaded {
  opacity: 1;
  transform: scale(1);
}

img.lazy-error {
  opacity: 0.5;
  filter: grayscale(100%);
}

/* Loading skeleton for images */
img[loading="lazy"]:not(.lazy-loaded) {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Optimize images for different screen sizes */
@media (max-width: 768px) {
  img[loading="lazy"] {
    transition: opacity 0.2s ease;
  }
}

@media (max-width: 480px) {
  img[loading="lazy"] {
    transition: opacity 0.1s ease;
  }
}

/* Why Choose Us Compact Separator Section */
.why-choose-separator {
  position: relative;
  height: clamp(200px, 30vh, 250px);
  background: url("fondo.webp") center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.separator-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.85),
    rgba(137, 103, 8, 0.85) 100%
  );
  backdrop-filter: blur(3px);
}

.why-choose-separator .container {
  position: relative;
  z-index: 2;
  width: 200%;
  height: 200%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compact-benefits {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: white;
  text-align: center;
  padding: 1rem;
  min-width: 140px;
  max-width: 180px;
  flex: 1;
}

.benefit-item i {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: var(--vibrant-yellow);
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7));
}

.benefit-item span {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  font-weight: 400;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  line-height: 1.3;
}

/* Laptop and larger screens */
@media (min-width: 1024px) {
  .why-choose-separator {
    height: 180px;
  }

  .compact-benefits {
    gap: 3rem;
  }

  .benefit-item {
    min-width: 120px;
    max-width: 160px;
    padding: 0.8rem;
  }

  .benefit-item i {
    font-size: 2rem;
  }

  .benefit-item span {
    font-size: 1.3rem;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .why-choose-separator {
    height: auto;
    min-height: 280px;
    background-attachment: scroll;
    padding: 2.5rem 0;
  }

  .compact-benefits {
    gap: 2.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-item {
    min-width: 150px;
    max-width: none;
    padding: 1rem;
  }

  .benefit-item i {
    font-size: 2.2rem;
  }

  .benefit-item span {
    font-size: 1.4rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .why-choose-separator {
    min-height: 400px;
    padding: 2rem 0;
  }

  .compact-benefits {
    gap: 2rem;
    grid-template-columns: 1fr;
  }

  .benefit-item {
    min-width: 200px;
    padding: 1.2rem;
    gap: 1.2rem;
  }

  .benefit-item i {
    font-size: 2.5rem;
  }

  .benefit-item span {
    font-size: 1.5rem;
  }
}

/* Why Choose Us Compact Separator Section */
.why-choose-separator {
  position: relative;
  height: clamp(200px, 30vh, 250px);
  background: url("fondo.webp") center/cover no-repeat fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.separator-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.85),
    rgba(137, 103, 8, 0.85) 100%
  );
  backdrop-filter: blur(3px);
}

.why-choose-separator .container {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  padding: 0 1rem;
}

.trust-phrase {
  font-family: var(--font-display);
  color: white;
  font-size: clamp(1.2rem, 3vw, 2.5rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 25px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
  line-height: 1.1;
  white-space: normal;
  text-align: center;
  display: block;
  margin: 0 auto;
  padding-left: 12.5px; /* Compensa el letter-spacing */
}
.compact-benefits {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(1rem, 2vw, 2rem);
  flex: 1;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: white;
  text-align: center;
  padding: 0.5rem;
  min-width: 80px;
  max-width: 120px;
  flex: 1;
}

.benefit-item i {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: var(--vibrant-yellow);
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.7));
}

.benefit-item span {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 400;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  line-height: 1.2;
}

/* Laptop and larger screens */
@media (min-width: 1024px) {
  .why-choose-separator {
    height: 180px;
  }

  .trust-phrase {
    font-size: 2.2rem;
    margin-right: 3rem;
  }

  .compact-benefits {
    gap: 2rem;
  }

  .benefit-item {
    min-width: 90px;
    max-width: 130px;
    padding: 0.6rem;
  }

  .benefit-item i {
    font-size: 2rem;
  }

  .benefit-item span {
    font-size: 1.1rem;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .why-choose-separator {
    height: auto;
    min-height: 350px;
    background-attachment: scroll;
    padding: 2rem 0;
  }

  .why-choose-separator .container {
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 0 1rem;
  }

  .trust-phrase {
    font-size: 2.5rem;
    text-align: center;
    max-width: 100%;
  }

  .compact-benefits {
    margin-left: 0;
    gap: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 500px;
  }

  .benefit-item {
    min-width: 150px;
    max-width: none;
    padding: 1rem;
  }

  .benefit-item i {
    font-size: 2.5rem;
  }

  .benefit-item span {
    font-size: 1.3rem;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .why-choose-separator {
    min-height: 450px;
    padding: 2rem 0;
  }

  .why-choose-separator .container {
    gap: 2.5rem;
  }

  .trust-phrase {
    font-size: 2rem;
  }

  .compact-benefits {
    gap: 1.5rem;
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .benefit-item {
    min-width: 200px;
    padding: 1.2rem;
    gap: 1rem;
  }

  .benefit-item i {
    font-size: 2.8rem;
  }

  .benefit-item span {
    font-size: 1.4rem;
  }
}

/* What's Around Section */
.zona-section {
  padding: 2rem 0 4rem 0;
  background: linear-gradient(
    135deg,
    var(--light-gray) 0%,
    var(--warm-white) 100%
  );
  scroll-margin-top: 120px;
}

.zona-section h2 {
  text-align: center;
  color: var(--modern-black);
  margin-bottom: 1rem;
}

.zona-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.zona-card {
  background: white;
  padding: 2rem;
  border-radius: var(--element-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border: 1px solid var(--accent-gray);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.zona-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--vibrant-yellow), var(--youth-pink));
}

.zona-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.zona-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--vibrant-yellow), var(--youth-pink));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(245, 181, 9, 0.3);
}

.zona-icon i {
  font-size: 2rem;
  color: white;
}

.zona-card h3 {
  font-family: var(--font-display);
  color: var(--dark-gray);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 400;
}

.zona-card p {
  font-family: var(--font-primary);
  color: var(--text-color);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsive for zona section */
@media (max-width: 768px) {
  .zona-section {
    padding: 2rem 0 4rem 0;
  }

  .zona-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 400px;
    margin: 2rem auto 0;
  }

  .zona-card {
    padding: 1.5rem;
    margin: 0 1rem;
  }

  .zona-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }

  .zona-icon i {
    font-size: 1.5rem;
  }

  .zona-card h3 {
    font-size: 1.2rem;
  }

  .zona-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .zona-section {
    padding: 1.5rem 0 3rem 0;
  }

  .zona-grid {
    max-width: 100%;
    margin: 1.5rem auto 0;
  }

  .zona-card {
    padding: 1.2rem;
    margin: 0 0.5rem;
  }

  .zona-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0.8rem;
  }

  .zona-icon i {
    font-size: 1.3rem;
  }

  .zona-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .zona-card p {
    font-size: 0.85rem;
  }
}

/* ===== MODAL ACCORDION STYLES ===== */
/* Modal Accordion Sections for Room Details */
.modal-basic-info {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--accent-gray);
}

.modal-basic-info p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: var(--text-color);
}

.modal-accordion {
  margin: 0 0 1.5rem 0;
}

.accordion-item {
  margin-bottom: 0.5rem;
  border: 1px solid var(--accent-gray);
  border-radius: 8px;
  overflow: hidden;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.accordion-item:first-child {
  margin-top: 0;
}

.accordion-item:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.accordion-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.2rem;
  background: linear-gradient(135deg, var(--light-gray), white);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
  color: var(--dark-gray);
  user-select: none;
}

.accordion-header:hover {
  background: linear-gradient(135deg, var(--accent-gray), var(--light-gray));
  transform: translateY(-1px);
}

.accordion-header i:first-child {
  color: var(--vibrant-yellow);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.accordion-header span {
  flex: 1;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.accordion-icon {
  color: var(--modern-gray);
  transition: transform 0.3s ease;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  color: white;
}

.accordion-item.active .accordion-header {
  background: linear-gradient(135deg, var(--vibrant-yellow), var(--youth-pink));
  color: white;
}

.accordion-item.active .accordion-header i:first-child {
  color: white;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease-in-out,
    padding 0.3s ease;
  background: white;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding: 1rem 1.2rem 1.5rem;
}

.accordion-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.accordion-content li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--text-color);
  line-height: 1.4;
  transition: color 0.2s ease;
}

.accordion-content li:hover {
  color: var(--dark-gray);
}

.accordion-content li i {
  color: var(--vibrant-yellow);
  font-size: 0.85rem;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.modal-cta-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--accent-gray);
  text-align: center;
}

.modal-note {
  margin-top: 0.8rem;
  margin-bottom: 0;
  font-size: 0.85rem;
  color: var(--modern-gray);
  font-style: italic;
}

/* ===== PROMOCIÓN KIT DE BIENVENIDA ===== */
.promo-highlight {
  order: -1;
  border: 3px solid var(--vibrant-yellow) !important;
  box-shadow: 0 0 20px rgba(245, 181, 9, 0.3) !important;
  background: linear-gradient(
    135deg,
    rgba(245, 181, 9, 0.1),
    rgba(243, 163, 228, 0.1)
  ) !important;
  border-radius: 12px !important;
  margin-bottom: 1rem !important;
  position: relative;
  overflow: hidden;
}

.promo-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmerPromo 3s infinite;
  z-index: 1;
}

@keyframes shimmerPromo {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.promo-header {
  background: linear-gradient(
    135deg,
    var(--vibrant-yellow),
    var(--youth-pink)
  ) !important;
  color: white !important;
  position: relative;
  padding: 1rem 1.2rem !important;
  font-weight: 700 !important;
  z-index: 2;
}

.promo-header span {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.promo-header i:first-child {
  color: white !important;
  font-size: 1.3rem !important;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.promo-badge {
  position: absolute;
  top: -5px;
  right: 10px;
  background: linear-gradient(45deg, #ff4757, #ff6b7a);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 0 0 8px 8px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
  animation: pulsePromo 2s infinite;
}

@keyframes pulsePromo {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.promo-intro {
  background: linear-gradient(
    135deg,
    rgba(245, 181, 9, 0.1),
    rgba(243, 163, 228, 0.1)
  );
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--vibrant-yellow);
}

.promo-intro p:first-child {
  color: var(--vibrant-yellow);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.promo-intro p:last-child {
  color: var(--dark-gray);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.promo-conditions {
  background: rgba(255, 107, 122, 0.1);
  padding: 0.8rem;
  margin-top: 1rem;
  border-radius: 6px;
  border-left: 3px solid #ff6b7a;
}

.promo-conditions p {
  color: #ff4757;
  font-size: 0.8rem;
  margin: 0;
  font-weight: 500;
}

/* Enhanced accordion content for promo */
.promo-highlight .accordion-content {
  background: white;
  border: 2px solid rgba(245, 181, 9, 0.2);
}

.promo-highlight .accordion-content ul li {
  color: var(--dark-gray);
  font-weight: 500;
  padding: 0.6rem 0;
}

.promo-highlight .accordion-content ul li i {
  color: var(--vibrant-yellow) !important;
  font-size: 0.9rem;
}

/* ===== BOTÓN DE CONTACTO DEBAJO DEL CARRUSEL ===== */
.carousel-cta {
  margin-top: 1.5rem !important;
  padding: 1.2rem !important;
  background: linear-gradient(
    135deg,
    var(--vibrant-yellow),
    var(--youth-pink)
  ) !important;
  border-radius: 12px !important;
  text-align: center !important;
  color: white !important;
}

.carousel-cta .cta-button {
  background: white !important;
  color: var(--dark-gray) !important;
  border: none !important;
  padding: 1rem 2rem !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
  margin-bottom: 0.5rem !important;
  font-size: 1rem !important;
  width: 100% !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

.carousel-cta .cta-button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25) !important;
}

.carousel-cta .modal-note {
  margin: 0.5rem 0 0 0 !important;
  font-size: 0.85rem !important;
  color: rgba(255, 255, 255, 0.95) !important;
  font-style: italic !important;
}

/* Responsive adjustments for modal accordion */
@media (max-width: 768px) {
  .accordion-header {
    padding: 0.8rem 1rem;
    gap: 0.6rem;
  }

  .accordion-header span {
    font-size: 0.9rem;
  }

  .accordion-item.active .accordion-content {
    padding: 0.8rem 1rem 1.2rem;
  }

  .accordion-content li {
    padding: 0.3rem 0;
    font-size: 0.85rem;
  }

  .modal-basic-info {
    margin-bottom: 1.2rem;
  }

  .carousel-cta {
    margin-top: 1rem !important;
    padding: 1rem !important;
  }

  .carousel-cta .cta-button {
    padding: 0.9rem 1.5rem !important;
    font-size: 0.95rem !important;
  }
}

@media (max-width: 480px) {
  .accordion-header {
    padding: 0.7rem 0.8rem;
    gap: 0.5rem;
  }

  .accordion-header span {
    font-size: 0.85rem;
  }

  .accordion-header i:first-child {
    font-size: 1rem;
    width: 18px;
  }

  .accordion-content li {
    font-size: 0.8rem;
    gap: 0.6rem;
  }

  .accordion-content li i {
    font-size: 0.8rem;
    width: 14px;
  }

  .modal-cta-section {
    margin-top: 1.5rem;
    padding-top: 1.2rem;
  }

  .carousel-cta {
    margin-top: 0.8rem !important;
    padding: 0.8rem !important;
  }

  .carousel-cta .cta-button {
    padding: 0.8rem 1.2rem !important;
    font-size: 0.9rem !important;
  }

  .carousel-cta .modal-note {
    font-size: 0.8rem !important;
  }
}

/* ===== MODAL LAYOUT AND COLUMNS ===== */
/* Two-column layout for modal */
.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 1.5rem;
  min-height: 400px;
}

.modal-left-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.modal-right-column {
  display: flex;
  flex-direction: column;
}

/* Enhanced carousel for column layout */
.modal-carousel {
  flex: 0 0 auto;
  width: 100%;
  height: 280px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  border: 2px solid rgba(245, 181, 9, 0.3);
}

.carousel-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.carousel-slider img {
  width: 100%;
  height: 280px;
  flex-shrink: 0;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Enhanced basic info section */
.modal-basic-info {
  background: linear-gradient(
    135deg,
    rgba(245, 181, 9, 0.05),
    rgba(243, 163, 228, 0.05)
  );
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(245, 181, 9, 0.2);
}

.modal-basic-info h3 {
  margin: 0 0 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--dark-gray);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--vibrant-yellow);
  padding-bottom: 0.5rem;
}

.modal-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--vibrant-yellow);
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.info-item i {
  font-size: 1.2rem;
  color: var(--vibrant-yellow);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.info-item div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.info-label {
  font-size: 0.85rem;
  color: var(--modern-gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  font-size: 1.1rem;
  color: var(--dark-gray);
  font-weight: 600;
}

/* Enhanced CTA section in left column */
.modal-left-column .modal-cta-section {
  margin-top: auto;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--vibrant-yellow), var(--youth-pink));
  border-radius: 12px;
  text-align: center;
  color: white;
}

.modal-left-column .modal-cta-section .cta-button {
  background: white;
  color: var(--dark-gray);
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
}

.modal-left-column .modal-cta-section .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.modal-left-column .modal-note {
  margin: 0.5rem 0 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

/* Responsive adjustments for column layout */
@media (max-width: 1024px) {
  .modal-body {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.2rem;
  }

  .modal-carousel {
    height: 240px;
  }

  .carousel-slider img {
    height: 240px;
  }

  .modal-basic-info h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    max-width: 500px;
    margin: 8% auto;
  }

  .modal-body {
    padding: 1rem;
    gap: 1rem;
  }

  .modal-carousel {
    height: 200px;
  }

  .carousel-slider img {
    height: 200px;
  }

  .modal-basic-info {
    padding: 1.2rem;
  }

  .modal-basic-info h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .info-item {
    padding: 0.8rem;
  }

  .info-item i {
    font-size: 1rem;
  }

  .info-value {
    font-size: 1rem;
  }

  .modal-left-column .modal-cta-section {
    padding: 1.2rem;
  }
}

@media (max-width: 480px) {
  .modal-content {
    width: 98%;
    margin: 5% auto;
  }

  .modal-body {
    padding: 0.8rem;
    gap: 0.8rem;
  }

  .modal-carousel {
    height: 180px;
  }

  .carousel-slider img {
    height: 180px;
  }

  .modal-basic-info {
    padding: 1rem;
  }

  .modal-basic-info h3 {
    font-size: 1.1rem;
  }

  .info-item {
    padding: 0.7rem;
  }

  .info-label {
    font-size: 0.8rem;
  }

  .info-value {
    font-size: 0.95rem;
  }

  .modal-left-column .modal-cta-section {
    padding: 1rem;
  }

  .modal-left-column .modal-cta-section .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* ===== MODAL LAYOUT - SINGLE COLUMN ===== */
/* Single column layout for modal to prevent overflow */
.modal-body {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  max-height: calc(85vh - 60px);
  overflow-y: auto;
}

.modal-single-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 100%;
}

/* 1. Enhanced carousel section */
.modal-carousel {
  width: 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  border: 2px solid rgba(245, 181, 9, 0.3);
  flex-shrink: 0;
}

.carousel-slider img {
  width: 100%;
  height: 300px;
  flex-shrink: 0;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* 2. Enhanced basic info section */
.modal-basic-info {
  background: linear-gradient(
    135deg,
    rgba(245, 181, 9, 0.05),
    rgba(243, 163, 228, 0.05)
  );
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(245, 181, 9, 0.2);
  flex-shrink: 0;
}

.modal-basic-info h3 {
  margin: 0 0 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--dark-gray);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--vibrant-yellow);
  padding-bottom: 0.5rem;
}

.modal-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--vibrant-yellow);
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.info-item i {
  font-size: 1.2rem;
  color: var(--vibrant-yellow);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.info-item div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.info-label {
  font-size: 0.85rem;
  color: var(--modern-gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  font-size: 1.1rem;
  color: var(--dark-gray);
  font-weight: 600;
}

/* 3. Modal accordion - stays the same but with max-height control */
.modal-accordion {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  margin: 0;
}

/* 4. Enhanced CTA section at bottom */
.modal-cta-section {
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--vibrant-yellow), var(--youth-pink));
  border-radius: 12px;
  text-align: center;
  color: white;
  flex-shrink: 0;
  margin-top: auto;
}

.modal-cta-section .cta-button {
  background: white;
  color: var(--dark-gray);
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
}

.modal-cta-section .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.modal-note {
  margin: 0.5rem 0 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

/* Remove old column styles that are no longer needed */
.modal-left-column,
.modal-right-column {
  display: none;
}

/* Responsive adjustments for single column layout */
@media (max-width: 1024px) {
  .modal-carousel {
    height: 280px;
  }

  .carousel-slider img {
    height: 280px;
  }

  .modal-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .modal-basic-info h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    max-width: 600px;
    margin: 8% auto;
    max-height: 85vh;
  }

  .modal-body {
    padding: 1.2rem;
    gap: 1.2rem;
  }

  .modal-carousel {
    height: 240px;
  }

  .carousel-slider img {
    height: 240px;
  }

  .modal-basic-info {
    padding: 1.2rem;
  }

  .modal-basic-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .modal-info-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .info-item {
    padding: 0.8rem;
  }

  .info-item i {
    font-size: 1rem;
  }

  .info-value {
    font-size: 1rem;
  }

  .modal-cta-section {
    padding: 1.2rem;
  }
}

@media (max-width: 480px) {
  .modal-content {
    width: 98%;
    margin: 5% auto;
    max-height: 90vh;
  }

  .modal-body {
    padding: 1rem;
    gap: 1rem;
  }

  .modal-carousel {
    height: 200px;
  }

  .carousel-slider img {
    height: 200px;
  }

  .modal-basic-info {
    padding: 1rem;
  }

  .modal-basic-info h3 {
    font-size: 1.2rem;
  }

  .modal-info-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .info-item {
    padding: 0.8rem;
    gap: 0.8rem;
  }

  .info-label {
    font-size: 0.8rem;
  }

  .info-value {
    font-size: 0.95rem;
  }

  .modal-cta-section {
    padding: 1rem;
  }

  .modal-cta-section .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* ===== MODAL LAYOUT - 3 COLUMNS HORIZONTAL ===== */
/* Three-column horizontal layout for modal */
.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
  max-height: calc(85vh - 60px);
  overflow-y: auto;
  min-height: 500px;
}

/* Column 1: Images */
.modal-image-column {
  display: flex;
  flex-direction: column;
}

.modal-carousel {
  width: 100%;
  height: 320px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  border: 2px solid rgba(245, 181, 9, 0.3);
  flex-shrink: 0;
}

.carousel-slider img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}

/* Column 2: Description and Basic Info */
.modal-description-column {
  display: flex;
  flex-direction: column;
}

.modal-basic-info {
  background: linear-gradient(
    135deg,
    rgba(245, 181, 9, 0.05),
    rgba(243, 163, 228, 0.05)
  );
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(245, 181, 9, 0.2);
  height: fit-content;
}

.modal-basic-info h3 {
  margin: 0 0 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--dark-gray);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--vibrant-yellow);
  padding-bottom: 0.5rem;
}

.modal-info-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--vibrant-yellow);
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.info-item i {
  font-size: 1.2rem;
  color: var(--vibrant-yellow);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.info-item div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.info-label {
  font-size: 0.8rem;
  color: var(--modern-gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  font-size: 1rem;
  color: var(--dark-gray);
  font-weight: 600;
}

/* CTA section in description column */
.modal-description-column .modal-cta-section {
  margin-top: 1.5rem;
  padding: 1.2rem;
  background: linear-gradient(135deg, var(--vibrant-yellow), var(--youth-pink));
  border-radius: 12px;
  text-align: center;
  color: white;
}

.modal-description-column .modal-cta-section .cta-button {
  background: white;
  color: var(--dark-gray);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.modal-description-column .modal-cta-section .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.modal-description-column .modal-note {
  margin: 0.5rem 0 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

/* Column 3: Accordion Sections */
.modal-sections-column {
  display: flex;
  flex-direction: column;
}

.modal-accordion {
  flex: 1;
  overflow-y: auto;
  margin: 0 0 1rem 0;
}

/* CTA section at bottom of sections column */
.modal-sections-column .modal-cta-section {
  padding: 1.2rem;
  background: linear-gradient(135deg, var(--vibrant-yellow), var(--youth-pink));
  border-radius: 12px;
  text-align: center;
  color: white;
  flex-shrink: 0;
}

.modal-sections-column .modal-cta-section .cta-button {
  background: white;
  color: var(--dark-gray);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.modal-sections-column .modal-cta-section .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.modal-sections-column .modal-note {
  margin: 0.5rem 0 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
}

/* CTA section styles removed - now using carousel-cta */

/* Responsive adjustments for 3-column layout */
@media (max-width: 1200px) {
  .modal-body {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "image description"
      "sections sections";
  }

  .modal-image-column {
    grid-area: image;
  }

  .modal-description-column {
    grid-area: description;
  }

  .modal-sections-column {
    grid-area: sections;
  }

  .modal-carousel {
    height: 280px;
  }

  .carousel-slider img {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    max-width: 600px;
    margin: 8% auto;
    max-height: 85vh;
  }

  .modal-body {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.2rem;
  }

  .modal-carousel {
    height: 240px;
  }

  .carousel-slider img {
    height: 240px;
  }

  .modal-basic-info {
    padding: 1.2rem;
  }

  .modal-basic-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .info-item {
    padding: 0.8rem;
  }

  .info-item i {
    font-size: 1rem;
  }

  .info-value {
    font-size: 0.95rem;
  }

  .modal-accordion {
    max-height: 300px;
    overflow-y: auto;
    margin: 0 0 1rem 0;
  }

  .modal-sections-column .modal-cta-section {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .modal-content {
    width: 98%;
    margin: 5% auto;
    max-height: 90vh;
  }

  .modal-body {
    padding: 1rem;
    gap: 1rem;
  }

  .modal-carousel {
    height: 200px;
  }

  .carousel-slider img {
    height: 200px;
  }

  .modal-basic-info {
    padding: 1rem;
  }

  .modal-basic-info h3 {
    font-size: 1.2rem;
  }

  .info-item {
    padding: 0.8rem;
    gap: 0.8rem;
  }

  .info-label {
    font-size: 0.75rem;
  }

  .info-value {
    font-size: 0.9rem;
  }

  .modal-accordion {
    max-height: 250px;
    margin: 0 0 1rem 0;
  }

  .modal-sections-column .modal-cta-section {
    padding: 1rem;
  }

  .modal-sections-column .modal-cta-section .cta-button {
    padding: 0.8rem 1.2rem;
    font-size: 0.85rem;
  }
}

/* ===== ROOM PHOTO WATERMARK ===== */
.room-card {
  background: white;
  border-radius: var(--element-radius);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border: 1px solid var(--accent-gray);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.room-card .image-container {
  position: relative;
  overflow: hidden;
}

.room-photo-disclaimer {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.room-photo-disclaimer i {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
}

.room-photo-disclaimer span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.room-card:hover .room-photo-disclaimer {
  opacity: 0.7;
}

/* Responsive styles for watermark */
@media (max-width: 768px) {
  .room-photo-disclaimer {
    top: 6px;
    left: 6px;
    padding: 0.3rem 0.6rem;
    font-size: 0.65rem;
  }

  .room-photo-disclaimer i {
    font-size: 0.7rem;
  }

  .room-photo-disclaimer span {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .room-photo-disclaimer {
    top: 4px;
    left: 4px;
    padding: 0.25rem 0.5rem;
    font-size: 0.6rem;
    border-radius: 4px;
  }

  .room-photo-disclaimer i {
    font-size: 0.65rem;
  }

  .room-photo-disclaimer span {
    font-size: 0.6rem;
  }
}

/* ===== MODAL IMPROVEMENTS FOR MOBILE ===== */

/* Close button - visible and accessible */
.modal-close-button {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.modal-close-button:hover {
  background: rgba(245, 181, 9, 0.9);
  transform: scale(1.1);
}

.modal-close-button:active {
  transform: scale(0.95);
}

/* Improved carousel controls for mobile */
.modal-carousel .prev,
.modal-carousel .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.modal-carousel .prev:hover,
.modal-carousel .next:hover {
  background: rgba(245, 181, 9, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.modal-carousel .prev:active,
.modal-carousel .next:active {
  transform: translateY(-50%) scale(0.95);
}

.modal-carousel .prev {
  left: 10px;
}

.modal-carousel .next {
  right: 10px;
}

/* Touch-friendly accordion headers */
.accordion-header {
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
  border: 1px solid rgba(245, 181, 9, 0.3);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 60px; /* Ensure minimum touch target size */
  position: relative;
}

/* Better touch targets for mobile */
@media (max-width: 768px) {
  .modal-close-button {
    width: 45px;
    height: 45px;
    font-size: 22px;
    top: 10px;
    right: 10px;
  }

  .modal-carousel .prev,
  .modal-carousel .next {
    width: 55px;
    height: 55px;
    font-size: 20px;
  }

  .modal-carousel .prev {
    left: 15px;
  }

  .modal-carousel .next {
    right: 15px;
  }

  .accordion-header {
    min-height: 65px;
    padding: 1.2rem 1.5rem;
  }

  .accordion-header span {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .modal-close-button {
    width: 50px;
    height: 50px;
    font-size: 24px;
    top: 8px;
    right: 8px;
  }

  .modal-carousel .prev,
  .modal-carousel .next {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }

  .modal-carousel .prev {
    left: 8px;
  }

  .modal-carousel .next {
    right: 8px;
  }

  .accordion-header {
    min-height: 70px;
    padding: 1.5rem 1.2rem;
  }

  .accordion-header span {
    font-size: 0.95rem;
  }

  /* Improved modal scroll for very small screens */
  .modal-content {
    max-height: 95vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  }

  .modal-body {
    padding: 1rem 0.8rem;
  }

  /* Better spacing for accordion content */
  .accordion-content li {
    padding: 1rem 0.8rem;
    min-height: 48px; /* Minimum touch target */
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  /* Improved CTA button for mobile */
  .modal-cta-section .cta-button {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    min-height: 48px;
    width: 100%;
    border-radius: 8px;
    font-weight: 600;
  }
}

/* Swipe gesture indicators for carousel */
.carousel-swipe-hint {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  z-index: 100;
  display: none;
}

@media (max-width: 768px) {
  .carousel-swipe-hint {
    display: block;
  }
}

/* Improved modal overlay for mobile */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 10px;
}

/* Prevent body scroll when modal is open */
body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* ===== RENTED ROOM STYLES ===== */

/* Status badge for rented rooms */
.room-status-badge {
  position: absolute;
  bottom: 10px;
  left: 1.5rem;
  background: rgba(45, 55, 72, 0.9);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 20;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 8px rgba(45, 55, 72, 0.4);
  width: fit-content;
  flex-shrink: 0;
  white-space: nowrap;
}

.room-status-badge i {
  font-size: 0.8rem;
}

/* Rented room card styling */
.room-card.room-rented {
  opacity: 0.95;
  filter: grayscale(0.1);
  position: relative;
  cursor: default !important;
}

/* Prevent image clicks in rented rooms */
.room-card.room-rented .image-container,
.room-card.room-rented .image-container img {
  cursor: default !important;
  pointer-events: none;
}

/* Re-enable pointer events for the waitlist button */
.room-card.room-rented .waitlist-btn {
  pointer-events: auto;
}

.room-card.room-rented .image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  border-radius: inherit;
  pointer-events: none;
  z-index: 15;
}

.room-card.room-rented:hover {
  transform: none;
  box-shadow: none;
}

/* Waitlist button styling */
.waitlist-btn {
  background: linear-gradient(135deg, #6c5ce7, #a29bfe) !important;
  color: white !important;
  border: none !important;
}

/* Shimmer effect removed - keeping it simple */

.waitlist-btn:hover {
  background: linear-gradient(135deg, #5a4fcf, #8b7ed8) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
}

.waitlist-btn i {
  margin-right: 0.5rem;
}

/* Responsive adjustments for status badge */
@media (max-width: 768px) {
  .room-status-badge {
    bottom: 8px;
    left: 1rem;
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
    border-radius: 6px;
    width: fit-content;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .room-status-badge i {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .room-status-badge {
    bottom: 6px;
    left: 0.8rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.65rem;
    border-radius: 4px;
    letter-spacing: 0.3px;
    width: fit-content;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .room-status-badge i {
    font-size: 0.65rem;
  }

  .waitlist-btn {
    font-size: 0.85rem;
    padding: 0.7rem 1rem;
  }
}
