/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&display=swap');

:root {
  /* Corporate Green Brand System */
  --primary-green: #009640;
  --primary-green-hover: #007c33;
  --primary-green-light: #e6f6eb;
  --primary-green-muted: rgba(0, 150, 64, 0.1);

  /* Secondary Navy Brand System (derived from footer brand tone) */
  --secondary-navy: #111827;
  --secondary-navy-hover: #0b0f19;
  --secondary-navy-light: #f1f5f9;
  --secondary-navy-muted: rgba(17, 24, 39, 0.08);

  --text-dark: #1e293b;
  --text-medium: #334155;
  --text-muted: #64748b;
  --bg-light: #f4f7f5;
  --bg-white: #ffffff;
  --border-color: #e9ece9;
  --border-color-dark: #d2dcd5;

  /* Premium Accent Brand System */
  --accent-brand: #167a3d;
  --accent-brand-hover: #0e5b2c;
  --accent-brand-light: #f0f9f4;
  --accent-brand-muted: rgba(22, 122, 61, 0.1);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Poppins', system-ui, -apple-system, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.01);
  --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
  --shadow-subtle: 0 12px 30px rgba(0, 0, 0, 0.02);

  /* Layout & Spacing */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);

  /* Header scroll heights */
  --header-height: 90px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background-color: var(--secondary-navy);
  scrollbar-color: rgba(0, 150, 64, 0.5) transparent;
  scrollbar-width: thin;
}

body {
  font-family: var(--font-sans);
  color: var(--text-medium);
  background-color: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Scrollbar Customization - Seamless & Completely Integrated */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: transparent !important;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 150, 64, 0.4);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: content-box;
  transition: background 0.2s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-green);
  border-radius: 10px;
}

/* Typography elements */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
}

button {
  cursor: pointer;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Utility section class */
.section {
  padding: 120px 0;
  position: relative;
}

.section-bg {
  background-color: var(--bg-light);
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px auto;
}

.section-header-left {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 30px !important;
}

.section-header .section-subtitle {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.section-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Horizontal line utility */
.divider {
  width: 60px;
  height: 3px;
  background-color: var(--accent-brand);
  margin: 24px auto 0 auto;
  border-radius: 2px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 26px;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
  box-sizing: border-box;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary-green);
  color: var(--bg-white);
  border: 1.5px solid var(--primary-green);
  box-shadow: 0 6px 20px rgba(0, 150, 64, 0.25);
}

.btn-primary:hover {
  background-color: var(--primary-green-hover);
  border-color: var(--primary-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 150, 64, 0.35);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-green);
  border: 1.5px solid var(--primary-green);
  font-weight: 600;
}

.btn-secondary:hover {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 150, 64, 0.25);
}

.btn-white {
  background-color: var(--bg-white);
  color: var(--text-dark);
  border: 1px solid var(--bg-white);
}

.btn-white:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--bg-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background-color: var(--bg-white);
  color: var(--text-dark);
  border-color: var(--bg-white);
  transform: translateY(-2px);
}

/* ==========================================================================
   NAVIGATION HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease;
}

.site-header.scrolled {
  height: 75px;
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(22, 122, 61, 0.12);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1600px;
  padding: 0 2.5rem;
}

/* Logo Design */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 72px; /* Larger flat integrated logo */
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  transition: var(--transition-smooth);
}

.site-header.scrolled .logo-img {
  height: 58px;
  filter: none;
}

/* Main Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding: 8px 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary-green);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.site-header.scrolled .nav-link {
  color: var(--text-dark);
  text-shadow: none;
}

.site-header.scrolled .nav-link::after {
  background-color: var(--primary-green);
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
  color: var(--primary-green);
  text-shadow: none;
}

.nav-btn {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 24px;
  background-color: var(--primary-green);
  border: 1.5px solid var(--primary-green);
  color: var(--bg-white);
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(0, 150, 64, 0.35);
}

.nav-btn:hover {
  background-color: var(--primary-green-hover);
  border-color: var(--primary-green-hover);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 150, 64, 0.45);
}

.site-header.scrolled .nav-btn {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--bg-white);
  border-radius: 30px;
}

.site-header.scrolled .nav-btn:hover {
  background-color: var(--primary-green-hover);
  border-color: var(--primary-green-hover);
  box-shadow: 0 8px 25px rgba(22, 122, 61, 0.2);
  transform: translateY(-2px);
}

/* Hamburger mobile button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 44px; /* Better tap target */
  height: 44px; /* Better tap target */
  padding: 13px 10px; /* Center the spans */
  z-index: 1100;
  background-color: transparent;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--bg-white);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.site-header.scrolled .menu-toggle span {
  background-color: var(--text-dark);
}

/* Mobile active hamburger */
.menu-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--text-dark);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--text-dark);
}

/* ==========================================================================
   MEDIUM LAPTOP RESPONSIVE NAVIGATION (1250px to 1600px)
   ========================================================================== */
