/* ========================================
   CSS VARIABLES & ROOT STYLES
   ======================================== */
:root {
  --primary-color: #2d5016;     /* Deep Forest Green */
  --secondary-color: #4a7c59;   /* Mountain Pine */
  --tertiary-color: #6b8e23;    /* Olive Drab */
  --accent-color: #a3c9a8;      /* Soft Sage Mist */
  --earth-brown: #a0522d;       /* Sienna */
  --cabin-wood: #deb887;        /* Burlywood (light wood) */
  --fog-white: #f0f4f0;         /* Misty Light */
  --cloud-white: #ffffff;
  --text-dark: #0f2413;  /* Darker shade for better contrast against light backgrounds */
  --text-light: #8b8b8b; /* Softer gray, to help maintain readability */
  --sunset-orange-vivid: #ff6b3b;     /* Bold Sunset Orange */
  --sunset-pink-bright: #ff5c8a;     /* Bold Pink Sky */
  --sunset-yellow-bright: #ffd166;   /* Vibrant Golden Yellow */
  --sunset-amber: #f08c00;           /* Fiery Amber */
  --sunset-yellow-bright: #ffe94d;  /* Vivid Lemon Yellow - brighter and clean */
  --sunset-yellow-bold:   #ffeb3b;  /* Google Yellow - intense but balanced */
  --green-lime: #a4de02;             /* Energetic Lime */
  --link-color: #4a7c59;
  --link-hover: #7eb217;

  --transition: all 0.3s ease;
  --transition2: all 0.15s ease;
  --shadow-soft: 0 4px 15px rgba(45, 80, 22, 0.1);
  --shadow-hover: 0 8px 25px rgba(45, 80, 22, 0.2);

  /* Typography */
  --font-primary: "Playfair Display", serif;
  --font-secondary: "Source Sans Pro", sans-serif;
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --theme-bg-cream: #f8f5f0;
  --theme-bg-cream-darker: #443418;
  --verde-oliva-brillante: #5c8a1f; /* Slightly brighter olive green, still earthy but more lively */
  --verde-fresco: #6fa82a;         /* Fresh and inviting, like young foliage or garden green */
  --verde-equilibrado: #709e33;    /* Balanced tone for buttons and accents */
  --verde-suave: #89b94e;          /* Brighter and softer green, still natural, very friendly */
  --verde-cabana: #7faa36;   
}

/* ========================================
   BASE STYLES & RESET
   ======================================== */
html {
  scroll-behavior: auto;
}

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

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  background-color: var(--fog-white);
}

a {
  color: var(--link-color);
  text-decoration: none;
  transition: var(--transition2);
}

a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

p {
  font-size: 1.125rem; 
  line-height: 1.9em;
  color: #333;
  margin-bottom: 1rem;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
  max-width: 1600px !important;
  padding: 0 30px;
}

.mb-60 {
  margin-bottom: 60px;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
  padding: 5px 0;
}

.header.scrolled {
  background-color: #222;
  box-shadow: var(--shadow-soft);
  padding: 0.5rem 0;
}

.logo {
  height: 120px;
  position: relative;
  top: 15px;
  transition: var(--transition);
  filter: drop-shadow(2px 2px 4px rgba(45, 80, 22, 0.3));
}

.header.scrolled .logo {
  height: 60px;
  top: 0;
}

