@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

@font-face {
  font-family: 'Gragio';
  src: url('./Assets/Gragio-Font/Gragio.woff2') format('woff2'),
       url('./Assets/Gragio-Font/Gragio.woff') format('woff'),
       url('./Assets/Gragio-Font/Gragio.ttf') format('truetype'),
       url('./Assets/Gragio-Font/Gragio.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Waking';
  src: url('./Assets/waking-luxury-font/Waking.woff2') format('woff2'),
       url('./Assets/waking-luxury-font/Waking.woff') format('woff'),
       url('./Assets/waking-luxury-font/Waking.ttf') format('truetype'),
       url('./Assets/waking-luxury-font/Waking.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Volkga';
  src: url('./Assets/volkga/Volkga DEMO.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* Coming Soon Modal Styles - Fullscreen Version */
.coming-soon-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.coming-soon-modal.hidden {
  opacity: 0;
  pointer-events: none;
}

.coming-soon-content {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  animation: modalFadeIn 0.8s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-logo {
  position: fixed;
  top: -70px;
  left: 0;
  z-index: 10001;
  padding: 1em 3em;
}

.modal-logo img {
  height: 320px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.continue-btn {
  margin-top: 5px;
  background: #7FB0BD;
  border: 2px solid #7FB0BD;
  border-radius: 30px;
  padding: 16px 40px;
  font-family: 'Waking', 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-transform: none;
  letter-spacing: 0.5px;
}

.continue-btn:hover {
  background: #5A9AAA;
  border-color: #5A9AAA;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.coming-soon-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.coming-soon-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.coming-soon-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgba(74, 60, 50, 0.12);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(127, 176, 189, 0.4);
  padding: 60px 80px 50px 80px;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  max-width: 90%;
  z-index: 10;
}

.coming-soon-text h2 {
  font-family: 'Gragio', 'Playfair Display', serif;
  font-size: 4.5rem;
  color: #FFFFFF;
  margin: 0 0 30px 0;
  font-weight: 600;
  letter-spacing: 3px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.coming-soon-text p {
  font-family: 'Waking', 'Inter', sans-serif;
  font-size: 1.8rem;
  color: #FFFFFF;
  margin: 0 0 20px 0;
  line-height: 1.6;
  font-weight: 400;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.coming-soon-text .opening-date {
  font-family: 'Gragio', 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #FFFFFF;
  font-weight: 600;
  margin-top: 30px;
  letter-spacing: 2px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .modal-logo {
    left: 0;
    padding: 1.5em;
  }

  .modal-logo img {
    height: 200px;
  }

  .coming-soon-text {
    padding: 40px 30px 35px 30px;
    max-width: 85%;
  }

  .coming-soon-text h2 {
    font-size: 3rem;
  }

  .coming-soon-text p {
    font-size: 1.3rem;
  }

  .coming-soon-text .opening-date {
    font-size: 1.6rem;
  }

  .continue-btn {
    font-size: 1rem;
    padding: 14px 32px;
    margin-top: 5px;
  }
}

@media (max-width: 480px) {
  .modal-logo {
    left: 0;
    padding: 1em;
  }

  .modal-logo img {
    height: 150px;
  }

  .coming-soon-text {
    padding: 30px 20px 25px 20px;
    max-width: 90%;
  }

  .coming-soon-text h2 {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }

  .coming-soon-text p {
    font-size: 1.1rem;
  }

  .coming-soon-text .opening-date {
    font-size: 1.3rem;
    margin-top: 20px;
  }

  .continue-btn {
    font-size: 0.95rem;
    padding: 12px 28px;
    margin-top: 5px;
  }
}

/* Welcome Overlay Styles */
.welcome-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
}

.welcome-content {
  background: rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 60px 50px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  margin: 0 20px;
}

.welcome-logo {
  margin-bottom: 30px;
}

.welcome-content .welcome-logo p {
  font-family: 'Gragio', 'Playfair Display', serif;
  font-size: 3.25rem !important;
  color: white;
  margin: 0;
  font-weight: 600;
  letter-spacing: 2px;
}

.welcome-content p {
  font-family: 'Waking', 'Inter', sans-serif;
  font-size: 1.3rem;
  color: white;
  margin: 0 0 40px 0;
  line-height: 1.6;
  font-weight: 500;
}

.music-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.music-btn {
  background: #BBDCE5;
  border: 2px solid #BBDCE5;
  border-radius: 16px;
  padding: 16px 32px;
  font-family: 'Waking', 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #4A3C32;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 140px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.music-btn:hover {
  background: #9FC6D1;
  border-color: #9FC6D1;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .welcome-content {
    padding: 40px 30px;
    margin: 0 15px;
  }

  .welcome-content .welcome-logo p {
    font-size: 3.25rem !important;
  }

  .music-buttons {
    flex-direction: column;
    align-items: center;
  }

  .music-btn {
    width: 100%;
    max-width: 200px;
  }
}

/* Nature Font Family */
@font-face {
  font-family: 'Nature';
  src: url('./Assets/Nature/ZT Nature - WEB OT/ZTNature-Regular.woff2') format('woff2'),
       url('./Assets/Nature/ZT Nature - WEB OT/ZTNature-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Nature';
  src: url('./Assets/Nature/ZT Nature - WEB OT/ZTNature-Bold.woff2') format('woff2'),
       url('./Assets/Nature/ZT Nature - WEB OT/ZTNature-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Nature';
  src: url('./Assets/Nature/ZT Nature - WEB OT/ZTNature-SemiBold.woff2') format('woff2'),
       url('./Assets/Nature/ZT Nature - WEB OT/ZTNature-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Nature';
  src: url('./Assets/Nature/ZT Nature - WEB OT/ZTNature-Medium.woff2') format('woff2'),
       url('./Assets/Nature/ZT Nature - WEB OT/ZTNature-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Nature';
  src: url('./Assets/Nature/ZT Nature - WEB OT/ZTNature-Thin.woff2') format('woff2'),
       url('./Assets/Nature/ZT Nature - WEB OT/ZTNature-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
  min-width: 320px;
  width: 100%;
}

body.window-open {
  overflow: hidden;
  height: 100vh;
}

nav {
  position: fixed;
  top: -70px;
  left: 0;
  width: 100vw;
  padding: 1em 3em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1001;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  padding: 3em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1001;
}

.logo img {
  height: 320px;
  width: auto;
}

.logo img:hover {
  opacity: 0.8;
}

.nav-items {
  display: flex;
  gap: 2rem;
}

.nav-items p {
  font-family: "Gragio", "Nature", "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
  letter-spacing: 1px;
  background: rgba(154, 166, 178, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 8px 20px;
  border-radius: 25px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.nav-items p:hover {
  color: #fff;
  background: rgba(154, 166, 178, 0.5);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}


.nosotros-btn {
  font-family: "Gragio", "Nature", "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 1px;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s ease;
  background: rgba(154, 166, 178, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 8px 20px;
  border-radius: 25px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.nosotros-btn:hover {
  color: #fff;
  background: rgba(154, 166, 178, 0.5);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.slider-counter {
  display: flex;
}

.slider-counter p,
.slider-counter > div {
  width: 24px;
  display: flex;
  justify-content: center;
}

.slider-counter p {
  opacity: 0.35;
  color: #fff;
  font-size: 15px;
  font-weight: lighter;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.social-icon svg {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-2px);
}

.facebook-icon:hover {
  color: #1877F2;
}

.instagram-icon:hover {
  color: #E4405F;
}

.count {
  position: relative;
  height: 18px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.count p {
  position: absolute;
  transform: translateY(0px);
  font-size: 16px;
  line-height: 1;
  will-change: transform;
  opacity: 1;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slider {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  will-change: clip-path;
}

.slide-bg-img:after,
.slide-bg-img::after {
  display: none !important;
  content: none !important;
  background: none !important;
  opacity: 0 !important;
}

.slide-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}


.slide-main-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25%;
  height: 50%;
  z-index: 2;
}

.slide-main-img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  will-change: clip-path;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background: transparent;
}

.slide-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 8px;
}

.slide-copy {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 2;
}

.slide-title {
  position: relative;
  width: 500px;
  height: 60px;
  margin-bottom: 0.25em;
  overflow: hidden;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slide-title h1 {
  position: absolute;
  color: #fff;
  font-size: 48px;
  font-weight: 600;
  font-family: "Gragio", "Nature", "Playfair Display", serif;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1;
  transform: translateY(0px);
  will-change: transform;
}

.slide-description {
  position: relative;
  width: 500px;
  height: 30px;
  overflow: hidden;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.slide-description p {
  position: absolute;
  color: #fff;
  font-size: 18px;
  font-family: "Waking", "Nature", serif;
  font-weight: 100;
  opacity: 0.9;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1;
  transform: translateY(0px);
  will-change: transform;
}

/* Info Section */
.info-section {
  width: 100vw;
  height: 100vh;
  background-color: #FBF6E9;
  display: flex;
  margin: 0;
  padding: 0;
  opacity: 0;
  animation: infoFadeIn 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes infoFadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.info-section.fade-out {
  animation: infoFadeOut 1s ease-in forwards;
}

@keyframes infoFadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

.info-col {
  flex: 1;
}

.info-col:first-of-type {
  flex: 1;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100vh;
}

.info-col:last-of-type {
  flex: 1;
  padding: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin-left: 50%;
}

.info-content p {
  font-weight: 100;
  font-size: 2rem;
  line-height: 1.4;
  color: #4A3C32;
  font-family: "Waking", "Nature", "Playfair Display", serif;
  max-width: 600px;
  text-align: center;
  word-spacing: normal;
  letter-spacing: normal;
  margin-bottom: 1.2rem;
}

.info-content p:last-child {
  margin-bottom: 0;
}

.info-col img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

@media (max-width: 900px) {
  .slide-main-img {
    width: 65%;
    height: 45%;
  }

  .slide-copy {
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .slide-title h1 {
    font-size: 38px;
  }

  .info-section {
    flex-direction: column;
    min-height: 100vh;
    padding: 0;
  }

  .info-col:first-of-type {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .info-col:last-of-type {
    margin-left: 0;
    width: 100%;
    padding: 2em 1em;
  }

  .info-col img {
    height: 40vh;
    margin: 0;
    padding: 0;
    object-fit: cover;
  }

  .info-content p {
    font-size: 1.4rem;
    padding: 1em;
    text-align: center;
    color: #4A3C32;
    line-height: 1.5;
  }
}

/* Landscape Mobile Orientation */
@media (max-width: 900px) and (orientation: landscape) {
  .slide-main-img {
    width: 40%;
    height: 60%;
  }

  .slide-copy {
    top: 50%;
    left: 75%;
  }

  .sticky-card-img {
    height: 60vh;
  }

  .sticky-card-img img {
    height: 60vh;
  }
}

/* Touch Optimizations */
@media (hover: none) and (pointer: coarse) {
  /* Increase touch targets for mobile */
  .nav-items p,
  .nosotros-btn,
  .sticky-card-button button,
  .btn-book,
  .btn-includes,
  .package-book-btn,
  .package-includes-btn {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Remove hover effects on touch devices */
  .nav-items p:hover,
  .nosotros-btn:hover {
    background: none;
    transform: none;
  }

  /* Add active states for better feedback */
  .nav-items p:active,
  .sticky-card-button button:active,
  .btn-book:active,
  .btn-includes:active {
    opacity: 0.8;
    transform: scale(0.98);
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  /* Navigation for Small Screens */
  nav {
    padding: 1em;
  }

  .logo img {
    height: 200px;
  }

  .nav-items p {
    font-size: 1rem;
    padding: 5px 12px;
  }

  /* Footer for Small Screens */
  footer {
    padding: 1em;
  }

  .nosotros-btn {
    font-size: 0.95rem;
    padding: 5px 12px;
  }

  .footer-right {
    gap: 12px;
  }

  .slider-counter p,
  .slider-counter > div {
    font-size: 14px;
  }

  .social-icon {
    width: 20px;
    height: 20px;
  }

  /* Main Slider Small Screens */
  .slide-main-img {
    width: 90%;
    height: 35%;
  }

  .slide-title h1 {
    font-size: 28px;
  }

  .slide-description p {
    font-size: 14px;
  }

  /* Info Section Small Screens - inherits from 768px breakpoint */
  .info-content p {
    font-size: 1.1rem;
  }

  /* Sticky Cards Small Screens */
  .sticky-card-img,
  .sticky-card:nth-child(even) .sticky-card-img {
    height: 35vh;
  }

  .sticky-card-img img {
    height: 35vh;
  }

  .sticky-card-header {
    font-size: 1.5rem;
  }

  .sticky-card-copy-title p {
    font-size: 1rem;
  }

  .sticky-card-copy-description p {
    font-size: 0.95rem;
  }

  .sticky-card-button button {
    padding: 8px 20px;
    font-size: 1rem;
  }
}

/* Catalogue Styles */
.catalogue-section {
  width: 100vw;
  min-height: 100vh;
  background-color: #FBF6E9;
  padding: 0;
  overflow-x: hidden;
}

.sticky-cards-container {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #FBF6E9;
}


.sticky-card {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #FBF6E9;
  color: #333;
  padding: 0;
  display: flex;
  gap: 0;
  will-change: transform;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sticky-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: var(--after-opacity, 0);
  transition: opacity 0.1s ease;
  pointer-events: none;
  z-index: 2;
  border-radius: 20px 20px 0 0;
}

.sticky-card-index {
  display: none;
}

.sticky-card-content {
  flex: 1;
  height: 100vh;
  display: flex;
}

.sticky-card-content-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  gap: 0;
}

.sticky-card-header {
  font-family: "Gragio", "Nature", "Volkga", "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: #B87C4C;
  margin: 0 0 1.5rem 0;
  width: 100%;
  line-height: 1.2;
  text-align: center;
}

.sticky-card-img {
  flex: 1;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100vh;
  border-radius: 20px;
  overflow: hidden;
}


.sticky-card-img img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  border-radius: 20px;
}

/* Odd cards (1st, 3rd, 5th, 7th) - Image left, text right (default) */
.sticky-card:nth-child(odd) .sticky-card-img {
  left: 0;
}

.sticky-card:nth-child(odd) .sticky-card-copy {
  margin-left: 50%;
  margin-right: 0;
}

/* Even cards (2nd, 4th, 6th) - Image right, text left */
.sticky-card:nth-child(even) .sticky-card-img {
  left: 50% !important;
  right: 0;
}

.sticky-card:nth-child(even) .sticky-card-copy {
  margin-left: 0 !important;
  margin-right: 50% !important;
}

/* Last card (Eventos Especiales) - Override to match odd cards layout */
.sticky-card:last-child .sticky-card-img {
  left: 0 !important;
  right: auto !important;
}

.sticky-card:last-child .sticky-card-copy {
  margin-left: 50% !important;
  margin-right: 0 !important;
}

.sticky-card-copy {
  flex: 1;
  padding: 2em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  gap: 1.5rem;
  position: absolute;
  width: 50%;
  top: 0;
  z-index: 3;
}

.sticky-card-copy-title {
  width: 100%;
  text-align: center;
}

.sticky-card-copy-description {
  width: 100%;
  max-width: 600px;
  text-align: center;
}

.sticky-card-copy-title p {
  font-family: "Gragio", "Nature", "Volkga", "Cormorant Garamond", serif;
  text-transform: uppercase;
  font-weight: 100;
  color: #4A3C32;
  font-size: 1.4rem;
}

.sticky-card-copy-description p {
  font-family: "Waking", "Montserrat", sans-serif;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #4A3C32;
  margin: 0 0 1rem 0;
  text-align: center;
  max-width: 100%;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  overflow: visible;
  white-space: normal;
  word-spacing: normal;
}

.sticky-card-button {
  position: relative;
  top: 0;
}

/* Desktop: equal spacing for Ver paquetes button (8px top and bottom) */
.sticky-card:not(:first-child) .sticky-card-copy-description p {
  margin-bottom: 8px !important;
}

.sticky-card:not(:first-child) .sticky-card-button {
  margin-top: 0;
  margin-bottom: 0;
  top: 0;
}

.sticky-card:not(:first-child) .scroll-arrows-container {
  margin-top: 8px !important;
}

/* Mobile: center button between description and arrows with equal spacing */
@media (max-width: 768px) {
  .sticky-card:not(:first-child) .sticky-card-button {
    margin-top: 7px !important;
    margin-bottom: 7px !important;
    top: 0 !important;
  }
}

.scroll-arrows-container {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 10;
}

.scroll-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 12px;
  background-color: transparent;
  border-radius: 50%;
  border: 2px solid transparent;
}

/* Remove bounce animation from all arrows by default */
.scroll-arrow {
  animation: none;
}

/* Only first card's down arrow bounces */
.sticky-card:first-child .scroll-arrow {
  animation: bounce 2s infinite;
}

/* Only last card's up arrow bounces (not down arrow) */
.sticky-card:last-child .scroll-arrow-up {
  animation: bounce 2s infinite;
}

.scroll-arrow:hover {
  transform: scale(1.15);
}

.scroll-arrow:hover svg {
  color: #1a0f08;
  stroke-width: 3.5;
}

.scroll-arrow:active {
  transform: scale(1.05);
}

.scroll-arrow:active svg {
  color: #0a0503;
  stroke-width: 4;
}

.scroll-arrow svg {
  width: 36px;
  height: 36px;
  color: #4A3C32;
  stroke-width: 2.5;
  pointer-events: none;
  transition: all 0.3s ease;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.sticky-card-button button {
  font-family: "Gragio", "Nature", "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 12px 30px;
  background: #BBDCE5;
  color: #4A3C32;
  border: 2px solid #BBDCE5;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(0);
  opacity: 0;
}

.sticky-card-button button:hover {
  background: #9FC6D1;
  border-color: #9FC6D1;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Secondary Page Navigation Styles */
.catalogue-section nav .nav-items p,
.info-section nav .nav-items p {
  font-family: "Gragio", "Nature", "Cormorant Garamond", serif;
  color: #B87C4C !important;
  background: transparent !important;
  border: 2px solid #B87C4C !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.catalogue-section nav .nav-items p:hover,
.info-section nav .nav-items p:hover {
  background: #B87C4C !important;
  color: #fff !important;
  border-color: #B87C4C !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  transform: translateY(-2px) !important;
}

/* Logo image styles apply to all sections */

@media (max-width: 1024px) {
  .sticky-card {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .sticky-card-index {
    flex: 1;
    padding-top: 4rem;
  }

  .sticky-card-index h1 {
    font-size: 4rem;
  }

  .sticky-card-content {
    padding-top: 0;
  }

  .sticky-card-content-wrapper {
    width: 100%;
  }

  .sticky-card-header {
    font-size: 2rem;
    width: 100%;
  }

  .sticky-card-copy {
    flex-direction: column;
    gap: 0.5rem;
  }

  .sticky-card-copy-description p {
    font-size: 1rem;
  }
}

/* Mobile specific styles */
@media (max-width: 768px) {
  /* Info Section Mobile Layout */
  .info-section {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
  }

  .info-col:first-of-type {
    flex: 0 0 40vh;
    height: 40vh;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
  }

  .info-col:last-of-type {
    flex: 1;
    height: 60vh;
    width: 100%;
    margin: 0;
    padding: 1.5em 0.75em;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FBF6E9;
  }

  .info-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .info-content {
    width: 100%;
    max-width: none;
    padding: 0 0.5em;
    margin-top: -5em;
  }

  .info-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    padding: 0;
    margin: 0;
  }
  /* Navigation Mobile Styles */
  nav {
    padding: 1.5em;
  }

  .logo img {
    height: 200px;
  }

  .nav-items p {
    font-size: 1rem;
    padding: 6px 14px;
  }

  /* Footer Mobile Styles */
  footer {
    padding: 1.5em;
  }

  .nosotros-btn {
    font-size: 1rem;
    padding: 6px 14px;
  }

  /* Main Slider Mobile Styles */
  .slide-main-img {
    width: 80%;
    height: 40%;
  }

  .slide-copy {
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .slide-title {
    width: 350px !important;
    height: 45px !important;
    margin: 0 auto !important;
    margin-bottom: 0.25em !important;
    position: relative !important;
  }

  .slide-title h1 {
    font-size: 28px !important;
    position: absolute !important;
    left: 50% !important;
    white-space: nowrap !important;
    width: max-content !important;
    transform: translateX(-50%) translateY(0px);
  }

  .slide-description {
    width: 350px !important;
    height: 25px !important;
    margin: 0 auto !important;
    position: relative !important;
  }

  .slide-description p {
    font-size: 16px !important;
    position: absolute !important;
    left: 50% !important;
    white-space: nowrap !important;
    width: max-content !important;
    transform: translateX(-50%) translateY(0px);
  }

  /* Sticky Cards Mobile */
  .sticky-card {
    flex-direction: column;
    height: 100vh;
    display: flex;
  }

  .sticky-card-content-wrapper {
    flex-direction: column;
    display: flex;
    height: 100%;
  }

  .sticky-card-img,
  .sticky-card:nth-child(even) .sticky-card-img,
  .sticky-card:last-child .sticky-card-img {
    position: relative;
    left: 0 !important;
    right: auto !important;
    width: 100%;
    height: 35vh;
    flex: 0 0 35vh;
    margin: 0;
    order: 1;
    border-radius: 20px;
    overflow: hidden;
  }

  .sticky-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  .sticky-card-copy,
  .sticky-card:nth-child(even) .sticky-card-copy,
  .sticky-card:last-child .sticky-card-copy {
    position: relative !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    height: 65vh;
    flex: 1;
    width: 100%;
    padding: 0.5em 1em;
    order: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 30px;
  }

  .sticky-card-header {
    font-size: 1.8rem;
  }

  .sticky-card-copy-title p {
    font-size: 1.1rem;
  }

  /* Make all text description containers consistent size */
  .sticky-card-copy-description p {
    font-size: 1rem;
    padding: 0;
    max-width: 65%;
    margin: 0 auto;
    text-align: center;
  }

  .sticky-card .sticky-card-copy-description {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .sticky-card-button {
    text-align: center;
  }

  .sticky-card:not(:first-child) .sticky-card-button {
    margin-top: 7px !important;
    margin-bottom: 7px !important;
    top: 0 !important;
  }

  .sticky-card-button button {
    padding: 10px 24px;
    font-size: 1.1rem;
  }
}

/* Text and Button Animations */
@keyframes fadeInButton {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Text elements will be controlled by JavaScript scroll animations */
.sticky-card-copy-title p,
.sticky-card-copy-description p,
.sticky-card-header {
  /* Initial hidden state - will be animated by ScrollTrigger */
}

/* Ensure word spans maintain integrity */
.word {
  display: inline-block;
  white-space: nowrap;
  word-break: keep-all;
  margin-right: 0.3em;
}

.word:last-child {
  margin-right: 0;
}

/* FIX FOR CENTERED TEXT - Cards 2-7 should match Eventos Especiales (card 8) */
.sticky-card:nth-child(2) .sticky-card-copy-description,
.sticky-card:nth-child(3) .sticky-card-copy-description,
.sticky-card:nth-child(4) .sticky-card-copy-description,
.sticky-card:nth-child(5) .sticky-card-copy-description,
.sticky-card:nth-child(6) .sticky-card-copy-description,
.sticky-card:nth-child(7) .sticky-card-copy-description {
  display: block !important;
  width: 600px !important;
  max-width: 600px !important;
}

.sticky-card:nth-child(2) .sticky-card-copy-description p,
.sticky-card:nth-child(3) .sticky-card-copy-description p,
.sticky-card:nth-child(4) .sticky-card-copy-description p,
.sticky-card:nth-child(5) .sticky-card-copy-description p,
.sticky-card:nth-child(6) .sticky-card-copy-description p,
.sticky-card:nth-child(7) .sticky-card-copy-description p {
  width: 600px !important;
  max-width: 100% !important;
  margin: 0 !important;
}

/* Package Window Styles */
.package-window {
  position: fixed;
  top: 0;
  right: -50vw;
  width: 50vw;
  height: 100vh;
  background-color: #FBF6E9;
  z-index: 2000;
  transition: right 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.package-window.active {
  right: 0;
}

/* Container 1 - Package/Service Info: Move 20px LOWER */
#packageWindow {
  top: 20px;
}

/* Container 2 - Custom Calendar: Same size as package window (50% viewport) */
#calendlyWindow {
  width: 50vw;
  height: 100vh;
  top: 0;
}

/* Make only the title "Selecciona una fecha" smaller */
#calendlyWindow .package-window-header {
  padding: 1.5rem 2rem;
}

#calendlyWindow .package-window-header h2 {
  font-size: 1.8rem;
}

/* Make calendar BIGGER - fill the full 50% space */
#calendlyWindow .package-window-body {
  padding: 2rem 3rem;
  overflow-y: auto;
  background-color: #FBF6E9;
}

/* Scale up the calendar content to fill more space */
#calendlyWindow #calendlyContent {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

#calendlyWindow #calendlyContent iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 700px !important;
  transform: scale(1.0);
  transform-origin: top center;
}

/* Desktop only - center iframe content properly */
@media (min-width: 769px) {
  #calendlyWindow #calendlyContent iframe {
    position: relative;
    left: 0;
    top: 0;
    margin: 0 auto;
    display: block;
    transform: scale(1.0) !important;
    transform-origin: top center;
    min-height: 100vh !important;
  }

  #calendlyWindow .package-window-body {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    padding: 0 !important;
  }
}

.package-window-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #FBF6E9;
}

.package-window-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #FBF6E9;
}

.package-window-header h2 {
  font-family: "Gragio", "Nature", "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #B87C4C;
  margin: 0;
}

.close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: #666;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0;
  line-height: 1;
}

.close-btn:hover {
  color: #B87C4C;
}

.package-window-body {
  flex: 1;
  padding: 2rem;
  overflow-y: auto;
  background-color: #FBF6E9;
}

/* Modern Glassmorphism Card Styles */
.modern-card {
  position: relative;
  background: #FBF6E9;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modern-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

.card-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  filter: blur(4px) brightness(0.55);
  opacity: 0.8;
  z-index: 0;
}

.card-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  color: white;
}

.card-header {
  margin-bottom: 1.5rem;
}

.card-title {
  font-family: "Gragio", "Nature", "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.75rem 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.card-description {
  font-family: "Waking", "Montserrat", sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.card-info {
  display: flex;
  gap: 1.5rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Waking", "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.info-icon {
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
}

.card-buttons {
  display: flex;
  gap: 12px;
  margin-top: 2rem;
}

.btn-book {
  flex: 1;
  background: #9FC6D1;
  color: #000000;
  border: 2px solid #9FC6D1;
  padding: 14px 24px;
  font-family: "Waking", "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-book:hover {
  background: #7FB0BD;
  border-color: #7FB0BD;
  color: #000000;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.btn-includes {
  flex: 1;
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #B87C4C;
  padding: 14px 24px;
  font-family: "Waking", "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-includes:hover {
  background: #B87C4C;
  color: #FFFFFF;
  border-color: #B87C4C;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.includes-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0.0, 0.2, 1), opacity 0.2s ease-out;
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  will-change: max-height;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.includes-content.active {
  max-height: none;
  padding: 1.25rem;
  overflow-y: visible;
  opacity: 1;
}

.includes-content p {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Waking", "Montserrat", sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Single Column Layout for All Screen Sizes */
#packageContent {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Mobile Layout */
@media (max-width: 768px) {
  .modern-card {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .card-content {
    padding: 1.5rem;
  }

  .card-title {
    font-size: 1.5rem;
  }

  .card-buttons {
    flex-direction: column;
    gap: 8px;
  }

  .card-info {
    flex-direction: column;
    gap: 1rem;
  }
}

.package-item {
  background-color: #fbf6e9;
  border-radius: 12px;
  padding: 0;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 0.5px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.package-includes-btn {
  background: transparent;
  color: #B87C4C;
  border: 2px solid #B87C4C;
  padding: 10px 24px;
  font-family: "Waking", "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 1rem;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.package-includes-btn:hover {
  background: #B87C4C;
  color: white;
  border-color: #B87C4C;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.package-includes-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  margin-top: 1rem;
  padding: 0 1rem;
  background: none;
  border-radius: 8px;
}

.package-includes-content.active {
  max-height: 500px;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.package-banner {
  background: linear-gradient(135deg, #FBF6E9 0%, #FBF6E9 100%);
  height: 80px;
  width: 100%;
}

.package-content {
  padding: 1.5rem;
}

.package-item h3 {
  font-family: "Gragio", "Nature", "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #B87C4C;
  margin: 0 0 0.5rem 0;
}

.package-item p {
  font-family: "Waking", "Montserrat", sans-serif;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #4A3C32;
  margin: 0 0 1rem 0;
}

.package-price {
  font-family: "Waking", "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #4A3C32;
  margin-top: 1rem;
  line-height: 1.6;
}

.package-price-label {
  font-weight: 700;
  color: #4A3C32;
  display: inline-block;
  margin-bottom: 0.3rem;
}

.package-duration {
  font-family: "Waking", "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #4A3C32;
  margin: 0.5rem 0;
}

.package-book-btn {
  background: transparent;
  color: #B87C4C;
  border: 2px solid #B87C4C;
  padding: 10px 24px;
  font-family: "Waking", "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.package-book-btn:hover {
  background: #B87C4C;
  color: white;
  border-color: #B87C4C;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .package-window {
    width: 100vw;
    height: 100vh;
    top: 0;
    right: -100vw;
  }

  /* Adjust "Ver paquetes" window position */
  #packageWindow .package-window-content {
    padding-top: 0;
    margin-top: -22px;
  }

  #packageWindow .package-window-header {
    padding-top: 1rem;
  }

  /* Mobile: Calendar window same as package window */
  #calendlyWindow {
    width: 100vw;
    right: -100vw;
    height: 100vh;
  }

  /* Show only close button on mobile, hide title */
  #calendlyWindow .package-window-header {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10000;
    background: transparent;
    border: none;
    padding: 1rem;
    width: auto;
  }

  #calendlyWindow .package-window-header h2 {
    display: none;
  }

  #calendlyWindow .close-btn {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }

  /* Make iframe fullscreen on mobile */
  #calendlyWindow .package-window-body {
    padding: 0;
    overflow-y: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: transparent;
  }

  #calendlyWindow #calendlyContent {
    width: 100%;
    max-width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #calendlyWindow iframe {
    width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh !important;
    margin: 0;
    display: block;
    transform: none;
    border: none;
  }

  .package-window-header {
    padding: 1.5rem;
  }

  .package-window-header h2 {
    font-size: 1.5rem;
  }

  .package-window-body {
    padding: 1rem;
  }

  .modern-card {
    margin-left: 0;
    margin-right: 0;
    border-radius: 16px;
  }

  .card-content {
    padding: 1.25rem 0.5rem;
  }

  .card-title {
    font-size: 1.4rem;
  }

  .card-description {
    font-size: 0.9rem;
  }

  .card-buttons {
    flex-direction: row;
    gap: 10px;
  }

  .btn-book,
  .btn-includes {
    padding: 12px 18px;
    font-size: 0.9rem;
  }

  .package-item h3 {
    font-size: 1.2rem;
  }

  .package-item p {
    font-size: 1.3rem;
  }

  /* Tablet optimizations (iPad) - Keep smooth */
  .includes-content {
    transition: max-height 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: max-height;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  .includes-content.active {
    max-height: none;
    overflow-y: visible;
  }

  /* Remove heavy effects on tablet for better performance */
  .includes-content {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.15) !important;
  }

  /* Faster button response on tablet */
  .btn-includes {
    transition: background 0.15s ease, transform 0.1s ease;
  }
}

/* Ultra-aggressive optimizations for phones only */
@media (max-width: 480px) {
  /* Text descriptions - consistent with tablets */
  .sticky-card-copy-description p {
    padding: 0;
    max-width: 65%;
    margin: 0 auto;
  }

  .sticky-card .sticky-card-copy-description {
    padding: 0;
  }

  /* Instant animation on phones - no lag */
  .includes-content {
    transition: max-height 0.1s linear !important;
    transform: translate3d(0, 0, 0) !important;
    -webkit-transform: translate3d(0, 0, 0) !important;
    will-change: max-height !important;
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
    perspective: 1000px !important;
    -webkit-perspective: 1000px !important;
  }

  .includes-content.active {
    max-height: none !important;
    overflow-y: visible !important;
  }

  /* Remove ALL heavy effects on phones */
  .includes-content {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: rgba(255, 255, 255, 0.2) !important;
    box-shadow: none !important;
    border: none !important;
  }

  /* Ultra-fast button on phones */
  .btn-includes {
    transition: none !important;
  }

  .btn-includes:active {
    transform: scale(0.98);
  }

  /* Remove card hover effects on phones */
  .modern-card {
    transition: none !important;
  }

  .modern-card:hover {
    transform: none !important;
  }
}

/* Calendar Container Styles (SimplyBook & Calendly) */
#calendlyContent {
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  height: 100%;
  width: 100%;
}

/* SimplyBook Widget Container */
#sbWidget {
  width: 100%;
  min-height: 600px;
  height: 100%;
}

/* Hide Google Translate in SimplyBook Widget */
.goog-te-banner-frame,
.goog-te-gadget,
#google_translate_element,
.skiptranslate,
iframe[src*="translate.google.com"],
body > .skiptranslate {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* Remove top spacing caused by Google Translate */
body {
  top: 0 !important;
}

/* Hide language selector in SimplyBook iframe */
#sbWidget iframe {
  margin-top: 0 !important;
}

#calendlyContent .calendly-inline-widget {
  position: relative !important;
  overflow: visible !important;
}

#calendlyContent iframe {
  min-height: 800px !important;
  width: 100% !important;
}

/* Custom Cursor Styles */
body, html, * {
  cursor: auto !important;
}

#customCursor {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  will-change: transform;
}

#customCursor img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
  body, html, * {
    cursor: auto !important;
  }

  #customCursor {
    display: none !important;
  }
}