@media (min-width: 1250px) and (max-width: 1600px) {
  .logo-img {
    height: 60px;
  }
  .nav-menu {
    gap: 16px;
  }
  .nav-link {
    font-size: 0.95rem;
    letter-spacing: 1px;
  }
  .nav-btn {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
}

/* ==========================================================================
   TABLET / MOBILE COLLAPSIBLE DROPDOWN NAV (under 1250px)
   ========================================================================== */
@media (max-width: 1250px) {
  .menu-toggle {
    display: flex;
  }

  .logo-img {
    height: 54px;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    align-items: center;
    padding: 30px 2rem;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    border-bottom: 3px solid var(--primary-green);
    transform: translateY(-15px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-link {
    color: var(--text-dark);
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    text-align: center;
    font-weight: 500;
  }

  .nav-link::after {
    display: none;
  }

  .nav-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: 10px;
    background-color: var(--primary-green) !important;
    border-color: var(--primary-green) !important;
    color: var(--bg-white) !important;
  }

  .site-header:has(.menu-toggle.open),
  .site-header.menu-open {
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(0, 150, 64, 0.08) !important;
    z-index: 999999 !important;
  }

  .site-header:has(.menu-toggle.open) .logo-img,
  .site-header.menu-open .logo-img {
    filter: none !important;
  }

  .site-header:has(.menu-toggle.open) .menu-toggle span,
  .site-header.menu-open .menu-toggle span {
    background-color: var(--text-dark) !important;
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  height: 100vh;
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  text-align: center;
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
  z-index: 1;
  filter: brightness(0.88) contrast(1.08) saturate(1.3);
  animation: heroZoom 24s ease-out infinite alternate;
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(to top,
      rgba(5, 15, 10, 0.95) 0%,
      rgba(5, 15, 10, 0.70) 30%,
      rgba(5, 15, 10, 0.40) 55%,
      rgba(0, 0, 0, 0.50) 100%
    );
  z-index: 2;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  max-width: 850px;
  padding: 0 2rem;
  z-index: 3;
  width: 100%;
  height: 100%;
}

.hero-content {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  text-align: center;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Badge Pill */
.hero-badge-pill {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
  color: #ffffff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 8px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 7px;
  margin-bottom: 24px;
  color: var(--primary-green-light);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.hero-subtitle::before,
.hero-subtitle::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 1px;
  background-color: var(--primary-green-light);
  opacity: 0.6;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 4.2rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.15;
  color: var(--bg-white);
  letter-spacing: -0.5px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.75), 0 6px 24px rgba(0, 0, 0, 0.55);
}

.text-highlight {
  font-family: var(--font-serif);
  color: #fde68a;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 18px rgba(253, 230, 138, 0.35), 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-description {
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 40px;
  line-height: 1.65;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85), 0 4px 16px rgba(0, 0, 0, 0.6);
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Premium Buttons specifically for Hero */
.btn-primary-premium {
  background-color: var(--primary-green);
  color: var(--bg-white);
  border: 1px solid var(--primary-green);
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(0, 150, 64, 0.2);
}

.btn-primary-premium:hover {
  background-color: var(--primary-green-hover);
  border-color: var(--primary-green-hover);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 150, 64, 0.35);
}

.btn-outline-white-premium {
  background-color: transparent;
  color: var(--bg-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-white-premium:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--bg-white);
  color: var(--bg-white);
  transform: translateY(-3px);
}

/* Make entire date field clickable in booking form and hide default calendar icon */
.booking-form input[type="date"] {
  position: relative;
}

.booking-form input[type="date"]::-webkit-calendar-picker-indicator {
  background: transparent;
  bottom: 0;
  color: transparent;
  cursor: pointer;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
  z-index: 2;
}



/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */


.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.about-content {
  order: 2;
  padding-left: 20px;
  padding-right: 0;
}

.about-collage {
  order: 1;
}

.about-tagline {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--primary-green);
  margin-bottom: 30px;
  font-style: italic;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.about-feature-item {
  display: flex;
  gap: 15px;
}

.about-feature-icon {
  color: var(--primary-green);
  font-size: 1.5rem;
  margin-top: 3px;
}

.about-feature-item h4 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.about-feature-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Asymmetric Image Collage */
.about-collage {
  position: relative;
  height: 480px;
  width: 100%;
}

.collage-img-1 {
  width: 78%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 0;
  left: 0;
  transition: var(--transition-smooth);
}

.collage-img-2 {
  width: 55%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  position: absolute;
  bottom: 0;
  right: 0;
  border: 6px solid var(--bg-white);
  transition: var(--transition-smooth);
}

.about-collage:hover .collage-img-1 {
  transform: translateY(-5px) scale(1.01);
}

.about-collage:hover .collage-img-2 {
  transform: translateY(-12px) scale(1.03);
}

.collage-badge {
  position: absolute;
  left: -20px;
  bottom: 60px;
  background-color: var(--bg-white);
  color: var(--text-dark);
  padding: 24px 30px;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--accent-brand);
  max-width: 220px;
  z-index: 10;
}

.collage-badge-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent-brand);
  line-height: 1;
  display: block;
}

.collage-badge-text {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 5px;
  color: var(--text-medium);
  display: block;
}

/* ==========================================================================
   SERVICES (HOSTAL / COMODIDADES)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--bg-white);
  padding: 45px 35px;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 150, 64, 0.03);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 70px rgba(0, 150, 64, 0.06);
  border-color: rgba(0, 150, 64, 0.15);
}

.service-icon-wrapper {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 150, 64, 0.06);
  color: var(--primary-green);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 25px;
  border: 1px solid rgba(0, 150, 64, 0.08);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
  background-color: var(--primary-green);
  color: var(--bg-white);
  transform: scale(1.05) rotate(5deg);
}

.service-card h3 {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ==========================================================================
   ROOMS (HABITACIONES)
   ========================================================================== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.room-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 150, 64, 0.03);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 70px rgba(0, 150, 64, 0.07);
  border-color: rgba(0, 150, 64, 0.15);
}

/* Static Room Image Container */
.room-image-container {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.room-static-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.rooms-booking-separator {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(0, 150, 64, 0) 0%, rgba(0, 150, 64, 0.08) 50%, rgba(0, 150, 64, 0) 100%);
  margin: 60px 0;
}

.room-card:hover .room-static-image {
  transform: scale(1.06);
}

.room-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-dark);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 5;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 150, 64, 0.1);
}

/* Room details */
.room-info {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.room-info h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.room-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.room-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-medium);
  background-color: rgba(0, 150, 64, 0.03);
  padding: 6px 12px;
  border-radius: 30px;
  border: 1px solid rgba(0, 150, 64, 0.05);
}

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.room-price {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.room-price span {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.room-btn {
  padding: 10px 20px;
  font-size: 0.8rem;
}

/* ==========================================================================
   RESTAURANTE SECTION
   ========================================================================== */
.rest-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}

.rest-collage {
  position: relative;
  height: 480px;
  width: 100%;
  order: 2;
}

.rest-collage .rest-img:nth-child(1) {
  width: 78%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 0;
  right: 0;
  transition: var(--transition-smooth);
}

.rest-collage .rest-img:nth-child(2) {
  width: 55%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  position: absolute;
  bottom: 0;
  left: 0;
  border: 6px solid var(--bg-white);
  transition: var(--transition-smooth);
  margin-top: 0;
}

.rest-collage:hover .rest-img:nth-child(1) {
  transform: translateY(-5px) scale(1.01);
}

.rest-collage:hover .rest-img:nth-child(2) {
  transform: translateY(-12px) scale(1.03);
}

.rest-content {
  order: 1;
  padding-right: 20px;
  padding-left: 0;
}

.rest-specialties {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.rest-spec-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.rest-spec-check {
  width: 36px;
  height: 36px;
  background-color: var(--accent-brand-light);
  color: var(--accent-brand);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  border: 1px solid rgba(22, 122, 61, 0.15);
  margin-top: 3px;
  flex-shrink: 0;
}

.rest-spec-item h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.rest-spec-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.rest-cta-group {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}

/* ==========================================================================
   MENÃš DEL DÃA (MENÃš SEMANAL)
   ========================================================================== */
.menu-card-wrapper {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.menu-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border-color-dark);
  padding: 42px 48px;
  position: relative;
  overflow: hidden;
}

/* Slate theme texture */
.menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--primary-green);
}