.navbar-nav .nav-link {
  color: var(--cloud-white);
  font-weight: 400;
  margin: 0 1rem;
  position: relative;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover {
  text-decoration: none;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -0;
  left: 0;
  width: 0;
  height: 1px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-nav .nav-link {
  color: #ffffff !important;
  font-size: 1.7rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 10px 2rem;
  transition: all 0.3s ease;
  position: relative;
  display: block;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
}

.navbar-nav .nav-link:hover {
  color: var(--verde-cabana) !important;
  text-decoration: none;
}

.navbar-toggler {
  color: transparent !important;
  border-color: transparent;
  z-index: 10000; /* Must be higher than .navbar-fullscreen-menu (9999) */
  position: relative;
  border: none;
  background: transparent;
  padding: 0;
  position: relative;
  width: 40px; /* Fixed width for the button */
  height: 40px; /* Fixed height for the button */
  display: flex;
  justify-content: center;
  align-items: center;
}

.navbar-toggler .navbar-toggler-icon {
  background-image: url('data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"%3e%3cpath stroke="white" stroke-linecap="round" stroke-miterlimit="10" stroke-width="2" d="M4 7h22M4 15h22M4 23h22" /%3e%3c/svg%3e'); /* White hamburger icon */
}

.header {
  transition: transform 0.4s ease-in-out;
  will-change: transform;
}

.header.hidden {
  transform: translateY(-100%);
}

/* Fullscreen Menu */
.navbar-fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;

  /* Hidden state */
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.navbar-fullscreen-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.navbar-fullscreen-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.navbar-fullscreen-menu li {
  transform: translateY(40px);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

/* When open: staggered entrance effect */
.navbar-fullscreen-menu.open li {
  opacity: 1;
  transform: translateY(0);
}

.navbar-fullscreen-menu.open li:nth-child(1) {
  transition-delay: 0.1s;
}
.navbar-fullscreen-menu.open li:nth-child(2) {
  transition-delay: 0.2s;
}
.navbar-fullscreen-menu.open li:nth-child(3) {
  transition-delay: 0.3s;
}
.navbar-fullscreen-menu.open li:nth-child(4) {
  transition-delay: 0.4s;
}
.navbar-fullscreen-menu.open li:nth-child(5) {
  transition-delay: 0.5s;
}

.navbar-fullscreen-menu a {
  color: white;
  font-size: 2rem;
  text-decoration: none;
}

.navbar-fullscreen-menu a:hover {
  color: #f0c040;
}

body.menu-open {
  overflow: hidden;
}

/* Navbar Icons */
.navbar-icon-open, .navbar-icon-close {
    color: #f8f5f0; /* Set color for icons */
    font-size: 24px; /* Ensure icons have the same size */
    position: absolute;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out; /* Smooth fade and transformation */
}

/* Initial state - hamburger icon visible */
.navbar-icon-open {
    opacity: 1;
    display: block;
}

.navbar-icon-close {
    opacity: 0;
    display: block;
}

.navbar-toggler:hover .navbar-icon-open,
.navbar-toggler:hover .navbar-icon-close {
  color: #fff !important;
}

/* When the menu is open, hide the open icon */
.navbar-toggler.open .navbar-icon-open {
    opacity: 0; /* Fade out the open icon */
}

/* Show close icon when the menu is open */
.navbar-toggler.open .navbar-icon-close {
    opacity: 1; /* Fade in the close icon */
}

/* Optional: Hover effect */
.navbar-icon-open:hover, .navbar-icon-close:hover {
    color: #ffffff; /* Change color on hover */
    transform: scale(1.1); /* Slightly enlarge the icon on hover */
}

/* Align navbar menu items to the right when expanded */
.navbar-nav {
  margin-left: auto;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  width: 100%;
}

.navbar-nav .nav-item {
  text-align: right;
  margin: 5px 0;
  text-align: center;
}

/* ========================================
   BUTTONS
   ======================================== */
/* Bootstrap .btn-primary customizations */
.btn-primary {
  background-color: transparent !important;
  border-color: #fff;
  border-radius: 0 !important;
  border-width: 1px;
  font-size: 16px !important;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background: var(--verde-oliva-brillante) !important;
  border-color: var(--verde-oliva-brillante) !important;
  text-decoration: none !important;
}

.btn-reserva {
  padding: 4px 20px;
}

.btn-primary2 {
  background-color: var(--verde-oliva-brillante) !important;
  border-color: var(--verde-oliva-brillante);
  border-radius: 0 !important;
  border-width: 1px;
  font-size: 16px !important;
  color: white;
}

.btn-primary2:hover, .btn-primary2:focus, .btn-primary2:active {
  background: var(--verde-oliva-brillante) !important;
  border-color: var(--verde-oliva-brillante) !important;
  text-decoration: none !important;
}

.btn-slide-reservar {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  background-color: #ffffff;
  color: #000000;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-slide-reservar:hover {
  background-color: #f0f0f0;
  color: #000000;
}

.btn-reservar {
    display: inline-block;
    background-color: #6B8E23;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-reservar:hover {
    background-color: #5A7A1F;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 142, 35, 0.3);
}

.btn-reservar:active {
    transform: translateY(0);
}

.btn-casa-item {
  position: absolute;
  bottom: -16px;
  left: 70px;
  padding: 10px 25px;
  font-size: 18px;
}

.btn-casa-item:hover {
  color: white;
}

/* ========================================
   SECTIONS & LAYOUT
   ======================================== */
/* About Section */
.about-section {
  padding: 180px 20px 220px 20px;
  background: #f8f5f0;
  position: relative;
}

.about-section .container {
  position: relative;
}

.about-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  text-align: center;
  font-family: 'Sarabun';
  font-size: 20px;
  line-height: 1.3em;
  font-weight: lighter;
  font-style: normal;
  color: #0b0b0a;
  text-align: left;
}

.about-title {
  font-family: 'Bebas Neue';
  font-size: 120px;
  text-transform: uppercase;
  font-weight: 400;
  font-style: normal;
  color: #0b0b0a;
  position: relative;
  top: 25px;
}

.about-subtitle {
  font-family: 'Sarabun';
  font-size: 50px;
  font-weight: lighter;
  font-style: normal;
  line-height: 1em;
  color: #0b0b0a;
}

/* Services Section */
.services-wrapper {
  background: #f8f5f0;
  padding: 130px 0 200px 0;
}

.services-section {
  position: relative;
}

.section-title {
  font-family: var(--font-primary);
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 75px;
  color: #0e0e0e;
  position: relative;
  padding-bottom: 1rem;
  font-family: 'Prata', serif; /* O cambia a 'Libre Baskerville', 'Lora', etc. */
  font-size: 2.5rem;
  font-weight: 400;
  margin-top: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--secondary-color);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

.section-description::before,
.section-description::after {
  content: '';
  display: inline-block;
  width: 140px;
  height: 1px;
  position: relative;
  top: -5px;
  background-color: #000; /* or any color */
}

.section-description::before {
  margin-right: 20px;
}

.section-description::after {
  margin-left: 20px;
}

.section-description {
  margin-bottom: 40px;
}

/* Contenido Section */
.contenido-section {
  padding: 380px 25px 420px 25px;
  background: #FBF9F7;
  position: relative;
}

.contenido-section .container {
  position: relative;
}

.contenido-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  text-align: center;
}

.contenido-title {
  font-family: 'Bebas Neue';
  font-size: 100px;
  text-transform: uppercase;
  font-weight: 400;
  font-style: normal;
  color: #0b0b0a;
  position: relative;
  top: 0;
}

/* ========================================
   CASA ITEMS (CABINS)
   ======================================== */
.row-casas {
  --bs-gutter-y: 80px;
  --bs-gutter-x: 80px;
}

.casa-item {
    position: relative;
    height: 800px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.casa-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.casa-item-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.casa-item-link:hover {
    text-decoration: none;
    color: inherit;
}

.casa-item-img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.casa-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.casa-item:hover .casa-item-img {
    transform: scale(1.035);
}

.casa-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(43,135,218,0) 0%, #000000 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px 30px;
    color: white;
}

.casa-content {
    width: 100%;
    color: white;
}

.casa-main-title {
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.casa-item-line {
    width: 90%;
    height: 1px;
    background-color: white;
    margin: 15px 0 40px 0;
    transition: width 0.3s ease;
}

.casa-item:hover .casa-item-line {
    width: 95%;
}

.casa-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0 0 25px 0;
    opacity: 0.9;
    letter-spacing: 0.3px;
}

/* ========================================
   SWIPER SLIDESHOW
   ======================================== */
.swiper-slideshow {
  width: 100%;
  height: 100vh;
}

.swiper-slide-slideshow {
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: saturate(1.3) contrast(1.1) brightness(1.05);
  z-index: 0;
}

.slide-content {
  position: relative;
  z-index: 1; /* keep text above background */
  color: white;
  padding: 50px;
  display: flex;
  justify-content: center;
  font-family: var(--font-family);
}

.slide-content.center {
  text-align: center;
  justify-content: center;
}

.slide-content.right {
  text-align: right;
  justify-content: end;
}

.slide-content h2 {
  margin: 0.5rem 0;
  color: #ffffff;
  line-height: 1.2;
}

.slide-content p {
  font-size: 1.1rem;
  color: #f0f0f0;
  line-height: 1.6;
  margin-bottom: 45px;
}

.slide-content-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100vh; /* or adjust as needed */
  padding: 2rem;
}