.menu-card-header {
  text-align: center;
  border-bottom: 1px dashed var(--border-color-dark);
  padding-bottom: 22px;
  margin-bottom: 28px;
}

.menu-card-header h3 {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  color: var(--secondary-navy);
  margin-bottom: 4px;
}

.menu-card-date {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-green);
  font-weight: 600;
}

.menu-course-section {
  margin-bottom: 26px;
}

.menu-course-title {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  color: var(--primary-green);
  text-align: center;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 1px;
}

.menu-course-title::before,
.menu-course-title::after {
  content: '';
  width: 40px;
  height: 1px;
  background-color: var(--primary-green-muted);
}

.menu-items-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  text-align: center;
}

.menu-item-text {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
  max-width: 450px;
}

.menu-item-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.menu-price-tag {
  text-align: center;
  border-top: 1px dashed var(--border-color-dark);
  padding-top: 30px;
  margin-top: 40px;
}

.menu-price-tag .price-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
  display: block;
}

.menu-price-tag .price-value {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-top: 5px;
  display: block;
}

.menu-observations {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  margin-top: 15px;
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
}

/* Edit Floating Button */
.admin-link {
  position: absolute;
  bottom: -40px;
  right: 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0.6;
}

.admin-link:hover {
  opacity: 1;
  color: var(--primary-green);
}

/* ==========================================================================
   CARTA (PDF INTEGRATED VIEWER)
   ========================================================================== */
.carta-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.carta-info {
  width: 100%;
  text-align: center;
}

.carta-info p {
  color: var(--text-muted);
  margin-bottom: 25px;
}

.carta-highlights {
  margin: 30px 0 35px 0;
  background-color: var(--bg-white);
  padding: 30px 35px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.carta-highlight-item {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border-color);
}

.carta-highlight-item:last-child {
  border-bottom: none;
}

.carta-highlight-name {
  font-weight: 600;
  color: var(--text-dark);
}

.carta-highlight-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: block;
  margin-top: 2px;
}

.carta-highlight-price {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--primary-green);
  font-size: 1.1rem;
  margin-left: 15px;
  flex-shrink: 0;
}

.carta-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* PDF Embed Iframe responsive wrapper */
.carta-viewer-wrapper {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border-color-dark);
  padding: 15px;
  height: 550px;
  position: relative;
}

.carta-viewer {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-md);
}

/* Fallback card if iframe fails / for mobile */
.carta-mobile-fallback {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

/* ==========================================================================
   GALLERY (GALERÃA MASONRY & LIGHTBOX)
   ========================================================================== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 30px;
  background-color: var(--bg-light);
  color: var(--text-medium);
  transition: var(--transition-fast);
}

.filter-btn.active,
.filter-btn:hover {
  background-color: var(--primary-green);
  color: var(--bg-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 90, 39, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition-smooth);
  color: var(--bg-white);
  padding: 20px;
  text-align: center;
}

.gallery-item-overlay span {
  font-size: 1.25rem;
  margin-bottom: 5px;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

.gallery-item-overlay p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transform: translateY(10px);
  transition: var(--transition-smooth);
  margin-bottom: 0;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-item-overlay span,
.gallery-item:hover .gallery-item-overlay p {
  transform: translateY(0);
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 24, 39, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content-wrapper {
  position: relative;
  max-width: 85%;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.lightbox-caption {
  color: var(--bg-white);
  margin-top: 15px;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: -40px;
  color: var(--bg-white);
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--primary-green-light);
  transform: scale(1.1);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bg-white);
  font-size: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  transition: var(--transition-fast);
}

.lightbox-nav:hover {
  color: var(--primary-green);
}

.lightbox-prev {
  left: -80px;
}

.lightbox-next {
  right: -80px;
}

/* ==========================================================================
   RESERVAS (BOOKING WIDGET & FLOW)
   ========================================================================== */
/* ==========================================================================
   RESERVAS (BOOKING WIDGET & FLOW)
   ========================================================================== */
.booking-section {
  position: relative;
  z-index: 10;
  background-color: var(--bg-light);
}

.booking-panel {
  background-color: var(--bg-white);
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 80px rgba(26, 43, 76, 0.08);
  border: 1px solid rgba(26, 43, 76, 0.12);
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.booking-panel-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
}

/* Left Column (Experiences & Guarantees) */
.booking-info-panel {
  background-color: var(--secondary-navy);
  background-size: cover;
  background-position: center;
  color: var(--bg-white);
  padding: 48px 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.booking-info-content {
  position: relative;
  z-index: 3;
}

.booking-info-subtitle {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #86efac;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.booking-info-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  line-height: 1.25;
  margin-bottom: 15px;
  color: var(--bg-white);
}

.booking-info-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 30px;
}

.booking-guarantees {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.booking-guarantees li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.booking-guarantees li i {
  color: #86efac;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Right Column (Form Panel) */
.booking-form-panel {
  padding: 48px 45px;
  background-color: var(--bg-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.booking-form-heading {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary-navy);
  margin-bottom: 4px;
}

.booking-form-subheading {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.35fr;
  gap: 20px 22px;
  align-items: flex-end;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary-navy);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-group label i {
  color: var(--primary-green);
  opacity: 0.9;
}

.form-control {
  background-color: var(--bg-white);
  border: 1.5px solid var(--border-color-dark);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.92rem;
  color: var(--text-dark);
  font-family: var(--font-sans);
  transition: var(--transition-fast);
  width: 100%;
  height: 50px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231a2b4c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 14px) center;
  padding-right: 38px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
}

input[type="date"].form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23009640' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3E%3C/rect%3E%3Cline x1='16' y1='2' x2='16' y2='6'%3E%3C/line%3E%3Cline x1='8' y1='2' x2='8' y2='6'%3E%3C/line%3E%3Cline x1='3' y1='10' x2='21' y2='10'%3E%3C/line%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 14px) center;
  padding-right: 38px;
  cursor: pointer;
}

.form-control:focus {
  border-color: var(--primary-green);
  outline: none;
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(0, 150, 64, 0.12);
}

.booking-alternative {
  margin-top: 25px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}

.booking-alternative span {
  display: block;
  margin-bottom: 8px;
}

.booking-alternative .whatsapp-link {
  color: #25d366;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.booking-alternative .whatsapp-link:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.booking-guests-col {
  display: flex;
  flex-direction: row !important;
  gap: 15px;
}

.booking-guests-col > div {
  flex: 1;
}

.booking-guests-col label {
  display: block;
  margin-bottom: 0px;
}

.booking-submit-col {
  display: flex;
  flex-direction: column;
}

.form-label-spacer {
  height: 14px;
  display: block;
  visibility: hidden;
  content: "";
}

.booking-btn-submit {
  width: 100%;
  height: 50px;
  padding: 0 22px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--primary-green);
  color: var(--bg-white);
  border: none;
  box-shadow: 0 8px 24px rgba(0, 150, 64, 0.28);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.booking-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 150, 64, 0.38);
  background-color: var(--primary-green-hover);
}

.booking-btn-submit i {
  transition: transform 0.3s ease;
}

.booking-btn-submit:hover i {
  transform: translateX(5px);
}

/* Modal details confirmation form */
.booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 24, 39, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  overflow-y: auto;
  padding: 30px 15px;
}

.booking-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.booking-modal-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  max-width: 550px;
  width: 100%;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  -webkit-overflow-scrolling: touch;
}

.booking-modal.active .booking-modal-card {
  transform: translateY(0);
}

.booking-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1.5rem;
  color: var(--text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 100;
  padding: 8px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  pointer-events: auto;
}

.booking-modal-close:hover {
  color: var(--text-dark);
  background-color: rgba(0, 0, 0, 0.06);
}

.booking-modal-header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
  margin-bottom: 25px;
}

.booking-modal-header h3 {
  font-size: 1.6rem;
  margin-bottom: 5px;
}

.booking-summary-box {
  background-color: var(--primary-green-light);
  border-left: 4px solid var(--primary-green);
  padding: 15px 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 0.85rem;
  margin-bottom: 25px;
}

.booking-summary-box h4 {
  font-family: var(--font-sans);
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 5px;
}

.booking-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.booking-summary-grid span {
  color: var(--text-medium);
}

/* Alternative reservation buttons in modal */
.booking-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

.btn-whatsapp {
  background-color: #25d366;
  color: var(--bg-white);
  border: 1px solid #25d366;
}

.btn-whatsapp:hover {
  background-color: #128c7e;
  border-color: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp i,
.btn-email i {
  margin-right: 8px;
  font-size: 1.1rem;
}

.btn-email {
  background-color: var(--primary-green);
  color: var(--bg-white);
  border: 1px solid var(--primary-green);
}

.booking-modal-footer-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 15px;
}

/* ==========================================================================
   OPINIONES (RESEÃ‘AS SLIDER)
   ========================================================================== */
.reviews-slider-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.reviews-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-slide {
  min-width: 100%;
  padding: 0 40px;
  text-align: center;
  box-sizing: border-box;
}

.review-quote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 25px;
}

.review-stars {
  color: var(--primary-green);
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.review-author {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.review-author span {
  font-weight: 400;
  color: var(--text-muted);
  text-transform: none;
  font-size: 0.8rem;
  display: block;
  margin-top: 2px;
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border-color-dark);
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active {
  background-color: var(--primary-green);
  transform: scale(1.3);
}

/* ==========================================================================
   CONTACTO & MAPA
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-item {
  display: flex;
  gap: 20px;
}

.contact-info-icon-wrapper {
  width: 50px;
  height: 50px;
  background-color: var(--primary-green-light);
  color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-info-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

.contact-info-text a:hover {
  color: var(--primary-green);
}

.google-maps-btn {
  margin-top: 20px;
  display: inline-flex;
}

/* Contact form card */
.contact-form-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border-color-dark);
  padding: 40px;
}

.contact-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-map-wrapper {
  grid-column: span 2;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  border: 1px solid var(--border-color-dark);
  margin-top: 40px;
}

.contact-map {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: #111827;
  color: #9ca3af;
  padding: 80px 0 30px 0;
  font-size: 0.9rem;
  margin-top: auto;
}

.footer h3,
.footer h4 {
  color: var(--bg-white);
  margin-bottom: 25px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 50px;
  border-bottom: 1px solid #1f2937;
  padding-bottom: 50px;
  margin-bottom: 30px;
}

.footer-brand .logo-text {
  color: var(--bg-white);
  margin-bottom: 15px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-top: 15px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--bg-white);
  padding-left: 4px;
}

.footer-social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background-color: #1f2937;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  transition: var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--primary-green);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #6b7280;
}