.slide-content-inner.slide-content-bottom {
  justify-content: end;
  padding-bottom: 25vh;
}

.slide-title {
  font-size: 25px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: 'Bebas Neue';
}

.slide-line {
  width: 400px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3); /* whitish-gray line */
  margin: 30px 0;
}

.slide-subtitle {
  font-size: 18px;
  font-weight: lighter;
  color: #ffffff;
  margin-bottom: 2rem;
}

/* ========================================
   GALLERY
   ======================================== */
.gallery-wrapper {
    width: 100vw;
    background-color: #143420; /* Slightly darker, richer green */
    padding: 60px 20px;
}

.gallery-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.gallery-col {
    flex: 1;
    min-width: 250px;
    max-width: 32%;
}

.container-gallery {
    max-width: 2000px !important;
    padding: 0 80px;
}

/* Swiper Container */
.swiper-gallery {
    background-color: #143420;
    padding: 160px 0 180px 0;
    position: relative;
}

.swiper-slide-gallery {
    display: flex;
    justify-content: center;
}

.swiper-slide-gallery.layout-1 .row,
.swiper-slide-gallery.layout-2 .row {
    justify-content: center;
}

.swiper-slide-gallery.layout-3 .row {
    justify-content: space-between;
}

/* Image Card */
.gallery-image-item {
    text-align: center;
    max-width: 100%;
    padding: 15px;
    background-color: #1d3c28;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-image-item:hover {
    transform: scale(1.0);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    cursor: pointer;
}

.gallery-image-wrapper {
    overflow: hidden;
    aspect-ratio: 4 / 3;
    transition: transform 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    margin-bottom: 15px;
}

.gallery-image-wrapper:hover img {
    transform: scale(1.05) rotate(0.8deg);
}

/* Image title */
.gallery-image-title {
    margin-top: 0.5rem;
    font-size: 14px;
    padding: 15px 0;
    text-transform: uppercase;
    color: #f8f5f0;
    font-weight: 300;
    letter-spacing: 0.4px;
}