.footer-bottom p {
  margin-bottom: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a:hover {
  color: var(--bg-white);
}

/* ==========================================================================
   FLOATING COMPONENTS (WHATSAPP BUTTON & UP BUTTON)
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-size: 2rem;
  z-index: 999;
  transition: var(--transition-smooth);
  animation: pulseWhatsapp 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  background-color: #128c7e;
}

@keyframes pulseWhatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Tablet Layout (1024px and down) */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    justify-content: center;
  }

  .hero-content-card {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    padding: 0;
    box-shadow: none;
    text-align: center;
  }

  .hero-subtitle {
    justify-content: center;
  }

  .hero-subtitle::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: var(--primary-green-light);
    opacity: 0.7;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-right-spacer {
    display: none;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .section {
    padding: 80px 0;
  }

  .about-grid {
    gap: 40px;
  }

  .services-grid,
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rest-grid,
  .carta-container,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .rest-content,
  .rest-img:nth-child(2),
  .carta-info {
    padding-left: 0;
    padding-right: 0;
    margin-top: 0;
  }

  .rest-collage {
    order: -1;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .booking-panel-grid {
    grid-template-columns: 1fr;
  }

  .booking-form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

/* Mobile Layout (768px and down) */
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  body {
    padding-bottom: 72px !important;
    -webkit-tap-highlight-color: transparent;
  }

  h1 {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2.2rem;
    line-height: 1.25;
  }

  .site-header {
    height: 70px;
  }

  /* Logo inicial en móvil: blanco sobre hero transparente */
  .site-header .logo-img {
    filter: brightness(0) invert(1);
  }

  /* Logo scrolled en móvil: sin filtro sobre header blanco */
  .site-header.scrolled .logo-img {
    filter: none;
  }

  .logo-text {
    color: var(--text-dark);
  }

  .logo-text span {
    color: var(--text-muted);
  }

  /* Hamburger bars: white on transparent hero, dark when scrolled */
  .site-header .menu-toggle span {
    background-color: var(--bg-white);
  }

  .site-header.scrolled .menu-toggle span {
    background-color: var(--text-dark);
  }

  /* Mobile Drawer Menu - Clean White Style */
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 12px 16px 100px 16px;
    gap: 4px;
    overflow-y: auto;
    border-bottom: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-top: 3px solid var(--primary-green);
    display: flex;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-15px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 10000;
  }

  .nav-menu.open,
  .nav-menu.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }

  .nav-link {
    color: var(--text-dark) !important;
    font-size: 1rem;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left;
    font-weight: 600;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover,
  .nav-link.active {
    background-color: var(--primary-green-light);
    color: var(--primary-green) !important;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    width: 100%;
  }

  /* Botones del hero en móvil — tamaño ajustado */
  .hero-cta .btn,
  .hero-cta .btn-primary-premium,
  .hero-cta .btn-outline-white-premium {
    width: 100%;
    max-width: 340px;
    text-align: center;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.95rem;
    min-height: 48px;
  }

  /* Botones generales en móvil — excelente área táctil de 48px */
  .btn {
    padding: 14px 24px;
    font-size: 0.95rem;
    min-height: 48px;
    box-sizing: border-box;
    border-radius: var(--radius-md);
  }

  .form-control,
  select.form-control,
  input.form-control {
    font-size: 16px !important; /* Prevents iOS safari zoom */
    min-height: 48px;
    padding: 12px 16px;
  }

  /* Botones del restaurante específicamente */
  .rest-cta-group {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: 30px auto 0 auto;
    gap: 12px;
  }
  
  .rest-cta-group .btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.88rem;
    letter-spacing: 0.3px;
    min-height: 46px;
    text-align: center;
    justify-content: center;
  }

  /* Padding de sección reducido en móvil */
  .section {
    padding: 70px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-collage,
  .rest-collage {
    height: 380px;
    margin-top: 30px;
    display: block;
  }

  .collage-img-1,
  .rest-collage .rest-img:nth-child(1) {
    width: 80% !important;
    height: 300px !important;
    position: absolute;
    top: 0;
  }

  .collage-img-1 {
    left: 0;
  }

  .rest-collage .rest-img:nth-child(1) {
    right: 0;
  }

  .collage-img-2,
  .rest-collage .rest-img:nth-child(2) {
    width: 58% !important;
    height: 200px !important;
    position: absolute;
    bottom: 0;
    border-width: 4px !important;
  }

  .collage-img-2 {
    right: 0;
  }

  .rest-collage .rest-img:nth-child(2) {
    left: 0;
  }

  .collage-badge {
    padding: 15px 20px !important;
    bottom: 40px !important;
    left: -10px !important;
    max-width: 180px !important;
  }

  .collage-badge-number {
    font-size: 2.2rem !important;
  }

  .services-grid,
  .rooms-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-item {
    height: 160px;
  }

  .menu-waste-law-badge {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 12px !important;
  }

  .menu-waste-law-badge p {
    text-align: center !important;
  }

  .menu-card {
    padding: 28px 18px;
  }

  .menu-card-header h3 {
    font-size: 1.8rem;
  }

  .menu-price-tag .price-value {
    font-size: 2rem;
  }

  /* Show fallback button on mobile and hide PDF viewer */
  .carta-viewer-wrapper {
    display: none;
  }

  .carta-mobile-fallback {
    display: block;
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--border-color);
  }

  .carta-highlights {
    margin-bottom: 30px;
  }

  .booking-form-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .booking-info-panel {
    padding: 36px 24px;
    text-align: center;
  }
  
  .booking-info-title {
    font-size: 1.8rem;
  }
  
  .booking-guarantees {
    align-items: center;
  }
  
  .booking-form-panel {
    padding: 36px 24px;
  }

  .booking-btn-submit {
    height: 50px;
    min-height: 48px;
  }

  .booking-modal-card {
    padding: 30px 20px;
  }

  .contact-form-card {
    padding: 30px 20px;
  }

  .contact-map-wrapper {
    grid-column: span 1;
    height: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .lightbox-nav {
    display: none;
    /* Hide next/prev arrows on mobile, use swipes instead */
  }

  .lightbox-content-wrapper {
    max-width: 95%;
  }

  .logo-img {
    height: 46px;
    box-shadow: none;
    padding: 2px 8px;
  }
}

/* ==========================================================================
   VISUAL REFINEMENTS & TILT CORRECTIONS
   ========================================================================== */

/* Service icon wrappers uniformity */
.service-icon-wrapper i {
  display: inline-block;
  font-size: 1.6rem;
  width: 1.6rem;
  text-align: center;
}

/* ==========================================================================
   NATIVE MAGAZINE MENU CARD (CARTA)
   ========================================================================== */
.carta-magazine-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.carta-magazine-card {
  background-color: var(--bg-white);
  background-image: linear-gradient(rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.96)), url('../images/20260713_120659.jpg');
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(22, 122, 61, 0.2);
  box-shadow: 0 30px 70px rgba(22, 122, 61, 0.08);
  padding: 50px 55px;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.carta-magazine-card::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid rgba(22, 122, 61, 0.2);
  pointer-events: none;
  border-radius: var(--radius-md);
}

.carta-magazine-header {
  text-align: center;
  border-bottom: 2px double var(--border-color-dark);
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.carta-magazine-header h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.carta-magazine-header span {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-green);
  font-weight: 600;
  display: block;
}

.carta-magazine-section {
  margin-bottom: 20px;
}

.carta-magazine-section h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--primary-green);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 4px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.carta-magazine-item {
  margin-bottom: 12px;
}

.carta-magazine-item-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.carta-magazine-item-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
  background-color: var(--bg-white);
  padding-right: 6px;
}

.carta-magazine-item-dots {
  flex-grow: 1;
  border-bottom: 1px dotted var(--border-color-dark);
  margin: 0 4px;
}

.carta-magazine-item-price {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1.05rem;
  background-color: var(--bg-white);
  padding-left: 6px;
}

.carta-magazine-item-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1px;
}

.carta-magazine-footer {
  text-align: center;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text-muted);
  border-top: 1px dashed var(--border-color-dark);
  padding-top: 15px;
  margin-top: 20px;
}

/* Optimize crop and orientation for vertical bedroom photos */
.room-slide-portrait {
  object-position: center 30% !important;
  transform: rotate(12deg) scale(1.38) !important;
  transform-origin: center center;
  transition: transform 0.5s ease !important;
}

.room-image-container:hover .room-slide-portrait {
  transform: rotate(12deg) scale(1.42) !important;
}

/* ==========================================================================
   SUSTAINABILITY & EUROPEAN FUNDS
   ========================================================================== */
.section-sustainability {
  background-color: var(--bg-white);
  border-top: 1px solid var(--border-color);
  padding: 80px 0;
}

.sustainability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.sustainability-card {
  background-color: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.sustainability-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-green-muted);
}

.sustainability-icon {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 20px;
}

.sustainability-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.sustainability-card p {
  font-size: 0.95rem;
  color: var(--text-medium);
  margin-bottom: 20px;
}

.sustainability-details {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  flex-grow: 1;
}

.sustainability-details li {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.sustainability-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-green);
  font-weight: bold;
}

.sustainability-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border-top: 1px dashed var(--border-color-dark);
  padding-top: 20px;
  margin-top: auto;
}

.logo-text-badge {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-dark);
  background-color: var(--bg-white);
  padding: 6px 12px;
  border-radius: 30px;
  border: 1px solid var(--border-color-dark);
  letter-spacing: 0.5px;
}

@media (max-width: 992px) {
  .sustainability-grid {
    grid-template-columns: 1fr;
  }
}

/* Endereça la foto de la habitación individual (ángulo de cámara corregido) */
.room-slide-single-new {
  object-position: center 40% !important;
  transform: rotate(-8deg) scale(1.32) !important;
  transform-origin: center center;
  transition: transform 0.5s ease !important;
}

.room-image-container:hover .room-slide-single-new {
  transform: rotate(-8deg) scale(1.36) !important;
}

/* ==========================================================================
   COOKIE CONSENT BANNER
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 460px;
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  padding: 22px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: translateY(180%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-text {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.5;
}

.cookie-banner-text strong {
  color: var(--text-dark);
  display: block;
  margin-bottom: 6px;
  font-size: 0.98rem;
  font-weight: 700;
}

.cookie-banner-text a {
  color: var(--primary-green);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-banner-buttons {
  display: flex;
  gap: 10px;
}

.cookie-banner-btn {
  flex: 1;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-align: center;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}

.cookie-banner-btn-accept {
  background-color: var(--primary-green);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(0, 150, 64, 0.25);
}

.cookie-banner-btn-accept:hover,
.cookie-banner-btn-accept:active {
  background-color: var(--primary-green-hover);
  transform: translateY(-1px);
}

.cookie-banner-btn-decline {
  background-color: #f1f5f9;
  color: var(--text-dark) !important;
  border: 1px solid #cbd5e1;
}

.cookie-banner-btn-decline:hover,
.cookie-banner-btn-decline:active {
  background-color: #e2e8f0;
}

@media (max-width: 768px) {
  .floating-whatsapp {
    display: none !important;
  }

  .cookie-banner {
    position: fixed !important;
    bottom: 76px !important;
    top: auto !important;
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    max-width: calc(100vw - 24px) !important;
    margin: 0 auto !important;
    z-index: 99999 !important;
    background-color: #ffffff !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 14px !important;
    padding: 16px 18px !important;
    gap: 12px !important;
    pointer-events: auto !important;
    transform: translateY(180%) !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    opacity: 1 !important;
  }

  .cookie-banner.show {
    transform: translateY(0) !important;
  }

  .cookie-banner-buttons {
    display: flex !important;
    gap: 10px !important;
    margin-top: 4px !important;
  }

  .cookie-banner-btn {
    min-height: 44px !important;
    font-size: 0.9rem !important;
    border-radius: 8px !important;
  }

  .mobile-action-bar {
    z-index: 2000 !important;
  }
}

/* Redesigned Hero and Booking Bar Responsive Styles */
@media (max-width: 1024px) {
  .hero-booking-bar-wrapper {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    width: 90%;
    margin: 40px auto 0 auto;
    opacity: 1;
  }

  .hero-booking-bar {
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.95);
  }

  .hero-booking-bar .booking-col {
    flex: calc(50% - 10px);
    min-width: 180px;
  }

  .hero-booking-btn {
    flex: 1;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 120px 0 80px 0;
  }

  .hero .container {
    margin-top: 0;
  }

  .hero-title {
    font-size: 2.6rem !important;
    margin-bottom: 20px;
  }

  .hero-booking-bar-wrapper {
    width: 100%;
    margin-top: 30px;
  }

  .hero-booking-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 20px;
  }

  .hero-booking-bar .booking-col {
    width: 100%;
    flex: none;
  }
}

/* ==========================================================================
   VISUAL IDENTITY SYSTEM â€” PREMIUM DESIGN REFINEMENTS
   ========================================================================== */

/* ---- 1. Sección con fondo limpio para ritmo visual ---- */
.section-warm {
  background-color: var(--bg-light);
  background-image:
    radial-gradient(circle at 85% 15%, rgba(0, 150, 64, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 15% 85%, rgba(0, 150, 64, 0.04) 0%, transparent 50%);
}

/* Section-bg con textura verde sutil ---- */
.section-bg {
  background-color: var(--bg-light);
  background-image:
    radial-gradient(circle at 15% 85%, rgba(0, 150, 64, 0.025) 0%, transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(0, 150, 64, 0.025) 0%, transparent 45%);
}

/* ---- 2. Separador ornamental entre secciones ---- */
.section-separator {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 150, 64, 0.12) 30%,
    rgba(0, 150, 64, 0.2) 50%,
    rgba(0, 150, 64, 0.12) 70%,
    transparent 100%
  );
}

.section-separator-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 8px 0;
  max-width: 300px;
  margin: 0 auto;
}

.section-separator-ornament::before,
.section-separator-ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 150, 64, 0.2), transparent);
}

.section-separator-ornament-icon {
  color: var(--primary-green);
  font-size: 0.85rem;
  opacity: 0.75;
  flex-shrink: 0;
}