/* Swiper arrows */
.swiper-button-next-gallery,
.swiper-button-prev-gallery {
    color: #f8f5f0;
    background-color: rgba(0, 0, 0, 0.4);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    z-index: 10;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* Arrow for the "previous" button */
.swiper-button-prev-gallery::after {
    content: '←'; /* Left arrow */
    font-size: 22px;
}

/* Arrow for the "next" button */
.swiper-button-next-gallery::after {
    content: '→'; /* Right arrow */
    font-size: 22px;
}

.swiper-button-prev-gallery {
    left: 15px;
}

.swiper-button-next-gallery {
    right: 15px;
}

/* ========================================
   GALLERY RESPONSIVE STYLES
   ======================================== */

/* Tablet - 2 images per slide */
@media (max-width: 991px) and (min-width: 768px) {
    .swiper-slide-gallery.layout-3 .row {
        justify-content: center;
    }
    
    .container-gallery {
        padding: 0 60px; /* More padding to give space for arrows */
    }
    
    .gallery-image-item {
        padding: 12px;
    }
    
    .gallery-image-title {
        font-size: 13px;
        padding: 12px 0;
    }
    
    .swiper-button-prev-gallery {
        left: 15px; /* More space from the edge */
    }
    
    .swiper-button-next-gallery {
        right: 15px; /* More space from the edge */
    }
}

/* Mobile - Keep 2+1 layout pattern but smaller */
@media (max-width: 767px) {
    .swiper-gallery {
        padding: 80px 0 100px 0;
    }
    
    .container-gallery {
        padding: 0 60px; /* More padding to give space for arrows */
    }
    
    /* Force the same layout pattern on mobile */
    .swiper-slide-gallery.layout-3 .row {
        justify-content: space-between;
    }
    
    .swiper-slide-gallery.layout-2 .row,
    .swiper-slide-gallery.layout-1 .row {
        justify-content: center;
    }
    
    /* Adjust column sizes for mobile while keeping the pattern */
    .swiper-slide-gallery.layout-3 .col-12 {
        flex: 0 0 48%; /* Two images side by side */
        max-width: 48%;
    }
    
    .swiper-slide-gallery.layout-3 .col-12:last-child {
        flex: 0 0 100%; /* Last image takes full width */
        max-width: 100%;
        margin-top: 15px;
    }
    
    /* Make the bottom image match the width of the top container */
    .swiper-slide-gallery.layout-3 .col-12:last-child .gallery-image-item {
        max-width: 96%; /* Match the combined width of the two top images */
        margin: 0 auto; /* Center it */
    }
    
    .gallery-image-item {
        padding: 8px;
    }
    
    .gallery-image-title {
        font-size: 11px;
        padding: 8px 0;
    }
    
    .swiper-button-prev-gallery,
    .swiper-button-next-gallery {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .swiper-button-prev-gallery {
        left: 15px; /* More space from the edge */
    }
    
    .swiper-button-next-gallery {
        right: 15px; /* More space from the edge */
    }
}

/* ========================================
   PARALLAX EFFECTS
   ======================================== */
.parallax-section {
  position: relative;
  overflow: hidden;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.parallax-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Ensure the parallax effect works properly */
.parallax-section[data-stellar-background-ratio] {
  background-attachment: scroll;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background-color: #111;
  color: white;
  padding: 40px 20px 0 20px;
  font-family: 'Bebas Neue';
}

.footer-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 35px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.footer-subtitle::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #7faa36;
  opacity: 0.8;
}

.footer-link {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #7faa36;
}

.footer-social {
  color: #ffffff;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  margin-right: 15px;
}

.footer-social:hover {
  color: #7faa36;
  background-color: rgba(127, 170, 54, 0.1);
  transform: translateY(-2px);
}

.footer-contact i {
  color: #7faa36;
}

/* Thin gray line for column separator */
.border-gray {
  border-color: rgba(255, 255, 255, 0.2) !important; /* light grayish white */
}

/* Optional: spacing inside columns to prevent text hugging the border */
.footer-column {
  padding-right: 25px;
  padding-left: 25px;
}

.footer-middle-col {
  border-left: 1px solid #5a5a5a;
  padding-left: 40px;
}

.footer-right-col {
  border-left: 1px solid #5a5a5a;
  padding-left: 40px;
}

.footer-address {
  margin-bottom: 35px;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  opacity: 0.95;
}

.footer-logo {
  max-width: 120px;
  transition: all 0.3s ease;
}

/* Footer enhancements */
.footer-left-col {
  padding-right: 30px;
}

.footer-contact {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.footer-contact i {
  width: 20px;
  text-align: center;
  margin-right: 12px;
}

.footer-link {
  font-size: 1rem;
  font-weight: 400;
}

/* Mobile layout for footer */
@media (max-width: 767px) {
  .footer {
    padding: 30px 15px 0 15px;
  }
  
  .footer .row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 20px;
  }
  
  .footer-left-col,
  .footer-middle-col,
  .footer-right-col {
    flex: 1;
    padding: 0 8px;
  }
  
  .footer-middle-col,
  .footer-right-col {
    border-left: 1px solid #5a5a5a;
    padding-left: 15px;
  }
  
  .footer-subtitle {
    font-size: 1rem;
    margin-bottom: 15px !important;
  }
  
  .footer-subtitle::after {
    width: 20px;
    height: 1px;
    bottom: -5px;
  }
  
  .footer-address {
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.4;
  }
  
  .footer-contact {
    margin-bottom: 8px;
  }
  
  .footer-contact i {
    margin-right: 8px;
    font-size: 0.9rem;
  }
  
  .footer-link {
    font-size: 0.9rem;
  }
  
  .footer-social {
    font-size: 1.2rem;
    width: 35px;
    height: 35px;
    margin-right: 10px;
  }
  
  .footer-logo {
    max-width: 80px;
    margin-bottom: 15px;
  }
}

/* Mobile layout for footer - vertical rows */
@media (max-width: 600px) {
  .footer {
    padding: 25px 15px 0 15px;
  }
  
  .footer .row {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-left-col,
  .footer-middle-col,
  .footer-right-col {
    width: 100%;
    padding: 0;
    margin-bottom: 0;
    text-align: center;
  }
  
  .footer-middle-col,
  .footer-right-col {
    border-left: none;
    border-top: 1px solid #5a5a5a;
    padding-top: 25px;
    padding-left: 0;
  }
  
  .footer-subtitle {
    font-size: 1.1rem;
    margin-bottom: 20px !important;
    text-align: center;
  }
  
  .footer-subtitle::after {
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    bottom: -8px;
  }
  
  .footer-address {
    font-size: 1rem;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.5;
  }
  
  .footer-contact {
    justify-content: center;
    margin-bottom: 12px;
  }
  
  .footer-contact i {
    margin-right: 10px;
    font-size: 1rem;
  }
  
  .footer-link {
    font-size: 1rem;
  }
  
  .footer-social {
    font-size: 1.4rem;
    width: 40px;
    height: 40px;
    margin: 0 10px;
  }
  
  .footer-right-col .d-flex {
    justify-content: center;
  }
  
  .footer-logo {
    max-width: 100px;
    margin: 0 auto 20px auto;
    display: block;
  }
}

/* Footer logo responsive sizing */
@media (max-width: 991px) {
  .footer-logo {
    max-width: 110px;
  }
}

@media (max-width: 900px) {
  .footer-logo {
    max-width: 100px;
  }
}

@media (max-width: 800px) {
  .footer-logo {
    max-width: 90px;
  }
}

@media (max-width: 700px) {
  .footer-logo {
    max-width: 85px;
  }
}

@media (max-width: 650px) {
  .footer-logo {
    max-width: 80px;
  }
}

@media (max-width: 600px) {
  .footer-logo {
    max-width: 75px;
  }
}

@media (max-width: 550px) {
  .footer-logo {
    max-width: 70px;
  }
}

@media (max-width: 500px) {
  .footer-logo {
    max-width: 65px;
  }
}

@media (max-width: 479px) {
  .footer-logo {
    max-width: 60px;
  }
}

/* ========================================
   WHATSAPP WIDGET
   ======================================== */
.whatsapp-widget {
  position: fixed;
  bottom: 40px;
  right: 40px;
  font-family: sans-serif;
  z-index: 9999;
}

.whatsapp-icon {
  background-color: #25D366; /* WhatsApp green */
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-icon i {
  color: white;
  font-size: 35px;
  position: relative;
  top: -1px;
}

.whatsapp-icon:hover {
  text-decoration: none;
}

.whatsapp-popover {
  position: absolute;
  top: -16px;
  right: 85px;
  background: white;
  color: #000;
  border-radius: 8px;
  padding: 18px 25px 0px 25px;
  width: 210px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  display: block;
}

.whatsapp-popover::after {
  content: "";
  position: absolute;
  bottom: 25px;  /* Adjust based on where you want the triangle */
  right: -10px;  /* Move it outside the box to the right */
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid white; /* The triangle color */
}

.whatsapp-popover p {
  font-size: 12px !important;
}

.whatsapp-popover .close-popover {
  position: absolute;
  left: -30px;
  top: 0px;
  background: #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  text-align: center;
  line-height: 22px;
  font-size: 12px;
  cursor: pointer;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-popover .close-popover i {
  color: #333;
}

.whatsapp-popover a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.whatsapp-popover a:hover {
  text-decoration: underline;
}

/* ========================================
   SOCIAL ICONS
   ======================================== */
.social-icon-style {
  color: white !important;
  position: relative;
  top: 1px;
  transition: color 0.3s ease;
}

.social-icon-style:hover {
  color: #ccc !important;
}

/* Facebook specific hover color */
.social-icon-facebook:hover {
  color: #1877f2 !important;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.6);
}

/* Instagram specific hover color */
.social-icon-instagram:hover {
  color: #e4405f !important;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.6);
}

/* ========================================
   SCROLLBAR
   ======================================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--fog-white);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* ========================================
   KEYFRAMES ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* ========================================
   RESPONSIVE MEDIA QUERIES
   ======================================== */

/* Large screens */
@media (max-width: 1400px) {
  .about-subtitle {
    font-size: 40px !important;
    line-height: 1.3em !important;
  }
}

/* ========================================
   CABINS RESPONSIVE ADJUSTMENTS
   ======================================== */

/* Screens from 1200px to 991px - maintain 2 cabins per row */
@media (max-width: 1199px) and (min-width: 992px) {
  .row-casas .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .casa-item {
    height: 700px;
  }
  
  .btn-casa-item {
    left: 50px;
    bottom: -20px;
    padding: 12px 30px;
    font-size: 16px;
  }
  
  .row-casas {
    --bs-gutter-y: 80px;
    --bs-gutter-x: 40px;
  }
}

/* Screens from 991px to 479px - maintain 2 cabins per row */
@media (max-width: 991px) and (min-width: 480px) {
  .row-casas .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .casa-item {
    height: 600px;
  }
  
  .casa-item-overlay {
    padding: 35px 25px;
  }
  
  .casa-main-title {
    font-size: 1.8rem;
  }
  
  .btn-casa-item {
    left: 40px;
    bottom: -18px;
    padding: 10px 25px;
    font-size: 15px;
  }
  
  .row-casas {
    --bs-gutter-y: 60px;
    --bs-gutter-x: 30px;
  }
}

/* Screens 479px and below - show 1 cabin per row */
@media (max-width: 479px) {
  .row-casas .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .casa-item {
    height: 400px;
    margin-bottom: 40px;
  }
  
  .casa-item-overlay {
    padding: 30px 20px;
  }
  
  .casa-main-title {
    font-size: 1.6rem;
  }
  
  .casa-item-line {
    width: 70%;
  }
  
  .btn-casa-item {
    left: 30px;
    bottom: 10px;
    padding: 8px 20px;
    font-size: 14px;
  }
  
  .row-casas {
    --bs-gutter-y: 40px;
    --bs-gutter-x: 20px;
  }
}

/* Desktop */
@media (max-width: 1199px) {
  .about-title {
    font-size: 90px !important;
    top: 0 !important;
  }

  .about-subtitle {
    font-size: 30px !important;
    line-height: 1.4em !important;
  }

  .contenido-title {
    font-size: 80px !important;
  }
}

/* Small desktop */
@media (max-width: 1160px) {
  .slide-content h2 {
    font-size: 2.5rem;
  }

  .slide-content h4 {
    font-size: 1.25rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 3rem;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .section-title {
    font-size: 2.5rem;
  }

  p {
    font-size: 1rem; /* 16px */
  }

  .navbar-nav .nav-link {
    margin: 0.5rem 0;
  }

  .navbar-nav .nav-item {
    text-align: right;
    padding-right: 0px;
  }
  
  .navbar-nav .nav-item .nav-link {
    padding: 0 !important;
    margin: 5px 0 !important;
    font-size: 1.4rem;
  }

  /* Fix fullscreen menu for tablet and below */
  .navbar-fullscreen-menu a {
    font-size: 1.8rem;
    padding: 15px 0;
    display: block;
    width: 100%;
    text-align: center;
    white-space: nowrap;
  }

  .navbar-fullscreen-menu ul {
    width: 100%;
    max-width: 90%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .navbar-fullscreen-menu li {
    margin: 10px 0;
    width: 100%;
    text-align: center;
  }

  .slide-content {
    padding: 30px;
  }

  .slide-content h2 {
    font-size: 2rem;
  }

  .slide-content h4 {
    font-size: 1.1rem;
  }

  .slide-content p {
    font-size: 0.95rem;
  }

  .swiper-button-next-slideshow, .swiper-button-prev-slideshow {
      display: none;
  }

  .swiper-pagination-bullet-slideshow {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 7px) !important;
  }

  .logo {
    width: 90px;
    position: relative;
  }
  
  .contenido-section {
    padding: 120px 25px 135px 25px;
  }

  .parallax-section {
    height: 40vh;
    min-height: 500px;
  }
  
  .parallax-section[data-stellar-background-ratio] {
    background-attachment: fixed; /* Disable fixed attachment on mobile for better performance */
    background-position: bottom right;
  }
}

/* Mobile landscape */
@media (max-width: 767px) {
  .logo {
    width: 70px;
    top: 5px;
  }

  .section-title {
    font-size: 2rem;
  }

  p {
    font-size: 0.9375rem; /* 15px */
  }

  .slide-content {
    padding: 20px;
  }

  .slide-content h2 {
    font-size: 1.75rem;
  }

  .slide-content h4 {
    font-size: 1rem;
  }

  .slide-content p {
    font-size: 0.9rem;
  }

  .swiper-pagination-bullet-slideshow {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 5px) !important;
  }

  .services-wrapper {
    padding: 60px 0;
  }

  .section-subtitle {
    font-size: 1.1rem;
  }

  .navbar-nav .nav-item .nav-link {
    padding: 0 !important;
    margin: 3px 0 !important;
    font-size: 1.15rem;
  }

  /* Enhanced mobile menu fixes */
  .navbar-fullscreen-menu {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navbar-fullscreen-menu a {
    font-size: 1.6rem;
    padding: 12px 0;
    text-align: center;
    line-height: 1.4;
  }

  .navbar-fullscreen-menu ul {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }

  .navbar-fullscreen-menu li {
    margin: 8px 0;
    width: 100%;
    text-align: center;
  }

  /* Cabin responsive adjustments for 768px and below */
  .row-casas .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  
  .casa-item {
      height: 450px;
      margin-bottom: 30px;
  }
  
  .casa-item-overlay {
      padding: 30px 20px;
  }
  
  .casa-main-title {
      font-size: 1.6rem;
  }
  
  .casa-subtitle {
      font-size: 1rem;
  }
  
  .btn-casa-item {
    left: 35px;
    bottom: -16px;
    padding: 10px 22px;
    font-size: 14px;
  }
  
  .btn-reservar {
      padding: 10px 25px;
      font-size: 0.9rem;
  }

  .btn-casa-item {
    left: 35px;
    bottom: 10px;
    padding: 8px 18px;
    font-size: 13px;
  }
}

/* Mobile portrait */
@media (max-width: 576px) {
  .section-title {
    font-size: 1.75rem;
  }

  .slide-content {
    padding: 15px;
  }

  .slide-content h2 {
    font-size: 1.5rem;
  }

  .slide-content h4 {
    font-size: 0.9rem;
  }

  .slide-content p {
    font-size: 0.85rem;
  }

  .slide-content button {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .about-section {
    padding: 110px 20px 150px 20px;
  }

  .about-title {
    font-size: 70px !important;
  }

  .about-subtitle {
    font-size: 20px !important;
    line-height: 1.5em !important;
  }

  .contenido-title {
    font-size: 60px !important;
  }

  .about-content {
    font-size: 17px !important;
  }

  /* Cabin adjustments for 576px and below - single column */
  .row-casas .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .casa-item {
      height: 350px;
      margin-bottom: 40px;
  }
  
  .casa-main-title {
      font-size: 1.4rem;
  }
  
  .casa-item-line {
      width: 60%;
  }
  
  .casa-item:hover .casa-item-line {
      width: 75%;
  }
  
  .btn-casa-item {
    left: 35px;
    bottom: 20px;
    padding: 8px 18px;
    font-size: 13px;
  }

  .slide-title {
    padding: 0 20px !important;
    font-size: 20px !important;
    max-width: 250px;
    line-height: 1.5em !important;
  }
  
  .slide-subtitle {
    padding: 0 20px !important;
  }

  .slide-line {
    width: 200px;
  }

  .whatsapp-popover {
    position: absolute;
    top: -16px;
    right: 85px;
    padding: 10px 15px 0px 15px;
    width: 190px;
  }

  /* Mobile portrait menu fixes */
  .navbar-fullscreen-menu {
    padding: 15px;
  }

  .navbar-fullscreen-menu a {
    font-size: 1.4rem;
    padding: 10px 0;
    line-height: 1.3;
  }

  .navbar-fullscreen-menu li {
    margin: 6px 0;
  }
}

/* ========================================
   FAQ PAGE RESPONSIVE STYLES
   ======================================== */

/* Hero Section Responsive */
.hero-section {
  min-height: 60vh;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-section .lead {
  font-size: 1.25rem;
  font-weight: 400;
}

/* FAQ Content Section */
.faq-placeholder {
  padding: 2rem 1rem;
}

.faq-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.faq-placeholder h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.faq-placeholder p {
  font-size: 1rem;
}

/* Large screens (1200px and below) */
@media (max-width: 1200px) {
  .hero-section h1 {
    font-size: 3rem;
  }
  
  .hero-section .lead {
    font-size: 1.1rem;
  }
  
  .faq-section .section-title {
    font-size: 2.2rem;
  }
  
  .faq-section .section-description {
    font-size: 1rem;
  }
}

/* Desktop (991px and below) */
@media (max-width: 991px) {
  .hero-section {
    min-height: 50vh;
    padding: 2rem 0;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-section .lead {
    font-size: 1rem;
  }
  
  .faq-section .section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .faq-section .section-description {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  
  /* Optimize section description lines for responsive */
  .section-description::before,
  .section-description::after {
    display: none;
  }
  
  .section-description {
    position: relative;
    margin-bottom: 30px;
  }
  
  .section-description::after {
    content: '';
    display: block;
    width: 120px;
    height: 1px;
    background-color: #000;
    margin: 15px auto 0 auto;
    position: static;
  }
  
  .faq-placeholder {
    padding: 1.5rem 1rem;
  }
  
  .faq-placeholder i {
    font-size: 2.5rem;
  }
  
  .faq-placeholder h3 {
    font-size: 1.3rem;
  }
  
  .faq-placeholder p {
    font-size: 0.9rem;
  }
}

/* Tablet (767px and below) */
@media (max-width: 767px) {
  .hero-section {
    min-height: 45vh;
    padding: 1.5rem 0;
  }
  
  .hero-section h1 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    padding: 0 1rem;
  }
  
  .hero-section .lead {
    font-size: 0.9rem;
    padding: 0 1rem;
  }
  
  .faq-section .section-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    padding: 0 1rem;
  }
  
  .faq-section .section-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
  }
  
  .faq-placeholder {
    padding: 1rem 0.5rem;
  }
  
  .faq-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
  
  .faq-placeholder h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }
  
  .faq-placeholder p {
    font-size: 0.85rem;
  }
  
  /* Adjust section padding for mobile */
  section.py-5 {
    padding: 2rem 0 !important;
  }
}

/* Mobile (479px and below) */
@media (max-width: 479px) {
  .hero-section {
    min-height: 40vh;
    padding: 1rem 0;
  }
  
  .hero-section h1 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    padding: 0 0.5rem;
    line-height: 1.2;
  }
  
  .hero-section .lead {
    font-size: 0.85rem;
    padding: 0 0.5rem;
    line-height: 1.4;
  }
  
  .faq-section .section-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    padding: 0 0.5rem;
  }
  
  .faq-section .section-description {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
    line-height: 1.5;
  }
  
  .faq-placeholder {
    padding: 0.75rem 0.25rem;
  }
  
  .faq-placeholder i {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }
  
  .faq-placeholder h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .faq-placeholder p {
    font-size: 0.8rem;
    line-height: 1.4;
  }
  
  /* Further reduce section padding for very small screens */
  section.py-5 {
    padding: 1.5rem 0 !important;
  }
  
  /* Adjust container padding for very small screens */
  .container {
    padding: 0 15px !important;
  }
  
  /* WhatsApp button size reduction */
  .whatsapp-icon {
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-icon i {
    font-size: 28px;
  }

  /* Popover size reduction */
  .whatsapp-popover {
    right: 70px;
  }
  
  .whatsapp-popover .close-popover {
    /* width: 18px;
    height: 18px;
    font-size: 10px;
    line-height: 18px; */
    top: -30px;
    left: 0px
  }
  
}

/* ========================================
   FAQ PAGE STYLES
   ======================================== */
.faq-hero-section {
  min-height: 100vh;
  padding: 120px 20px 80px 20px;
  position: relative;
}

.faq-container {
  max-width: 750px;
  margin: 0 auto;
  background-color: #f8f5f0;
  border-radius: 12px;
  padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.faq-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 45px;
  font-weight: 400;
  color: #0b0b0a;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-subtitle {
  font-family: 'Sarabun', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #0b0b0a;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
}

.faq-list {
  margin-top: 30px;
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(11, 11, 10, 0.1);
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #0b0b0a;
}

.faq-question span {
  font-family: 'Sarabun', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #0b0b0a;
  flex: 1;
  padding-right: 20px;
}

.faq-icon {
  font-size: 14px;
  color: #0b0b0a;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding-top: 10px;
  padding-bottom: 25px;
}

.faq-answer p {
  font-family: 'Sarabun', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #0b0b0a;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Responsive FAQ Styles */
@media (max-width: 991px) {
  .faq-hero-section {
    padding: 100px 20px 60px 20px;
    background-attachment: scroll !important;
  }
  
  .faq-container {
    padding: 40px 30px;
    max-width: 90%;
  }
  
  .faq-title {
    font-size: 38px;
  }
  
  .faq-subtitle {
    font-size: 15px;
  }
  
  .faq-question span {
    font-size: 17px;
  }
  
  .faq-answer p {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .faq-hero-section {
    padding: 90px 15px 50px 15px;
    min-height: 100vh;
    background-attachment: scroll !important;
  }
  
  .faq-container {
    padding: 35px 25px;
    max-width: 95%;
    border-radius: 8px;
  }
  
  .faq-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  
  .faq-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }
  
  .faq-question {
    padding: 18px 0;
  }
  
  .faq-question span {
    font-size: 16px;
    padding-right: 15px;
  }
  
  .faq-icon {
    font-size: 12px;
  }
  
  
  .faq-answer p {
    font-size: 14px;
    line-height: 1.6;
  }
}

@media (max-width: 479px) {
  .faq-hero-section {
    padding: 80px 10px 40px 10px;
    background-attachment: scroll !important;
  }
  
  .faq-container {
    padding: 30px 20px;
    max-width: 100%;
  }
  
  .faq-title {
    font-size: 26px;
    margin-bottom: 12px;
  }
  
  .faq-subtitle {
    font-size: 13px;
    margin-bottom: 25px;
  }
  
  .faq-question {
    padding: 15px 0;
  }
  
  .faq-question span {
    font-size: 15px;
    padding-right: 12px;
  }
  
  
  .faq-answer p {
    font-size: 13px;
  }
}

/* ========================================
   UBICACIÓN SECTION
   ======================================== */
.ubicacion-section {
  padding: 180px 20px 220px 20px;
  background: #f8f5f0;
  position: relative;
}

.ubicacion-title {
  font-family: 'Prata', serif;
  font-size: 2.5rem;
  font-weight: 400;
  text-align: center;
  color: #0e0e0e;
  margin-bottom: 60px;
}

.ubicacion-description {
  font-family: 'Sarabun', sans-serif;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #0b0b0a;
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.ubicacion-map-wrapper {
  width: 100%;
  margin-bottom: 40px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.ubicacion-map {
  width: 100%;
  height: 500px;
  min-height: 400px;
}

.ubicacion-button-wrapper {
  text-align: center;
}

.btn-como-llegar {
  display: inline-block;
  padding: 15px 40px;
  background-color: #2d5016;
  color: #ffffff;
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-como-llegar:hover {
  background-color: #3d7026;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.btn-como-llegar:active {
  transform: translateY(0);
}

/* Responsive styles for ubicación section */
@media (max-width: 768px) {
  .ubicacion-section {
    padding: 120px 20px 150px 20px;
  }

  .ubicacion-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .ubicacion-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .ubicacion-map {
    height: 400px;
    min-height: 300px;
  }

  .btn-como-llegar {
    padding: 12px 30px;
    font-size: 0.95rem;
  }
}

/* ========================================
   SECTION DIVIDER LINE
   ======================================== */
.section-divider-line {
  width: 100%;
  height: 1px;
  background-color: #000000;
  padding: 80px auto;
  max-width: 200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section-divider-line {
    margin: 60px auto;
    max-width: 150px;
  }
}

@media (max-width: 479px) {
  .section-divider-line {
    margin: 40px auto;
    max-width: 120px;
  }
}

/* ========================================
   PROPIEDADES SECTION
   ======================================== */

/* Hero Section */
.propiedad-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 55vh;
  margin-top: 0;
  overflow: hidden;
}

.propiedad-hero-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.propiedad-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
}

/* Main Content Section */
.propiedad-main-section {
  padding: 60px 20px;
  background: #f8f5f0;
}

.propiedad-main-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 50px 40px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.propiedad-section-content {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #e0e0e0;
}

.propiedad-section-content:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.propiedad-description {
  font-family: 'Sarabun', sans-serif;
  font-size: 1.125rem;
  line-height: 1.9;
  color: #333;
}

.propiedad-description p {
  margin-bottom: 20px;
}

/* Section Title */
.section-title-propiedad {
  font-family: 'Sarabun', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0e0e0e;
  margin-bottom: 30px;
  text-align: left;
}

.amenidades-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 40px;
  margin-top: 20px;
}

.amenidad-item-simple {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  color: #333;
  min-width: 180px
}

.amenidad-icon-simple {
  color: #333;
  font-size: 1.25rem;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.amenidad-nombre-simple {
  color: #333;
}

.ubicacion-wrapper {
  margin-top: 20px;
}

.direccion-contacto-content {
  font-family: 'Sarabun', sans-serif;
}

.direccion-title {
  font-family: 'Sarabun', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0e0e0e;
  margin-bottom: 15px;
  margin-top: 25px;
}

.direccion-title:first-child {
  margin-top: 0;
}

.direccion-content {
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.direccion-line {
  margin-bottom: 5px;
  color: #333;
}

.contacto-content {
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

.contacto-line {
  margin-bottom: 10px;
  color: #333;
}

.contacto-line a {
  color: #2d5016;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contacto-line a:hover {
  color: #3d7026;
  text-decoration: underline;
}

.mapa-wrapper {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.propiedad-map {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 8px;
  overflow: hidden;
}

.politicas-content {
  margin-top: 20px;
}

.politica-line {
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 10px;
}

.politica-line strong {
  color: #0e0e0e;
}

.cancelacion-content {
  margin-top: 20px;
}

.cancelacion-line {
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}

.terminos-content {
  margin-top: 20px;
}

.termino-seccion {
  margin-bottom: 30px;
}

.termino-seccion:last-child {
  margin-bottom: 0;
}

.termino-seccion-title {
  font-family: 'Sarabun', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0e0e0e;
  margin-bottom: 15px;
}

.termino-lista {
  font-family: 'Sarabun', sans-serif;
  font-size: 1rem;
  line-height: 1.9;
  color: #333;
  padding-left: 25px;
}

.termino-lista li {
  margin-bottom: 12px;
}

.termino-lista li:last-child {
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .propiedad-hero-section {
    height: 45vh;
    min-height: 350px;
  }

  .propiedad-main-card {
    padding: 40px 30px;
  }

  .propiedad-section-content {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }

  .section-title-propiedad {
    font-size: 1.375rem;
  }

  .amenidades-list {
    gap: 25px 30px;
  }

  .mapa-wrapper,
  .propiedad-map {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .propiedad-hero-section {
    height: 40vh;
    min-height: 300px;
    margin-top: 0;
    padding-top: 100px;
  }

  .propiedad-main-section {
    padding: 50px 20px;
  }

  .propiedad-main-card {
    padding: 35px 25px;
  }

  .propiedad-section-content {
    margin-bottom: 35px;
    padding-bottom: 35px;
  }

  .section-title-propiedad {
    font-size: 1.25rem;
    margin-bottom: 25px;
  }

  .propiedad-description {
    font-size: 1rem;
  }

  .amenidades-list {
    gap: 20px;
  }

  .mapa-wrapper,
  .propiedad-map {
    min-height: 300px;
  }

  .termino-seccion-title {
    font-size: 1.125rem;
  }

  .termino-lista {
    font-size: 0.95rem;
  }
}

@media (max-width: 479px) {
  .propiedad-hero-section {
    height: 35vh;
    min-height: 250px;
  }

  .propiedad-main-section {
    padding: 40px 15px;
  }

  .propiedad-main-card {
    padding: 30px 20px;
  }

  .propiedad-section-content {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .section-title-propiedad {
    font-size: 1.125rem;
  }

  .amenidad-icon-simple {
    font-size: 1.125rem;
  }

  .amenidad-nombre-simple {
    font-size: 0.95rem;
  }

  .mapa-wrapper,
  .propiedad-map {
    min-height: 280px;
  }
}