/* ---- 3. Section subtitle con lÃ­neas decorativas laterales ---- */
.section-subtitle {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 4.5px;
  color: var(--primary-green);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
}

.section-subtitle::before,
.section-subtitle::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background-color: currentColor;
  opacity: 0.45;
  flex-shrink: 0;
}

/* SubtÃ­tulos alineados a la izquierda: solo lÃ­nea derecha */
.section-header-left .section-subtitle {
  display: inline-block;
}

.section-header-left .section-subtitle::before,
.section-header-left .section-subtitle::after {
  display: none;
}

/* ---- 4. Focus label animation en el formulario de reservas ---- */
.form-group:focus-within label {
  color: var(--accent-brand);
  transition: color 0.2s ease;
}

.form-group:focus-within label i {
  opacity: 1;
}

/* ---- 5. Booking panel headings ---- */
.booking-form-heading {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 700;
}

.booking-form-subheading {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

/* ---- 6. Service cards hover ---- */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(22, 122, 61, 0.09);
  border-color: rgba(22, 122, 61, 0.18);
}

/* ---- 7. Room cards ---- */
.room-card {
  background: var(--bg-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04), 0 1px 4px rgba(0, 0, 0, 0.02);
}

.room-card:hover {
  transform: translateY(-10px) scale(1.005);
  box-shadow: 0 30px 60px rgba(22, 122, 61, 0.1);
  border-color: rgba(22, 122, 61, 0.18);
}

/* ---- 8. Gallery items ---- */
.gallery-item {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  z-index: 2;
  position: relative;
}

/* ---- 9. Hero buttons pill ---- */
.btn-primary-premium {
  background: linear-gradient(135deg, #009640 0%, #167a3d 100%);
  border: none;
  padding: 16px 38px;
  font-size: 0.98rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 25px rgba(0, 150, 64, 0.28);
  letter-spacing: 0.3px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-premium:hover {
  background: linear-gradient(135deg, #007c33 0%, #125e31 100%);
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(0, 150, 64, 0.38);
}

.btn-outline-white-premium {
  padding: 16px 38px;
  font-size: 0.98rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  letter-spacing: 0.3px;
  background-color: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-white-premium:hover {
  background-color: var(--bg-white);
  color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Hero Feature Badges Bar */
.hero-features-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 45px;
}

.hero-feature-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, background 0.3s ease;
}

.hero-feature-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

/* Hero Scroll Down Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  color: #ffffff;
  font-size: 1.2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: bounceScroll 2.2s infinite;
}

.hero-scroll-indicator:hover {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: #ffffff;
}

@keyframes bounceScroll {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-8px);
  }
  60% {
    transform: translateX(-50%) translateY(-4px);
  }
}

/* ---- 10. Hero subtitle con elegancia final ---- */
.hero-subtitle {
  font-size: 0.78rem;
  letter-spacing: 8px;
  color: rgba(230, 246, 235, 0.88);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  font-weight: 500;
}

/* ---- 11. Animaciones escalonadas del hero ---- */
.hero-subtitle {
  animation: fadeInUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.hero-title {
  animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

.hero-description {
  animation: fadeInUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both;
}

.hero-cta {
  animation: fadeInUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.85s both;
}

/* ---- 12. Divider en verde corporativo — acento de marca ---- */
.divider {
  background: linear-gradient(to right, transparent, var(--primary-green), transparent);
  height: 2px;
  width: 80px;
  margin: 22px auto 0 auto;
  border-radius: 1px;
}

.section-header-left .divider {
  margin-left: 0;
  margin-right: auto;
}

/* ---- 13. Collage badge ---- */
.collage-badge {
  border-left-color: var(--primary-green);
}

.collage-badge-number {
  color: var(--primary-green);
}

/* ---- 14. About tagline con borde lateral verde ---- */
.about-tagline {
  font-size: 1.45rem;
  color: var(--text-dark);
  position: relative;
  padding-left: 22px;
  border-left: 3px solid var(--primary-green);
  font-style: italic;
  margin-bottom: 24px;
}

/* ---- 15. Rest-spec-check ---- */
.rest-spec-check {
  background-color: var(--primary-green-light);
  color: var(--primary-green);
  border: 1px solid rgba(0, 150, 64, 0.2);
}

/* ---- 16. Menu card top accent en verde corporativo ---- */
.menu-card::before {
  background: var(--primary-green);
  height: 5px;
}

/* ---- 17. Micro-animaciones reveal al hacer scroll ---- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delays escalonados para grids ---- */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ---- 18. Nav responsive 1250px ---- */
@media (max-width: 1250px) {
  .nav-menu.open {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-cta .btn,
  .hero-cta .btn-primary-premium,
  .hero-cta .btn-outline-white-premium {
    width: 80%;
    max-width: 300px;
    text-align: center;
    justify-content: center;
  }

  .hero-title {
    font-size: 3rem;
  }
}

/* ---- 19. Ultra-small screens (< 480px) ---- */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2.1rem;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 0.97rem;
  }

  .hero-subtitle {
    font-size: 0.7rem;
    letter-spacing: 4px;
  }

  .booking-info-title {
    font-size: 1.6rem;
  }

  .booking-info-panel {
    padding: 28px 18px;
  }

  .booking-form-panel {
    padding: 28px 18px;
  }

  .booking-form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .room-info {
    padding: 20px;
  }

  .service-card {
    padding: 28px 20px;
  }

  .section-header h2 {
    font-size: 1.9rem;
    letter-spacing: -0.3px;
  }

  .about-tagline {
    font-size: 1.1rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-item {
    height: 160px;
  }

  .rest-cta-group {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .rest-cta-group .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .carta-actions {
    flex-direction: column;
  }

  .filter-btn {
    padding: 6px 12px;
    font-size: 0.78rem;
  }

  .collage-badge {
    left: -5px !important;
    max-width: 160px !important;
    padding: 12px 16px !important;
  }

  .section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .menu-card {
    padding: 28px 18px;
  }

  .carta-magazine-card {
    padding: 30px 22px;
  }

  .sustainability-card {
    padding: 28px 22px;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ==========================================================================
   PRINT MEDIA STYLES (NATIVE BROWSER PRINT FOR MENU A4 TEMPLATE)
   ========================================================================== */
@media print {
  body * {
    visibility: hidden !important;
  }

  body {
    background: #ffffff !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  #printable-menu-a4,
  #printable-menu-a4 * {
    visibility: visible !important;
  }

  #printable-menu-a4 {
    position: fixed !important;
    left: 0 !important;
    top: 0 !important;
    width: 210mm !important;
    height: 297mm !important;
    max-height: 297mm !important;
    margin: 0 !important;
    padding: 10mm 12mm !important;
    box-shadow: none !important;
    border: none !important;
    box-sizing: border-box !important;
    background: #ffffff !important;
    transform: none !important;
    z-index: 999999 !important;
    font-size: 10pt !important;
  }

  #printable-menu-a4 > div {
    border: 2px solid #009640 !important;
    padding: 16px 20px !important;
    height: 100% !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  }

  @page {
    size: A4 portrait;
    margin: 0;
  }
}


/* ==========================================================================
   ENHANCED MOBILE DESIGN SYSTEM & PREMIUM TOUCH EXPERIENCE
   ========================================================================== */
@media (max-width: 768px) {
  /* Rich Mobile Navigation Header Drawer */
  .nav-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 4px 14px 4px;
    border-bottom: 1.5px solid var(--border-color);
    margin-bottom: 8px;
  }

  .nav-menu-logo-img {
    height: 38px;
    object-fit: contain;
  }

  .nav-menu-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-dark);
    cursor: pointer;
    line-height: 1;
    padding: 0 6px;
  }

  .nav-link i {
    color: var(--primary-green);
    font-size: 1.05rem;
    margin-right: 10px;
    width: 20px;
    text-align: center;
  }

  /* Card aesthetic enhancements on mobile */
  .service-card,
  .room-card,
  .menu-card,
  .about-card,
  .feature-card,
  .testimonial-card {
    border-radius: 16px !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
  }

  .service-card:active,
  .room-card:active,
  .menu-card:active {
    transform: scale(0.985) !important;
  }

  /* Hero badge pill enhancement */
  .hero-badge-pill {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    padding: 8px 16px !important;
    border-radius: 30px !important;
    font-size: 0.82rem !important;
  }
}

/* ==========================================================================
   RESPONSIVE MENU PREVIEW MODALS (A4 REPLICA FIT FOR MOBILE & DESKTOP)
   ========================================================================== */
#menu-preview-modal > div,
#home-menu-modal > div {
  max-width: 720px !important;
  width: 95vw !important;
  max-height: 90vh !important;
  border-radius: 16px !important;
}

#modal-menu-preview-container,
#home-menu-preview-container {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  padding: 8px !important;
}

@media (max-width: 768px) {
  #menu-preview-modal,
  #home-menu-modal {
    padding: 6px !important;
  }

  #modal-menu-preview-container,
  #home-menu-preview-container {
    padding: 2px !important;
    box-shadow: none !important;
  }

  #modal-menu-preview-container #printable-menu-a4,
  #home-menu-preview-container #printable-menu-a4 {
    padding: 10px 8px !important;
    font-size: 0.72rem !important;
    max-width: 100% !important;
    border-radius: 6px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  #modal-menu-preview-container #printable-menu-a4 > div,
  #home-menu-preview-container #printable-menu-a4 > div {
    padding: 10px 8px !important;
  }

  #modal-menu-preview-container #printable-menu-a4 div[style*="font-size: 2.2rem"],
  #modal-menu-preview-container #printable-menu-a4 div[style*="font-size: 2.3rem"],
  #modal-menu-preview-container #printable-menu-a4 div[style*="font-size: 2.4rem"],
  #home-menu-preview-container #printable-menu-a4 div[style*="font-size: 2.2rem"],
  #home-menu-preview-container #printable-menu-a4 div[style*="font-size: 2.3rem"],
  #home-menu-preview-container #printable-menu-a4 div[style*="font-size: 2.4rem"] {
    font-size: 1.15rem !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 2px !important;
  }

  #modal-menu-preview-container #printable-menu-a4 div[style*="font-size: 1.2rem"],
  #modal-menu-preview-container #printable-menu-a4 div[style*="font-size: 1.25rem"],
  #home-menu-preview-container #printable-menu-a4 div[style*="font-size: 1.2rem"],
  #home-menu-preview-container #printable-menu-a4 div[style*="font-size: 1.25rem"] {
    font-size: 0.8rem !important;
  }

  #modal-menu-preview-container #printable-menu-a4 div[style*="font-size: 1.1rem"],
  #modal-menu-preview-container #printable-menu-a4 div[style*="font-size: 1.05rem"],
  #modal-menu-preview-container #printable-menu-a4 div[style*="font-size: 1.18rem"],
  #home-menu-preview-container #printable-menu-a4 div[style*="font-size: 1.1rem"],
  #home-menu-preview-container #printable-menu-a4 div[style*="font-size: 1.05rem"],
  #home-menu-preview-container #printable-menu-a4 div[style*="font-size: 1.18rem"] {
    font-size: 0.78rem !important;
    margin-bottom: 2px !important;
  }

  #modal-menu-preview-container #printable-menu-a4 div[style*="font-size: 0.95rem"],
  #modal-menu-preview-container #printable-menu-a4 div[style*="font-size: 0.93rem"],
  #home-menu-preview-container #printable-menu-a4 div[style*="font-size: 0.95rem"],
  #home-menu-preview-container #printable-menu-a4 div[style*="font-size: 0.93rem"] {
    font-size: 0.75rem !important;
    line-height: 1.25 !important;
  }
}


/* =========================================
   PD COOKIE CONSENT CUSTOM STYLES
   ========================================= */
#pdcc-modal-container, #pdcc-message-container {
  border-radius: 12px !important;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15) !important;
}
#pdcc-modal-container, #pdcc-modal-container *, #pdcc-message-container, #pdcc-message-container * {
  font-family: 'Inter', sans-serif !important;
}
.pdcc-btn {
  border-radius: 8px !important;
  font-weight: 500 !important;
  text-transform: none !important;
  transition: all 0.3s ease !important;
}
.pdcc-btn:hover {
  opacity: 0.9 !important;
  transform: translateY(-1px) !important;
}
#pdcc-modal-bg {
  backdrop-filter: blur(5px) !important;
  background-color: rgba(35, 31, 32, 0.7) !important;
}


/* =========================================
   ROOM BUTTON MOBILE FIX
   ========================================= */
@media (max-width: 480px) {
  .room-footer {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
  .room-btn {
    width: 100% !important;
    text-align: center !important;
  }
}

