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

:root {
  --color-sand: #F4F1EA;
  --color-turquoise: #00BFDC;
  --color-primary: #00B4D8;
  --color-primary-dark: #0096B7;
  --color-primary-light: #48CAE4;
  --color-primary-red: #00B4D8;
  --color-peach: #F3B38D;
  --color-dark-gray: #121212;
  --color-gold: #C5A059;
  --color-charcoal: #1A1A1B;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --shadow-luxury: 0 30px 60px -12px rgba(0, 180, 216, 0.15);

  /* Typography Variables */
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif;
}


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

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--color-sand);
  color: var(--color-charcoal);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--color-charcoal);
  letter-spacing: 0.02em;
}

/* Strict Typographic Scale */
.title-xl {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 400;
}

@media (min-width: 768px) {
  .title-xl {
    font-size: 4.2rem;
  }
}

.title-lg {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 300;
}

@media (min-width: 768px) {
  .title-lg {
    font-size: 2.8rem;
  }
}

.title-md {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 500;
}

@media (min-width: 768px) {
  .title-md {
    font-size: 1.8rem;
  }
}

.title-sm {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 600;
}

.text-base {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}

.text-lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-primary);
}

.label-gold {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-gold);
}

.label-blue {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-primary);
}

.text-primary-blue {
  color: var(--color-primary);
}

.text-white {
  color: white !important;
}

.text-charcoal {
  color: var(--color-charcoal) !important;
}

/* Layout Utilities */
.fixed {
  position: fixed;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.h-screen {
  height: 100vh;
}

.z-50 {
  z-index: 50;
}

.z-10 {
  z-index: 10;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.items-center {
  align-items: center;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:flex {
    display: flex;
  }

  .md\:pt-32 {
    padding-top: 8rem;
  }

  .md\:pt-48 {
    padding-top: 12rem;
  }
}

/* Spacing Utilities */
.pt-20 {
  padding-top: 5rem;
}

.pt-24 {
  padding-top: 6rem;
}

.pt-32 {
  padding-top: 8rem;
}

.pt-40 {
  padding-top: 10rem;
}

.pt-48 {
  padding-top: 12rem;
}

.pt-64 {
  padding-top: 16rem;
}

.pb-20 {
  padding-bottom: 5rem;
}

.pb-24 {
  padding-bottom: 6rem;
}

.pb-32 {
  padding-bottom: 8rem;
}

.pb-48 {
  padding-bottom: 12rem;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-24 {
  padding: 6rem 0;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.text-center {
  text-align: center;
}

.text-white {
  color: var(--color-white);
}

.text-turquoise {
  color: var(--color-turquoise);
}

.text-gold {
  color: var(--color-gold);
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.9rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-4xl {
  font-size: 2.5rem;
}

.text-5xl {
  font-size: 3.5rem;
}

.text-7xl {
  font-size: 5rem;
}

.font-light {
  font-weight: 200;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.uppercase {
  text-transform: uppercase;
}

.italic {
  font-style: italic;
}

.tracking-widest {
  letter-spacing: 0.25em;
}

.tracking-tight {
  letter-spacing: -0.01em;
}

/* BUTTON STYLES */
.btn-primary {
  background-color: var(--color-primary);
  color: white;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0, 180, 216, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 180, 216, 0.4);
  background-color: var(--color-primary-dark);
}

.btn-outline-light {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: white;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.btn-video-play {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-video-play svg {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  padding: 6px;
  width: 30px;
  height: 30px;
}

.btn-video-play:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: white;
  color: black;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* REPLICATED NAVBAR STYLES */
/* Consolidated Navbar Bar Styles */
.navbar-pill-container {
  position: fixed;
  top: 1.5rem;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  transition: all 0.3s;
}

.navbar-pill-inner {
  display: flex;
  gap: 16px;
  pointer-events: auto;
  align-items: center;
  background: white;
  padding: 10px 20px;
  border-radius: 100px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-logo-img {
  height: 48px;
  width: auto;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-links-pill {
  background: rgba(18, 18, 18, 0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 8px 25px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 50px;
  transition: all 0.3s;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-link-active {
  background: rgba(255, 255, 255, 0.25) !important;
}

.btn-peach-pill {
  background-color: var(--color-peach);
  color: white;
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(243, 179, 141, 0.25);
  transition: all 0.3s;
  cursor: pointer;
  white-space: nowrap;
}

.btn-peach-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(243, 179, 141, 0.35);
  filter: brightness(1.05);
}

/* Luxury Effects */
.glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.card-premium {
  background: white;
  padding: 3rem;
  border-radius: 30px;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.card-premium:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-luxury);
}

.border-gold {
  border-bottom: 2px solid var(--color-gold);
  width: 60px;
  margin: 0 auto;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out forwards;
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
  background: rgba(30, 30, 30, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes slowZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

.animate-slow-zoom {
  animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-300 {
  animation-delay: 0.3s;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Removed overflow: hidden to prevent BookingBar dropdown cutoff */
}

.hero-carousel-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  /* Moved overflow: hidden here to clip scaling images */
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 20s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.40);
  z-index: 1;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, transparent 50%, rgba(244, 241, 234, 0.4) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  width: 100%;
  max-width: 72rem;
  overflow: visible;
}

@media (max-width: 768px) {
  .hero-content {
    padding-top: 100px;
  }
}

.hero-tagline {
  color: white;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 700;
  opacity: 0.9;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: white;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
  font-weight: 400;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  max-width: 38rem;
  margin: 0 auto 3rem;
  font-weight: 200;
  line-height: 1.8;
}

.hero-cta-row {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero-cta-row {
    flex-direction: row;
  }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
  z-index: 10;
}

.hero-scroll-line {
  width: 1px;
  height: 3rem;
  background: rgba(255, 255, 255, 0.5);
}

.hero-scroll-text {
  font-size: 10px;
  color: white;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
}

/* Booking Bar Styles */
.booking-bar-wrapper {
  margin-top: 3rem;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
  position: relative;
  z-index: 50;
}

.booking-bar-container {
  background: white;
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding: 6px 6px 6px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  gap: 0;
  overflow: visible;
}

.booking-bar-container:hover {
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.booking-section {
  padding: 10px 16px;
  text-align: left;
  transition: background 0.2s;
  border-radius: 40px;
  cursor: pointer;
  position: relative;
}

.booking-name {
  flex: 1;
  border-right: 1px solid #e0e0e0;
}

.booking-dates {
  flex: 1.2;
  border-right: 1px solid #e0e0e0;
}

.booking-guests {
  flex: 0.8;
  border-right: 1px solid #e0e0e0;
}

.booking-requests {
  flex: 1.2;
}

.booking-section:hover {
  background: #F7F7F7;
}

.booking-section label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  color: #222;
  margin-bottom: 2px;
  letter-spacing: 0.05em;
  font-family: 'Montserrat', sans-serif;
}

.booking-section label svg {
  color: var(--color-primary);
}

.booking-guest-display {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #6A6A6A;
}

.chevron-icon {
  transition: transform 0.3s ease;
}

.chevron-open {
  transform: rotate(180deg);
}

.booking-section input,
.datepicker-input,
.special-requests-input {
  background: transparent;
  border: none;
  font-size: 14px;
  color: #6A6A6A;
  font-weight: 500;
  width: 100%;
  cursor: pointer;
  padding: 0;
}

.booking-section input:focus,
.datepicker-input:focus,
.special-requests-input:focus {
  outline: none;
}

.booking-section input::placeholder,
.special-requests-input::placeholder {
  color: #AAA;
  font-style: italic;
  font-size: 13px;
}

.border-r {
  border-right: 1px solid #DDDDDD;
}

.search-circle-btn {
  background: var(--color-primary);
  color: white;
  height: 48px;
  padding: 0 24px;
  border-radius: 50px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.search-circle-btn:hover {
  background-color: var(--color-primary-dark);
  transform: scale(1.03);
}

.booking-btn-wrap {
  padding: 8px;
}

.booking-btn-label {
  display: none;
}

@media (min-width: 1024px) {
  .booking-btn-label {
    display: inline;
  }
}

.guest-summary-text {
  font-size: 14px;
  font-weight: 500;
  color: #6A6A6A;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Guest Picker Redesign */
.guest-picker-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 9999;
  overflow: visible;
  min-width: 300px;
}

.guest-picker-content {
  padding: 1.25rem;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.guest-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
}

.guest-type {
  font-size: 0.85rem;
  font-weight: 600;
  display: block;
  color: #333;
}

.guest-age {
  font-size: 0.65rem;
  color: #aaa;
  display: block;
}

.guest-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.guest-count {
  width: 1.5rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: #333;
}

.guest-close-btn {
  width: 100%;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: right;
  color: #999;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.guest-close-btn:hover {
  color: #222;
}

/* Duplicate .guest-picker-dropdown removed — see rule above */

.guest-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #B0B0B0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #717171;
  cursor: pointer;
  transition: all 0.2s;
}

.guest-btn:hover {
  border-color: #222;
  color: #222;
}

/* Datepicker Overrides */
.react-datepicker-wrapper {
  width: 100%;
}

.react-datepicker {
  font-family: 'Montserrat', sans-serif !important;
  border-radius: 20px !important;
  border: none !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
  padding: 10px !important;
}

.react-datepicker__header {
  background-color: white !important;
  border-bottom: none !important;
}

.react-datepicker__day--selected,
.react-datepicker__day--in-selecting-range,
.react-datepicker__day--in-range {
  background-color: var(--color-primary-red) !important;
  border-radius: 50% !important;
}

.react-datepicker__day:hover {
  border-radius: 50% !important;
}

@media (max-width: 768px) {
  .booking-bar-wrapper {
    max-width: 100%;
    padding: 0 1rem;
  }

  .booking-bar-container {
    flex-direction: column;
    border-radius: 24px;
    padding: 16px;
  }

  .booking-section {
    border-right: none;
    border-bottom: 1px solid #EEE;
    width: 100%;
    margin-bottom: 8px;
  }

  .border-r {
    border-right: none;
  }

  .search-circle-btn {
    width: 100%;
    margin-top: 8px;
  }
}

.object-cover {
  object-fit: cover;
}

.overflow-hidden {
  overflow: hidden;
}

.no-underline {
  text-decoration: none;
}

/* ===== SECTION SHARED ===== */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-charcoal);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.8rem;
  }
}

.section-divider {
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  margin: 0 auto 3rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: #888;
  max-width: 500px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

/* ===== FEATURES (Premium Layout) ===== */
.section-features {
  padding: 5rem 0;
  background: var(--color-sand);
  overflow: hidden;
}

.features-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .features-container {
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
  }
}

.features-left {
  text-align: left;
}

.features-left .section-label {
  text-align: left;
}

.features-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .features-heading {
    font-size: 3rem;
  }
}

.features-subtitle {
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.features-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .features-card-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.feat-card {
  background: white;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 180, 216, 0.1);
}

.feat-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.feat-card:hover .feat-card-icon {
  transform: scale(1.1);
}

.feat-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 0.15rem;
}

.feat-card-desc {
  font-size: 0.72rem;
  color: #999;
  line-height: 1.5;
}

/* Right: Stacked Images */
.features-right {
  position: relative;
}

.features-img-stack {
  position: relative;
  padding-bottom: 2rem;
  padding-right: 2rem;
}

.features-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.14);
  position: relative;
  z-index: 1;
}

.features-img-main img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.features-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border: 4px solid white;
  z-index: 2;
}

.features-img-secondary img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.features-floating-badge {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: white;
  border-radius: 16px;
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  z-index: 3;
}

.features-badge-stars {
  display: flex;
  gap: 2px;
}

.features-badge-score {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.features-badge-label {
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #999;
}


.feature-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.82rem;
  color: #777;
  line-height: 1.7;
}

/* ===== REVIEWS ===== */
.section-reviews {
  padding: 5rem 0;
  background: white;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--color-sand);
  padding: 2rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-charcoal);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.review-author {
  margin-top: auto;
}

.review-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
}

.review-badge {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 700;
  padding: 4px 12px;
  background: rgba(0, 180, 216, 0.08);
  border-radius: 100px;
}

/* ===== PROXIMITY SECTION (Split) ===== */
.section-proximity {
  padding: 5rem 0;
  background: white;
}

.proximity-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

@media (min-width: 768px) {
  .proximity-layout {
    grid-template-columns: 1fr 1.2fr;
  }
}

@media (min-width: 1024px) {
  .proximity-layout {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.proximity-image-col {
  position: relative;
}

.proximity-image-wrap {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.proximity-active-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(1.03);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.proximity-image-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: white;
  border-radius: 12px;
  padding: 0.6rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-charcoal);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.proximity-image-overlay svg {
  color: var(--color-primary);
}

.proximity-cards-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.proximity-card {
  background: #F9F8F4;
  padding: 0.8rem 1.25rem;
  border-radius: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1.5px solid transparent;
  cursor: pointer;
}

.proximity-card:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 20px rgba(0, 180, 216, 0.08);
  background: white;
}

.proximity-card-active {
  background: white !important;
  border: 1.5px solid var(--color-primary);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  /* Softer, grey shadow */
  transform: translateX(10px);
}

.proximity-card-active .proximity-card-icon {
  background: var(--color-primary);
  /* Solid blue for active */
  color: white;
  box-shadow: 0 4px 10px rgba(0, 180, 216, 0.2);
}

.proximity-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 180, 216, 0.05);
  border-radius: 12px;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.proximity-card:hover .proximity-card-icon {
  background: var(--color-primary);
  color: white;
}

.proximity-card-content {
  flex: 1;
}

.proximity-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.35rem;
}

.proximity-card-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-charcoal);
}

.proximity-card-dist {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-primary);
  background: rgba(0, 180, 216, 0.08);
  padding: 3px 10px;
  border-radius: 100px;
}

.proximity-card-desc {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.5;
}

/* Guest close button */
.guest-close-btn {
  width: 100%;
  padding: 0.6rem;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 0.5rem;
}

.guest-close-btn:hover {
  background: var(--color-primary-dark);
}

/* ===== WEATHER WIDGET ===== */
.footer-weather {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.weather-section {
  padding: 0;
  background: transparent;
}

.weather-card {
  max-width: 100%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.weather-main {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.weather-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.weather-temp {
  display: flex;
  flex-direction: column;
}

.weather-temp-value {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.weather-temp-label {
  font-size: 0.7rem;
  opacity: 0.8;
  font-weight: 500;
}

.weather-condition {
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 12px;
  border-radius: 100px;
}

.weather-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.weather-detail {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  opacity: 0.85;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--color-charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: white;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.footer-motto {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  font-weight: 700;
}

.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.25rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--color-primary-light);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-item:hover {
  color: white;
}

.footer-contact-item svg {
  color: var(--color-primary-light);
  flex-shrink: 0;
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.5;
}

/* ===== GALLERY ===== */
.gallery-section {
  padding: 5rem 0;
  background: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1.2fr 0.8fr;
    grid-auto-rows: minmax(280px, auto);
  }

  .gallery-item-large {
    grid-row: span 2;
  }
}

.gallery-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  min-height: 250px;
}

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

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.gallery-label {
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.gallery-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 400;
  margin-top: 2px;
}

/* ===== CTA SECTION V2 (with images) ===== */
.cta-section-v2 {
  padding: 6rem 1.5rem;
  background: var(--color-sand);
}

.cta-v2-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .cta-v2-inner {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
  }
}

.cta-v2-images {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1rem;
  height: 420px;
}

@media (max-width: 600px) {
  .cta-v2-images {
    height: 300px;
  }
}

.cta-v2-img-wide,
.cta-v2-img-portrait {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.cta-v2-img-wide img,
.cta-v2-img-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cta-v2-img-wide:hover img,
.cta-v2-img-portrait:hover img {
  transform: scale(1.05);
}

.cta-v2-img-wide {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.cta-v2-img-portrait {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.cta-v2-content {
  text-align: left;
}

@media (max-width: 899px) {
  .cta-v2-content {
    text-align: center;
  }
}

.cta-v2-label {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-v2-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--color-charcoal);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .cta-v2-title {
    font-size: 3rem;
  }
}

.cta-v2-desc {
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.cta-v2-desc strong {
  color: var(--color-charcoal);
  font-size: 1.3rem;
}

.cta-v2-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .cta-v2-buttons {
    flex-direction: row;
    gap: 1.5rem;
  }
}

@media (max-width: 899px) {
  .cta-v2-buttons {
    justify-content: center;
  }
}

.cta-btn-secondary-dark {
  background: transparent;
  color: var(--color-charcoal);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1.5px solid var(--color-charcoal);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.cta-btn-secondary-dark:hover {
  background: var(--color-charcoal);
  color: white;
  transform: translateY(-2px);
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: white;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.5rem;
  }
}

.cta-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-desc strong {
  color: white;
  font-size: 1.2rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 2.5rem;
  }
}

.cta-btn-primary {
  background: white;
  color: var(--color-primary-dark);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn-secondary {
  background: transparent;
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

/* ===== VILLA PAGE v2 EDITORIAL ===== */
.villa-page-v2 {
  background: white;
  min-height: 100vh;
}

.v2-hero {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.v2-hero-img-box {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.v2-hero-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 2;
}

.v2-label {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.v2-main-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .v2-main-title {
    font-size: 5rem;
  }
}

.v2-hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Sections */
.v2-section {
  padding: 8rem 0;
}

.bg-sand {
  background: var(--color-sand);
}

.bg-white {
  background: white;
}

.v2-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--color-charcoal);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.v2-heading-sm {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--color-charcoal);
  margin-bottom: 1rem;
}

.v2-divider {
  width: 60px;
  height: 2px;
  background: var(--color-primary);
  margin-top: -1rem;
  margin-bottom: 2rem;
}

/* Founders Grid */
.v2-founders-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 900px) {
  .v2-founders-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.v2-lead {
  font-size: 1.4rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--color-primary);
  margin-bottom: 2rem;
  line-height: 1.4;
}

.v2-text-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

.v2-cite {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--color-charcoal);
  margin-top: 2rem;
}

/* Values Grid */
.v2-values-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3rem;
}

@media (min-width: 768px) {
  .v2-values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.v2-value-card {
  text-align: center;
}

.v2-value-icon {
  width: 70px;
  height: 70px;
  background: white;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 180, 216, 0.1);
}

.v2-value-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--color-charcoal);
}

.v2-value-text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
}

/* ===== VILLA PAGE v4/v5 FINAL PREMIUM ===== */
.villa-page-v4 {
  background: white;
}

.v4-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.v4-hero-img-box {
  position: absolute;
  inset: 0;
}

.v4-hero-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v4-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 2;
}

.v4-badge {
  display: inline-block;
  padding: 8px 16px;
  background: var(--color-primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  border-radius: 4px;
  margin-bottom: 2rem;
}

.v4-main-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: white;
  line-height: 1.1;
  font-weight: 700;
}

@media (min-width: 768px) {
  .v4-main-title {
    font-size: 5.5rem;
  }
}

.v4-section {
  padding: 8rem 0;
  position: relative;
}

.v4-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: var(--color-charcoal);
  margin-bottom: 2rem;
  font-weight: 700;
}

.v4-heading-light {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: white;
  font-weight: 700;
}

.v4-label-gold {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

/* Story Section */
.v4-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6rem;
  align-items: center;
}

@media (min-width: 900px) {
  .v4-story-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.v4-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--color-primary);
  margin-bottom: 2.5rem;
}

.v4-text-content p {
  line-height: 1.8;
  color: #4a4a4a;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.v4-cite {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.3rem;
  margin-top: 3rem;
  color: var(--color-charcoal);
  border-left: 2px solid var(--color-primary);
  padding-left: 1.5rem;
}

.v4-rounded-img {
  border-radius: 50px;
  width: 100%;
}

/* Experience Section (Magazine Style) */
.v4-experience {
  background: #121212;
}

.v4-cocon-premium {
  display: grid;
  grid-template-columns: 1fr;
  background: white;
  border-radius: 60px;
  overflow: hidden;
  color: var(--color-charcoal);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

@media (min-width: 1024px) {
  .v4-cocon-premium {
    grid-template-columns: 1.5fr 1fr;
  }
}

.v4-cocon-img-wrap {
  position: relative;
  min-height: 500px;
}

.v4-cocon-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v4-cocon-badge {
  position: absolute;
  top: 40px;
  left: 40px;
  background: white;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.v4-cocon-text-wrap {
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.v4-title-magazine {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.v4-magazine-desc {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 3rem;
}

.v4-features-grid-mini {
  display: grid;
  gap: 1.5rem;
}

.v4-mini-feat {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 700;
  font-size: 1rem;
}

/* Dual Grid Row */
.v4-dual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 900px) {
  .v4-dual-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.v4-dual-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
}

.v4-card-img {
  height: 350px;
}

.v4-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v4-card-content {
  padding: 4rem;
}

.v4-card-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.v4-host-badge {
  display: inline-block;
  margin-top: 2.5rem;
  background: var(--color-primary);
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.v4-presta-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

.v4-presta-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--color-primary);
}

/* ===== PREMIUM VISIO SECTION ===== */
.v4-visio-section {
  padding: 8rem 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.v4-visio-img-wrapper {
  position: relative;
  border-radius: 30px;
  max-width: 500px;
  margin: 0 auto;
}

.v4-visio-img-wrapper::before {
  content: '';
  position: absolute;
  inset: -15px 15px 15px -15px;
  border: 2px solid var(--color-primary);
  border-radius: 30px;
  z-index: 0;
  opacity: 0.2;
}

.v4-visio-img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  aspect-ratio: 4/5;
}

.v4-visio-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}

.v4-visio-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.v4-visio-icon {
  background: var(--color-sand);
  color: var(--color-primary);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.v4-visio-text {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.5;
  font-weight: 500;
}

.v4-visio-signature {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--color-primary);
  margin-top: 2rem;
}

.bg-white-transparent {
  background: rgba(255, 255, 255, 0.03);
}

/* Visio Card Refined */
.v4-visio-card {
  background: var(--color-sand);
  padding: 6rem 4rem;
  border-radius: 60px;
  text-align: center;
}

.motto-box-serif {
  margin-top: 3rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-style: italic;
  color: var(--color-primary);
}

/* Final Gallery Portfolio */
.v4-gallery-final-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

@media (min-width: 640px) {
  .v4-gallery-final-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .v4-gallery-final-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.v4-gallery-card-premium {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.v4-gallery-card-premium img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.v4-gallery-card-premium:hover img {
  transform: scale(1.15);
}

.v4-gallery-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.v4-gallery-card-premium:hover .v4-gallery-label {
  opacity: 1;
  transform: translateY(0);
}

.v4-divider-gold {
  width: 80px;
  height: 3px;
  background: var(--color-primary);
}

.v4-subtle-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 100% 0%, rgba(0, 180, 216, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* ===== VILLA PAGE v5 REFINEMENTS ===== */

/* Engagements Redesign */
.v4-engagements-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

@media (min-width: 900px) {
  .v4-engagements-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.v4-engage-card {
  perspective: 1000px;
}

.v4-engage-card .card-inner {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 2rem;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 180, 216, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.v4-engage-card:hover .card-inner {
  transform: translateY(-10px);
  border-color: var(--color-primary);
  box-shadow: 0 20px 40px rgba(0, 180, 216, 0.1);
}

.v4-engage-card .icon-box {
  width: 54px;
  height: 54px;
  background: var(--color-sand);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  transition: all 0.4s;
}

.v4-engage-card:hover .icon-box {
  background: var(--color-primary);
  color: white;
  transform: scale(1.1);
}

.v4-engage-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-charcoal);
}

.v4-engage-card p {
  color: #666;
  line-height: 1.6;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Experience v5 Refined Layout */
.v4-cocon-refined {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 60px;
  overflow: hidden;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.4);
}

@media (min-width: 1024px) {
  .v4-cocon-refined {
    flex-direction: row;
    align-items: stretch;
  }

  .v4-cocon-img-half {
    width: 55%;
    position: relative;
  }

  .v4-cocon-text-half {
    width: 45%;
    padding: 6rem;
  }
}

.v4-cocon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.v4-cocon-badge-minimal {
  position: absolute;
  top: 30px;
  left: 30px;
  background: white;
  color: var(--color-primary);
  padding: 8px 16px;
  font-size: 0.7rem;
  font-weight: 900;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* Dual Grid Compact */
.v4-dual-grid-compact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .v4-dual-grid-compact {
    grid-template-columns: 1fr 1fr;
  }
}

.v4-dual-card-compact {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
}

.v4-card-img-compact {
  height: 250px;
}

.v4-card-img-compact img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v4-card-content-compact {
  padding: 3rem;
}

.v4-presta-list-compact {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.v4-presta-item-tiny {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
}

/* ===== VILLA PAGE v6 REFINEMENTS ===== */

/* Section Engagements - Enhanced Visuals */
.v4-engage-card .card-inner {
  border: 1px solid rgba(0, 180, 216, 0.1);
  background: linear-gradient(135deg, #ffffff 0%, #f9fbfd 100%);
}

.v4-label-gold {
  letter-spacing: 0.5em;
  /* more premium air */
}

/* Experience v6 - Better Info Disposition */
.v4-experience {
  background: #0d0d0d;
  /* even deeper dark */
}

.v4-cocon-refined {
  margin-bottom: 5rem;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

@media (min-width: 1024px) {
  .v4-cocon-img-half {
    flex: 0 0 50%;
    /* 50/50 split for better balance if images are too large */
    max-width: 50%;
  }

  .v4-cocon-text-half {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 5rem 6rem;
  }
}

.v4-dual-grid-compact {
  max-width: 1200px;
  margin: 0 auto;
}

.v4-dual-card-compact {
  transition: transform 0.4s ease;
}

.v4-dual-card-compact:hover {
  transform: translateY(-8px);
}

.v4-title-magazine {
  font-size: 3rem;
  /* slightly smaller for better fit */
}

.v4-magazine-desc {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}

.v4-presta-list-compact {
  justify-content: center;
}

@media (max-width: 768px) {
  .v4-cocon-text-half {
    padding: 3rem 2rem;
  }

  .v4-title-magazine {
    font-size: 2.2rem;
  }
}

/* ===== VILLA PAGE v7 REFINEMENTS ===== */

.v4-visio-card .card-top h3 {
  font-family: 'Cormorant Garamond', serif;
}

.motto-box-serif {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-primary);
}

.bg-sand {
  background-color: #fcf9f6;
}

/* Ensure hero text is ultra-visible */
.v4-hero-sub.text-white {
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ===== VILLA PAGE v8 REFINEMENTS ===== */

/* Consolidated Oasis Hub */
.v4-oasis-hub {
  background: #0d0d0d;
  padding: 10rem 0;
  color: white;
  position: relative;
}

.v4-hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 5rem;
}

@media (min-width: 1024px) {
  .v4-hub-grid {
    grid-template-columns: 1.4fr 1fr;
  }

  .v4-hub-left {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
}

.v4-hub-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  padding: 3.5rem;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.v4-hub-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--color-primary);
  transform: translateY(-5px);
}

.v4-hub-card.premium {
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.08) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(0, 180, 216, 0.2);
}

.v4-amenity-pill {
  background: rgba(0, 180, 216, 0.1);
  color: var(--color-primary);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 180, 216, 0.1);
}

/* Visio Section v8 - Premium & Interactive */
.v4-visio-premium {
  background: white;
  padding: 12rem 0;
  position: relative;
}

.v4-visio-glass {
  background: #fafafa;
  border-radius: 100px;
  padding: 8rem 4rem;
  max-width: 1300px;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 60px 120px rgba(0, 0, 0, 0.02);
  position: relative;
  overflow: hidden;
}

.v4-visio-glass::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.v4-visio-icon-floating {
  width: 120px;
  height: 120px;
  background: white;
  color: var(--color-primary);
  border-radius: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 3.5rem;
  box-shadow: 0 30px 60px rgba(0, 180, 216, 0.12);
  position: relative;
  z-index: 2;
}

.v4-benefit-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-top: 5rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .v4-benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.v4-benefit-item {
  background: white;
  padding: 3rem;
  border-radius: 40px;
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: all 0.4s ease;
  text-align: left;
}

.v4-benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.04);
  border-color: var(--color-primary);
}

.v4-benefit-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 1.5rem 0 1rem;
}

.v4-benefit-item p {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
}

.v4-visio-footer-note {
  margin-top: 4rem;
  padding: 2rem;
  background: rgba(0, 180, 216, 0.03);
  border-radius: 30px;
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
  font-style: italic;
}

/* ===== VILLA PAGE v9 REFINEMENTS - INTERACTIVE HUB ===== */

/* ===== VILLA PAGE v11 - OASIS HUB (BACKGROUND IMAGE) ===== */

.v4-oasis-bg-section {
  position: relative;
  padding: 6rem 0;
  color: white;
  overflow: hidden;
  background-color: var(--color-charcoal);
  /* Fallback */
}

.v4-oasis-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 1.5s ease;
}

/* Subtle zoom effect on section hover */
.v4-oasis-bg-section:hover .v4-oasis-bg-image {
  transform: scale(1.03);
}

.v4-oasis-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.9));
  z-index: 2;
  backdrop-filter: blur(4px);
}

.v4-oasis-bg-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.v4-oasis-card {
  padding: 3rem;
}

.min-hub-header {
  margin-bottom: 2.5rem;
}

.min-hub-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.min-hub-tagline {
  font-size: 0.9rem;
  color: var(--color-primary);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 1;
}

.min-hub-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 3rem;
  margin-bottom: 2.5rem;
}

.min-hub-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.min-hub-feature-item:hover {
  border-color: var(--color-primary);
  padding-left: 5px;
  background: rgba(255, 255, 255, 0.05);
  /* Slight highlight on hover */
}

.min-hub-feature-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

/* COMPACT TOGGLE NAVIGATION */
.min-hub-nav {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  /* Reduced margin */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.min-hub-nav-item {
  padding-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.min-hub-nav-item:hover {
  color: #fff;
}

.min-hub-nav-item.active {
  color: var(--color-primary);
}

.min-hub-nav-item.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
}

@media (max-width: 640px) {
  .min-hub-feature-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

/* Booking Modal */
.booking-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.booking-modal-content {
  background: white;
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(90deg);
}

.modal-header {
  background: #000;
  padding: 25px;
  text-align: center;
}

.modal-body {
  padding: 40px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.summary-label {
  color: #888;
  font-size: 0.95rem;
}

.summary-value {
  font-weight: 500;
  color: #1a1a1b;
}

.summary-divider {
  height: 1px;
  background: #eee;
  margin: 25px 0;
}

.summary-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #1a1a1b;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.total-row {
  margin-top: 10px;
}

.total-row .summary-label {
  color: #1a1a1b;
  font-weight: 700;
  font-size: 1.1rem;
}

.total-row .summary-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: #000;
}

.modal-confirm-btn {
  width: 100%;
  background: #000;
  color: white;
  border: none;
  padding: 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 40px;
  cursor: pointer;
  transition: all 0.3s;
}

.modal-confirm-btn:hover {
  background: #1a1a1b;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Animations */
.animate-fade-in {
  animation: fadeIn 0.4s ease-out;
}

.animate-scale-up {
  animation: scaleUp 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ===== PREMIUM REDESIGN UTILITIES (V4) ===== */

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.premium-input {
  background: rgba(255, 255, 255, 0.8) !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  border-radius: 12px !important;
  padding: 1.25rem !important;
  font-size: 0.9rem !important;
  transition: all 0.3s ease !important;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02) !important;
}

.premium-input:focus {
  border-color: var(--color-primary) !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.05) !important;
}

.premium-label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
  display: block;
}

.premium-btn-charcoal {
  background: var(--color-charcoal);
  color: white;
  padding: 1.25rem;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid transparent;
}

.premium-btn-charcoal:hover {
  background: #000;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.1);
}

/* DatePicker Customization */
.react-datepicker-wrapper {
  width: 100%;
}

.react-datepicker__input-container input {
  width: 100%;
}

/* Mobile Adjustments Audit (V4) */
@media (max-width: 768px) {
  .title-xl {
    font-size: 2.8rem !important;
  }

  .title-lg {
    font-size: 2rem !important;
  }

  .section-features,
  .section-proximity,
  .py-24 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .v4-oasis-bg-section {
    padding: 3.5rem 0.5rem !important; /* Minimized horizontal padding */
  }

  .v4-oasis-card {
    padding: 1.25rem !important; /* Gain horizontal space */
  }

  .min-hub-feature-grid {
    grid-template-columns: repeat(2, 1fr); /* Force 2 columns unless very narrow */
    gap: 1.25rem 0.75rem;
  }

  .min-hub-feature-item span {
    font-size: 0.8rem !important; /* Smaller text to avoid wrap */
  }

  .min-hub-title {
    font-size: 2rem !important;
  }

  .card-premium {
    padding: 1.5rem !important;
  }
}

/* ===== MOBILE NAVIGATION (V4) ===== */

.mobile-toggle-btn {
  display: none;
  background: rgba(18, 18, 18, 0.8);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px;
  border-radius: 15px;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.mobile-nav-dropdown {
  position: absolute;
  top: 110%;
  left: 1.5rem;
  right: 1.5rem;
  background: white;
  border-radius: 30px;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-charcoal);
  text-decoration: none;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-link.active {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.mobile-cta-btn {
  background: var(--color-primary);
  color: white;
  text-align: center;
  padding: 1rem;
  border-radius: 15px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 0.5rem;
}

@media (max-width: 1024px) {

  .desktop-links,
  .desktop-cta {
    display: none !important;
  }

  .mobile-toggle-btn {
    display: block !important;
  }
}

/* ===== GLOBAL RESPONSIVENESS PATCHES (V4) ===== */

@media (max-width: 768px) {
  .container {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  /* Stacking Grids */
  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4,
  .v4-engagement-grid {
    grid-template-columns: 1fr !important;
  }

  .v4-oasis-grid {
    display: flex !important;
    flex-direction: column !important;
  }

  .v4-story-grid {
    grid-template-columns: 1fr !important;
  }

  /* Feature Stacking */
  .features-container {
    flex-direction: column !important;
    gap: 3rem !important;
  }

  .features-left,
  .features-right {
    width: 100% !important;
  }

  /* Proximity Audit */
  .proximity-premium-card {
    height: auto !important;
  }
}

/* ===== REFINED COMPONENT STACKING (V4) ===== */

@media (max-width: 768px) {

  /* Villa Page Stacking */
  .v4-story-grid,
  .v4-engagements-grid,
  .v4-gallery-final-grid,
  .v4-visio-section .grid {
    grid-template-columns: 1fr !important;
  }

  .v4-engagement-card,
  .v4-engage-card {
    width: 100% !important;
  }

  /* Hub Tabs Stacking */
  .min-hub-nav {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .min-hub-feature-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Navbar Fixed Overlap Fix */
  body {
    padding-top: 0 !important;
    /* Reset if any */
  }

  .v4-hero,
  .hero-section {
    padding-top: 120px !important;
  }

  .py-24,
  .v4-section {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  /* Modal Ergonomics */
  .booking-modal-content {
    width: 95% !important;
    margin: 10px !important;
    padding: 1.5rem !important;
  }
}

/* Navbar Fix for Mobile */
/* Removed redundant navbar container style */

.mobile-menu-active .navbar-pill-inner {
  background: white !important;
  border-radius: 20px 20px 0 0 !important;
}

.mobile-menu-active .mobile-nav-dropdown {
  border-radius: 0 0 20px 20px !important;
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
}

/* ===== FINAL MOBILE SPACING CALIBRATION (V4) ===== */

@media (max-width: 768px) {

  /* Increase padding to clear fixed navbar (top: 1rem + inner padding) */
  .v4-hero,
  .hero-section,
  .pt-40,
  .v4-visio-section {
    padding-top: 220px !important;
  }

  /* Specific page headers logic */
  .villa-page-v4 .v4-hero,
  .proximity-page-v4 .pt-40,
  .rates-page-v4 #tarifs {
    padding-top: 220px !important;
  }

  /* Title Scaling Refinement */
  .title-xl {
    font-size: 2.4rem !important;
    line-height: 1.1 !important;
  }

  .title-lg {
    font-size: 1.8rem !important;
    line-height: 1.2 !important;
  }

  /* Adjust Hero Image for higher padding */
  .v4-hero-img-box {
    height: 100% !important;
    min-height: 50vh !important;
  }

  /* Ensure proper spacing for the first section after hero */
  .v4-section {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
}

/* Ensure the fixed navbar has a background on mobile to prevent text clash */
@media (max-width: 1024px) {
  .navbar-logo-link {
    margin-right: auto;
  }

  .navbar-pill-inner {
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
}

/* ===== ULTRA-PREMIUM V5 FORM STYLES ===== */

.ultra-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.ultra-input-icon {
  position: absolute;
  left: 1.25rem;
  color: var(--color-primary);
  opacity: 0.7;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.ultra-input {
  background: white !important;
  border: 1px solid transparent !important;
  border-radius: 16px !important;
  padding: 1.25rem 1.25rem 1.25rem 3.5rem !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  color: var(--color-charcoal) !important;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
  width: 100%;
}

.ultra-input::placeholder {
  color: rgba(0, 0, 0, 0.3) !important;
  font-weight: 400 !important;
}

.ultra-input:focus,
.ultra-input:focus-within {
  border-color: rgba(0, 180, 216, 0.3) !important;
  box-shadow: 0 8px 25px rgba(0, 180, 216, 0.08), 0 0 0 4px rgba(0, 180, 216, 0.05) !important;
  transform: translateY(-2px);
}

.ultra-input:focus~.ultra-input-icon {
  opacity: 1;
}

.premium-btn-charcoal-v5 {
  background: linear-gradient(135deg, var(--color-charcoal) 0%, #000 100%);
  color: white;
  padding: 1.35rem;
  border-radius: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.premium-btn-charcoal-v5:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, #000 0%, #111 100%);
}

/* DatePicker V5 Specific */
.ultra-input-wrapper .react-datepicker-wrapper {
  width: 100%;
}

.ultra-input-wrapper .react-datepicker__input-container input {
  padding-left: 3.5rem !important;
}

/* ===== RATES V6 - DYNAMIC LAYOUT & ANIMATIONS ===== */

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fade-up 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.shadow-3xl {
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15), 0 18px 36px -18px rgba(0, 0, 0, 0.2);
}

/* Specific adjustments for V6 pricing display */
.text-lead {
  font-size: 1.15rem;
  line-height: 1.8;
  font-weight: 400;
  color: var(--color-charcoal);
}

.label-gold {
  color: var(--color-gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
}

/* Modal Content V6 */
.booking-modal-content {
  overflow: hidden;
  border: none;
  background: white;
}

.summary-section-title {
  color: var(--color-charcoal);
  opacity: 0.3;
  font-weight: 900;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

/* ===== RATES V9 - LAYOUT & ERGONOMICS REFINEMENTS ===== */

.shadow-4xl {
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.05), 0 30px 60px -30px rgba(0, 0, 0, 0.1);
}

.shadow-6xl {
  box-shadow: 0 60px 120px -30px rgba(0, 0, 0, 0.15), 0 40px 80px -40px rgba(0, 0, 0, 0.2);
}

.bg-sand\/10 {
  background-color: rgba(244, 241, 234, 0.1);
}

.bg-sand\/20 {
  background-color: rgba(244, 241, 234, 0.2);
}

.bg-sand\/30 {
  background-color: rgba(244, 241, 234, 0.3);
}

/* Form Interactivity Refinements */
.booking-field input:focus,
.booking-field button:focus {
  background-color: white !important;
  border-color: var(--color-gold) !important;
  box-shadow: 0 8px 25px rgba(197, 160, 89, 0.1) !important;
  transform: translateY(-2px);
}

.booking-field transition-all {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Modal v9 Refinements */
.animate-scale-up {
  animation: scale-up 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes scale-up {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}


/* ===== V10 FORM ERGONOMICS REFINEMENTS ===== */

.v10-field label {
  position: relative;
  z-index: 5;
  margin-bottom: 1rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.15em !important;
  display: block;
}

.v10-field .relative {
  width: 100%;
  position: relative;
  display: flex !important;
  align-items: center !important;
}

.v10-field input,
.v10-field button {
  width: 100% !important;
  padding: 1.25rem 1rem 1.25rem 3.5rem !important;
  background-color: rgba(244, 241, 234, 0.4) !important;
  border: 1px solid rgba(197, 160, 89, 0.2) !important;
  border-radius: 1.25rem !important;
  color: var(--color-charcoal) !important;
  font-family: var(--font-sans) !important;
  font-size: 0.875rem !important;
  transition: all 0.3s ease !important;
  outline: none !important;
  height: auto !important;
  min-height: 4rem !important;
}

.v10-field input:focus {
  background-color: white !important;
  border-color: var(--color-gold) !important;
  box-shadow: 0 10px 30px rgba(197, 160, 89, 0.1) !important;
}

.v10-field svg {
  pointer-events: none;
  z-index: 20;
  position: absolute !important;
  left: 1.25rem !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: var(--color-gold) !important;
  opacity: 0.6;
}

/* ===== V12 PREMIUM MOBILE NAVIGATION ===== */

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: white;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 2rem;
}

.mobile-nav-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.mobile-overlay-content {
  width: 100%;
  max-width: 400px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mobile-nav-overlay.visible .mobile-nav-link {
  opacity: 1;
  transform: translateY(0);
}

.link-number {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  opacity: 0.4;
}

.link-text {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-charcoal);
  transition: color 0.3s;
}

.mobile-nav-link.active .link-text {
  color: var(--color-primary);
}

.mobile-cta-btn-v12 {
  margin-top: 2rem;
  background: var(--color-primary);
  color: white;
  padding: 1.25rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 180, 216, 0.2);
  display: inline-block;
  text-decoration: none;
}

.mobile-menu-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 2rem;
}

/* Modern Animated Hamburger Toggle - Premium Version */
.mobile-toggle-btn {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2001; /* Higher than menu overlay */
  pointer-events: auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-toggle-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.hamburger-box {
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

.hamburger-inner {
  width: 100%;
  height: 2px;
  background: var(--color-charcoal);
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hamburger-box::before,
.hamburger-box::after {
  content: '';
  height: 2px;
  background: var(--color-charcoal);
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hamburger-box::before {
  width: 70%; /* Asymmetrical top line */
}

.hamburger-box::after {
  width: 60%; /* Asymmetrical bottom line */
}

/* Hover state: expand lines */
.mobile-toggle-btn:hover .hamburger-box::before,
.mobile-toggle-btn:hover .hamburger-box::after {
  width: 100%;
}

/* Active state: transformation to X */
.mobile-toggle-btn.active .hamburger-inner {
  opacity: 0;
  transform: translateX(-10px);
}

.mobile-toggle-btn.active .hamburger-box {
  align-items: center;
  justify-content: center;
}

.mobile-toggle-btn.active .hamburger-box::before {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.mobile-toggle-btn.active .hamburger-box::after {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* Hide desktop elements on mobile */
@media (max-width: 1024px) {

  .desktop-links,
  .desktop-cta {
    display: none !important;
  }
}


/* ===== V12 RESPONSIVENESS FIXES ===== */

.desktop-only {
  display: flex !important;
}

.mobile-only {
  display: none !important;
}

@media (max-width: 1024px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: flex !important;
  }

  .navbar-pill-inner {
    width: 100%;
    justify-content: space-between;
    padding: 0 1rem;
  }
}

/* Ensure overlay is truly full screen and interactive */
.mobile-nav-overlay {
  pointer-events: auto;
}

.mobile-menu-active {
  overflow: hidden;
  /* Prevent body scroll when menu open */
}


/* ===== V12.1 OVERLAY FIXES ===== */
.mobile-nav-overlay {
  z-index: 2000 !important;
  /* Higher than anything else */
  position: fixed !important;
  inset: 0 !important;
}

.mobile-toggle-btn {
  z-index: 2001 !important;
  /* Above overlay */
}

@media (max-width: 1024px) {
  .navbar-pill-container {
    padding: 0 1rem !important;
  }

  .navbar-pill-inner {
    width: 100% !important;
    max-width: none !important;
    justify-content: space-between !important;
    background: white !important;
    border-radius: 50px !important;
    padding: 8px 15px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
  }

  .navbar-logo-img {
    height: 40px !important;
  }
}


/* ===== V13 PROXIMITY PAGE PREMIUM STYLES ===== */
.proximity-page-v13 .title-xl {
  font-size: 4.5rem !important;
}

@media (max-width: 768px) {
  .proximity-page-v13 .title-xl {
    font-size: 3rem !important;
  }
}

.proximity-card-v13 {
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.proximity-card-v13:hover {
  box-shadow: 0 40px 80px -20px rgba(0, 180, 216, 0.15);
}

.shadow-premium {
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.08);
}


/* ===== V11.1 PREMIUM FORM & BUTTON REFINEMENTS ===== */

.btn-primary-pill {
  background: #00B4D8 !important; /* Force the exact Cyan from React */
  color: white !important;
  border: none;
  border-radius: 50px;
  padding: 12px 35px;
  font-family: var(--font-sans);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 25px rgba(0, 180, 216, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.9rem;
}

.btn-primary-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 180, 216, 0.3);
  filter: brightness(1.05);
}

.btn-primary-pill:active {
  transform: translateY(-1px);
}

/* Ensure DatePicker fits V10 style perfectly */
.v10-field .react-datepicker-wrapper {
  width: 100%;
}

.v10-field .react-datepicker__input-container {
  display: block;
}

/* Shadow Utilities for V11.1 */
.shadow-4xl {
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.05), 0 30px 60px -30px rgba(0, 0, 0, 0.1) !important;
}

.shadow-6xl {
  box-shadow: 0 60px 120px -30px rgba(0, 0, 0, 0.15), 0 40px 80px -40px rgba(0, 0, 0, 0.2) !important;
}

/* Fix for possible overlap in mobile or narrow views */
@media (max-width: 640px) {
  .v10-field .absolute {
    left: 1rem !important;
  }

  .v10-field input,
  .v10-field button {
    padding-left: 3rem !important;
  }
}


/* ===== V13.1 MISSING UTILITY CLASSES ===== */
.bg-charcoal {
  background-color: var(--color-charcoal) !important;
}

.text-white {
  color: white !important;
}

.text-primary {
  color: var(--color-primary) !important;
}

.text-charcoal {
  color: var(--color-charcoal) !important;
}

/* Improve guest picker interaction to avoid hidden overlap */
.v10-field .guest-picker-wrapper {
  position: relative;
  z-index: 100;
}

/* Duplicate .guest-picker-dropdown removed — using rule at line ~975 */

/* Ensure mobility section has high contrast */
.proximity-page-v13 section.bg-charcoal {
  color: white;
}

.proximity-page-v13 section.bg-charcoal .title-lg,
.proximity-page-v13 section.bg-charcoal .title-sm,
.proximity-page-v13 section.bg-charcoal p {
  color: white !important;
}

.proximity-page-v13 section.bg-charcoal p {
  opacity: 0.7;
}


/* ===== V11.2 PREMIUM INLINE PICKER REFINEMENTS ===== */
.shadow-inner-premium {
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.02), 0 10px 30px -10px rgba(0, 0, 0, 0.05) !important;
}

.guest-picker-wrapper button:active {
  transform: scale(0.98);
}


/* ===== V11.2 FINAL BUTTON & FORM POLISH ===== */
.btn-primary-pill {
  padding: 0.8rem 2rem !important;
  font-size: 1rem !important;
  letter-spacing: normal !important;
  text-indent: 0;
  font-weight: 700 !important;
  text-transform: none !important;
  font-family: inherit !important;
  box-shadow: 0 10px 25px -5px rgba(0, 180, 216, 0.2) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary-pill span {
  font-weight: 700 !important;
  font-size: inherit !important;
  letter-spacing: inherit !important;
}

.btn-primary-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(0, 180, 216, 0.3) !important;
}

/* Ensure font-extra-bold utility exists if used */
.font-extra-bold {
  font-weight: 800;
}

/* Polish for inline guest picker */
.shadow-inner-premium {
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.01) !important;
}

.guest-picker-dropdown button:hover {
  filter: brightness(1.1);
}

/* Better responsive padding for the form */
@media (max-width: 640px) {
  .btn-primary-pill {
    padding: 1.25rem 2rem !important;
    letter-spacing: normal !important;
    font-size: 0.9rem !important;
  }
}

/* ============================================================
   V11.4 — RATES PAGE PREMIUM DESIGN SYSTEM
   ============================================================ */

/* --- Section --- */
.rates-section-v11 {
  position: relative;
  padding: 6rem 0 5rem;
  background: linear-gradient(175deg, #FAFAF7 0%, #FFFFFF 40%, #F8F6F1 100%);
  overflow: hidden;
}

.rates-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.rates-bg-shape--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.06) 0%, transparent 70%);
  top: -200px;
  right: -200px;
}

.rates-bg-shape--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(244, 241, 234, 0.6) 0%, transparent 70%);
  bottom: -150px;
  left: -200px;
}

/* --- Header --- */
.rates-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.rates-header__badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.rates-header__badge span {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.rates-header__line {
  width: 40px;
  height: 1px;
  background: var(--color-primary);
  opacity: 0.3;
}

.rates-header__title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--color-charcoal);
  line-height: 1.15;
  margin-bottom: 0.8rem;
}

.rates-header__subtitle {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: rgba(26, 26, 27, 0.45);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Grid --- */
.rates-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .rates-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}

/* --- LEFT: Info Panel --- */
.rates-info-panel {
  order: 2;
}

@media (min-width: 1024px) {
  .rates-info-panel {
    order: 1;
  }
}

.rates-info-panel__inner {
  padding-right: 0;
}

@media (min-width: 1024px) {
  .rates-info-panel__inner {
    padding-right: 2rem;
  }
}

.rates-info-panel__title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--color-charcoal);
  margin-bottom: 0.4rem;
}

.rates-info-panel__desc {
  font-size: 0.8rem;
  color: rgba(26, 26, 27, 0.35);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* --- Steps --- */
.rates-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.rates-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 1.4rem;
  border-radius: 20px;
  background: rgba(244, 241, 234, 0.4);
  border: 1px solid rgba(244, 241, 234, 0.8);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.rates-step:hover {
  background: rgba(0, 180, 216, 0.04);
  border-color: rgba(0, 180, 216, 0.15);
  transform: translateX(4px);
}

.rates-step__icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(0, 180, 216, 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.rates-step:hover .rates-step__icon {
  background: var(--color-primary);
  color: white;
}

.rates-step__number {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(0, 180, 216, 0.5);
  display: block;
  margin-bottom: 0.15rem;
}

.rates-step__title {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--color-charcoal);
  margin-bottom: 0.15rem;
}

.rates-step__desc {
  font-size: 0.72rem;
  color: rgba(26, 26, 27, 0.4);
  line-height: 1.5;
}

/* --- Villa Card --- */
.rates-villa-card {
  background: linear-gradient(135deg, rgba(244, 241, 234, 0.6) 0%, rgba(244, 241, 234, 0.2) 100%);
  border: 1px solid rgba(244, 241, 234, 0.9);
  border-radius: 24px;
  padding: 1.8rem;
  transition: all 0.3s ease;
}

.rates-villa-card:hover {
  border-color: rgba(0, 180, 216, 0.15);
}

.rates-villa-card__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.rates-villa-card__icon {
  color: var(--color-primary);
}

.rates-villa-card__header span {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26, 26, 27, 0.35);
}

.rates-villa-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.rates-villa-card__stat {
  text-align: center;
}

.rates-villa-card__val {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--color-charcoal);
  line-height: 1;
}

.rates-villa-card__label {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26, 26, 27, 0.25);
  margin-top: 0.3rem;
  display: block;
}

.rates-villa-card__price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(244, 241, 234, 0.8);
}

.rates-villa-card__price-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(26, 26, 27, 0.25);
}

.rates-villa-card__price-value {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-primary);
}

.rates-villa-card__price-value small {
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(26, 26, 27, 0.3);
}

/* --- RIGHT: Form Panel --- */
.rates-form-panel {
  order: 1;
}

@media (min-width: 1024px) {
  .rates-form-panel {
    order: 2;
  }
}

/* --- Form Card --- */
.rates-form-card {
  background: white;
  border-radius: 32px;
  border: 1px solid rgba(244, 241, 234, 0.8);
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.02),
    0 24px 60px -12px rgba(0, 0, 0, 0.06),
    0 50px 100px -30px rgba(0, 180, 216, 0.06);
  overflow: hidden;
  transition: box-shadow 0.5s ease;
}

.rates-form-card:hover {
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.02),
    0 30px 70px -12px rgba(0, 0, 0, 0.08),
    0 60px 120px -30px rgba(0, 180, 216, 0.08);
}

.rates-form-card__header {
  text-align: center;
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid rgba(244, 241, 234, 0.6);
  background: linear-gradient(180deg, rgba(244, 241, 234, 0.2) 0%, transparent 100%);
}

.rates-form-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(0, 180, 216, 0.08);
  color: var(--color-primary);
  padding: 0.35rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 0.8rem;
}

.rates-form-card__badge span {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.rates-form-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-charcoal);
  margin-bottom: 0.2rem;
}

.rates-form-card__sub {
  font-size: 0.65rem;
  color: var(--color-primary);
  opacity: 0.5;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* --- Form Fields --- */
.rates-form-fields {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.rates-field__label {
  display: block;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26, 26, 27, 0.3);
  margin-bottom: 0.5rem;
  margin-left: 0.2rem;
}

.rates-field__input-wrap {
  position: relative;
}

.rates-field__icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(0, 180, 216, 0.4);
  z-index: 2;
  transition: color 0.3s ease;
}

.rates-field__icon--small {
  left: 0.9rem;
}

.rates-field__input-wrap:focus-within .rates-field__icon {
  color: var(--color-primary);
}

.rates-field__input {
  width: 100%;
  background: rgba(244, 241, 234, 0.35);
  border: 1.5px solid rgba(244, 241, 234, 0.8);
  border-radius: 16px;
  padding: 1rem 1rem 1rem 2.8rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-charcoal);
  outline: none;
  transition: all 0.3s ease;
}

.rates-field__input::placeholder {
  color: rgba(26, 26, 27, 0.25);
  font-weight: 500;
}

.rates-field__input:focus {
  background: white;
  border-color: rgba(0, 180, 216, 0.35);
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* --- Guest Selects Row --- */
.rates-guests-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.rates-field--compact {
  min-width: 0;
}

.rates-field__select-wrap {
  position: relative;
}

.rates-field__select {
  width: 100%;
  background: rgba(244, 241, 234, 0.35);
  border: 1.5px solid rgba(244, 241, 234, 0.8);
  border-radius: 16px;
  padding: 1rem 2rem 1rem 2.4rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-charcoal);
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: all 0.3s ease;
}

.rates-field__select:focus {
  background: white;
  border-color: rgba(0, 180, 216, 0.35);
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.06);
}

.rates-field__chevron {
  position: absolute;
  right: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(26, 26, 27, 0.2);
  pointer-events: none;
}

/* --- Price Reveal --- */
.rates-price-reveal {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.rates-price-reveal--visible {
  max-height: 120px;
  opacity: 1;
}

.rates-price-reveal__inner {
  background: rgba(0, 180, 216, 0.05);
  border: 1px solid rgba(0, 180, 216, 0.1);
  border-radius: 20px;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rates-price-reveal__loader {
  display: flex;
  gap: 0.4rem;
  margin: 0 auto;
}

.rates-price-reveal__dot {
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  animation: bounce 1s infinite;
}

.rates-price-reveal__label {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.15rem;
}

.rates-price-reveal__nights {
  font-size: 0.72rem;
  color: rgba(26, 26, 27, 0.35);
}

.rates-price-reveal__amount {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--color-charcoal);
  letter-spacing: -0.02em;
  line-height: 1;
}

.rates-price-reveal__amount span {
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-left: 2px;
}

/* --- CTA Button --- */
.rates-cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1.15rem 2rem;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 18px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 12px 30px -6px rgba(0, 180, 216, 0.3);
  margin-top: 0.5rem;
}

.rates-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -8px rgba(0, 180, 216, 0.4);
  filter: brightness(1.05);
}

.rates-cta:active {
  transform: translateY(0);
}

.rates-cta__arrow {
  transition: transform 0.3s ease;
}

.rates-cta:hover .rates-cta__arrow {
  transform: translateX(4px);
}

/* --- WhatsApp Badge --- */
.rates-whatsapp-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding-top: 0.6rem;
}

.rates-whatsapp-badge__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #25D366;
  animation: pulse 2s infinite;
}

.rates-whatsapp-badge span {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(26, 26, 27, 0.25);
}

/* --- Conditions --- */
.rates-conditions {
  max-width: 1100px;
  margin: 5rem auto 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.rates-conditions__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-charcoal);
  margin-bottom: 0.3rem;
}

.rates-conditions__sub {
  font-size: 0.72rem;
  color: rgba(26, 26, 27, 0.35);
  margin-bottom: 2rem;
}

.rates-conditions__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .rates-conditions__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.rates-condition-card {
  background: rgba(244, 241, 234, 0.3);
  border: 1px solid rgba(244, 241, 234, 0.6);
  border-radius: 24px;
  padding: 1.8rem 1.2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.rates-condition-card:hover {
  border-color: rgba(0, 180, 216, 0.2);
  background: rgba(0, 180, 216, 0.03);
  transform: translateY(-3px);
}

.rates-condition-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(0, 180, 216, 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.rates-condition-card:hover .rates-condition-card__icon {
  background: var(--color-primary);
  color: white;
}

.rates-condition-card__title {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--color-charcoal);
  margin-bottom: 0.3rem;
}

.rates-condition-card__desc {
  font-size: 0.68rem;
  color: rgba(26, 26, 27, 0.35);
  line-height: 1.5;
}

/* --- Modal --- */
.rates-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 27, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.3s ease;
}

.rates-modal {
  background: white;
  border-radius: 32px;
  max-width: 440px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.25);
  animation: scaleUp 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
}

.rates-modal__close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(244, 241, 234, 0.6);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(26, 26, 27, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.rates-modal__close:hover {
  background: var(--color-charcoal);
  color: white;
}

.rates-modal__header {
  text-align: center;
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid rgba(244, 241, 234, 0.5);
  background: linear-gradient(180deg, rgba(244, 241, 234, 0.15) 0%, transparent 100%);
}

.rates-modal__header-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(0, 180, 216, 0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
}

.rates-modal__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-charcoal);
  margin-bottom: 0.2rem;
}

.rates-modal__subtitle {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26, 26, 27, 0.3);
}

.rates-modal__body {
  padding: 1.5rem 2rem 2rem;
}

.rates-modal__details {
  margin-bottom: 1.2rem;
}

.rates-modal__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(244, 241, 234, 0.4);
}

.rates-modal__row:last-child {
  border-bottom: none;
}

.rates-modal__row-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(26, 26, 27, 0.3);
}

.rates-modal__row-value {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--color-charcoal);
}

.rates-modal__total {
  background: rgba(0, 180, 216, 0.05);
  border: 1px solid rgba(0, 180, 216, 0.1);
  border-radius: 20px;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.rates-modal__total-label {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26, 26, 27, 0.35);
}

.rates-modal__total-value {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-primary);
}

.rates-modal__cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.1rem;
  background: #25D366;
  color: white;
  border: none;
  border-radius: 16px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  margin-bottom: 0.8rem;
}

.rates-modal__cta:hover {
  background: #1ebe57;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.rates-modal__cta:active {
  transform: scale(0.98);
}

.rates-modal__cta-arrow {
  transition: transform 0.3s ease;
}

.rates-modal__cta:hover .rates-modal__cta-arrow {
  transform: translateX(3px);
}

.rates-modal__disclaimer {
  font-size: 0.6rem;
  text-align: center;
  color: rgba(26, 26, 27, 0.25);
  line-height: 1.5;
}

/* --- Animations --- */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes bounce {

  0%,
  80%,
  100% {
    transform: scale(0);
  }

  40% {
    transform: scale(1);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

/* --- Mobile Polish --- */
@media (max-width: 640px) {
  .rates-section-v11 {
    padding: 3rem 0;
  }

  .rates-header__title {
    font-size: 2rem;
  }

  .rates-form-fields {
    padding: 1.5rem;
  }

  .rates-guests-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .rates-field__select {
    padding: 0.9rem 1.5rem 0.9rem 2rem;
    font-size: 0.8rem;
  }

  .rates-conditions {
    margin-top: 3rem;
  }

  .rates-cta {
    padding: 1rem 1.5rem;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
  }

  .rates-step {
    padding: 1rem;
  }
}

/* --- DatePicker V11 Overrides --- */
.rates-field__input-wrap .react-datepicker-wrapper {
  width: 100%;
}

.rates-field__input-wrap .react-datepicker__input-container {
  display: block;
}


/* ============================================================
   V13.1 — PROXIMITY PAGE REFINEMENTS
   ============================================================ */

.proximity-page-v131 {
  background-color: var(--color-sand);
}

/* --- Hero --- */
.proximity-hero {
  padding: 10rem 0 6rem;
  background: linear-gradient(to bottom, rgba(244, 241, 234, 0.8) 0%, transparent 100%);
}

.proximity-hero__title {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  font-weight: 300;
  color: var(--color-charcoal);
  margin-bottom: 2rem;
}

.proximity-hero__title .italic {
  display: block;
  margin-left: 2rem;
  opacity: 0.8;
}

.proximity-hero__lead {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(26, 26, 27, 0.7);
  max-width: 600px;
  font-style: italic;
}

/* --- Section --- */
.proximity-section {
  padding: 6rem 0;
}

.proximity-section__header {
  max-width: 800px;
  margin-bottom: 4rem;
}

.proximity-section__title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.proximity-section__desc {
  font-size: 0.9rem;
  opacity: 0.5;
  font-style: italic;
  max-width: 500px;
}

/* --- Grid & Cards --- */
.proximity-grid {
  display: grid;
  gap: 3rem;
}

.proximity-grid--single {
  grid-template-columns: 1fr;
}

.proximity-grid--multi {
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}

.proximity-card {
  background: white;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.03);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
}

.proximity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1);
}

.proximity-card--featured {
  grid-column: span 1;
}

@media (min-width: 1024px) {
  .proximity-grid--multi .proximity-card--featured {
    grid-column: span 2;
    flex-direction: row;
    min-height: 480px;
  }

  .proximity-grid--multi .proximity-card--featured .proximity-card__image-wrap {
    width: 60%;
  }

  .proximity-grid--multi .proximity-card--featured .proximity-card__content {
    width: 40%;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.proximity-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.proximity-card--featured .proximity-card__image-wrap {
  aspect-ratio: auto;
}

.proximity-card__img {
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s ease;
}

.proximity-card:hover .proximity-card__img {
  transform: scale(1.08);
}

.proximity-card__badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.proximity-card__content {
  padding: 2.5rem;
}

.proximity-card__icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 180, 216, 0.08);
  border-radius: 14px;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.proximity-card__title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 300;
}

.proximity-card__text {
  font-size: 0.85rem;
  opacity: 0.5;
  line-height: 1.8;
  font-style: italic;
}

/* --- Mobility --- */
.mobility-card {
  background: white;
  padding: 3.5rem;
  border-radius: 50px;
  border: 1px solid rgba(244, 241, 234, 0.8);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobility-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 20px 40px rgba(0, 180, 216, 0.05);
  transform: translateY(-5px);
}

.mobility-card__icon-box {
  width: 64px;
  height: 64px;
  background: var(--color-sand);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.mobility-card__title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
}

.mobility-card__desc {
  font-size: 0.85rem;
  opacity: 0.6;
  line-height: 1.7;
}

.mobility-card__footer {
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(244, 241, 234, 0.5);
}

.proximity-badge-v2 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 180, 216, 0.08);
  color: var(--color-primary);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

@media (max-width: 768px) {
  .proximity-hero__title {
    font-size: 3rem;
  }

  .proximity-grid--multi {
    grid-template-columns: 1fr;
  }

  .mobility-card {
    padding: 2.5rem;
  }
}

/* --- FINAL BRAND REFINEMENTS --- */
.section-title-line {
  width: 60px;
  height: 2px;
  background: var(--color-primary);
  opacity: 0.8;
  margin: 0 auto;
}

.label-blue {
  color: var(--color-primary) !important;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
}

/* Text Opacity Utilities */
.text-white-40 {
  color: rgba(255, 255, 255, 0.4);
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5);
}

.text-white-60 {
  color: rgba(255, 255, 255, 0.6);
}

.text-white-70 {
  color: rgba(255, 255, 255, 0.7);
}

.text-white-80 {
  color: rgba(255, 255, 255, 0.8);
}

/* ═══════════════════════════════════════════════════
   PROXIMITÉ PAGE v2 — Structure, Ergonomics & Design
   ═══════════════════════════════════════════════════ */

.prox-page {
  background-color: var(--color-sand);
  overflow-x: hidden;
}

/* ─── HERO ─── */
.prox-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  max-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.prox-hero-bg {
  position: absolute;
  inset: 0;
}

.prox-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 20s ease-in-out infinite alternate;
}

.prox-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.45) 40%,
      rgba(0, 0, 0, 0.3) 70%,
      var(--color-sand) 100%);
}

.prox-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.prox-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(30, 30, 30, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.35em;
}

.prox-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-primary);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(0.8);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.prox-hero-title {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  font-style: italic;
  color: white;
  line-height: 1;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.5);
}

.prox-hero-accent {
  color: var(--color-primary);
}

.prox-hero-subtitle {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.prox-hero-subtitle p {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 300;
}

.prox-hero-line {
  width: 2rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

@media (min-width: 768px) {
  .prox-hero-title {
    font-size: 5rem;
  }

  .prox-hero-subtitle p {
    font-size: 1.25rem;
  }
}

/* ─── MAIN SECTION ─── */
.prox-main {
  position: relative;
  z-index: 10;
  margin-top: -2rem;
  padding-bottom: 6rem;
}

/* ─── STICKY CATEGORY NAV ─── */
.prox-nav {
  position: sticky;
  top: 80px;
  z-index: 30;
  padding: 0.75rem 0;
  margin-bottom: 2.5rem;
}

.prox-nav-inner {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem;
  background: white;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.prox-nav-inner::-webkit-scrollbar {
  display: none;
}

.prox-nav-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-charcoal);
  opacity: 0.5;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.prox-nav-btn:hover {
  opacity: 0.8;
  background: var(--color-sand);
}

.prox-nav-btn.active {
  background: var(--color-primary);
  color: white;
  opacity: 1;
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.25);
}

/* ─── ATTRACTIONS GRID ─── */
.prox-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .prox-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .prox-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Featured card — spans 2 cols on desktop */
@media (min-width: 768px) {
  .prox-card--featured {
    grid-column: span 2;
  }

  .prox-card--featured .prox-card-img {
    aspect-ratio: 21 / 9;
  }
}

/* ─── ATTRACTION CARD ─── */
.prox-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.prox-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.prox-card-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.prox-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.prox-card:hover .prox-card-img img {
  transform: scale(1.08);
}

.prox-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 27, 0.5) 0%, transparent 60%);
  pointer-events: none;
}

.prox-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(30, 30, 30, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
}

.prox-card-badges {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.prox-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.6rem;
  border-radius: 50px;
}

.prox-card-badge svg {
  opacity: 0.8;
}

.prox-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.prox-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.prox-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  font-style: italic;
  color: var(--color-charcoal);
  line-height: 1.2;
}

.prox-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.prox-card-icon--primary {
  background: rgba(0, 180, 216, 0.08);
  color: var(--color-primary);
}

.prox-card-icon--secondary {
  background: rgba(243, 179, 141, 0.12);
  color: var(--color-peach);
}

.prox-card:hover .prox-card-icon--primary {
  background: var(--color-primary);
  color: white;
}

.prox-card:hover .prox-card-icon--secondary {
  background: var(--color-peach);
  color: white;
}

.prox-card-desc {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.7;
  font-style: italic;
  font-weight: 300;
}

/* ─── CONCIERGE SECTION ─── */
.prox-concierge {
  background: var(--color-charcoal);
  border-radius: 48px;
  margin: 0 1.5rem;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.prox-concierge::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.prox-concierge-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.prox-concierge-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  color: var(--color-primary);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
}

.prox-concierge-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  font-style: italic;
  color: white;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.prox-concierge-subtitle {
  color: rgba(255, 255, 255, 0.45);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .prox-concierge {
    margin: 0 2rem;
    padding: 6rem 0;
  }

  .prox-concierge-title {
    font-size: 3rem;
  }
}

.prox-concierge-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .prox-concierge-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* ─── SERVICE CARD ─── */
@media (max-width: 768px) {
  .prox-concierge {
    margin: 0 0.75rem; /* Wider section on mobile */
    padding: 3rem 0;
    border-radius: 32px;
  }

  .prox-service-card {
    padding: 1.5rem !important; /* More space for content inside */
  }
}

.prox-service-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.prox-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.prox-service-icon--primary {
  background: rgba(0, 180, 216, 0.15);
  color: var(--color-primary);
}

.prox-service-icon--secondary {
  background: rgba(243, 179, 141, 0.15);
  color: var(--color-peach);
}

.prox-service-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  color: white;
  margin-bottom: 0.75rem;
}

.prox-service-desc {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.88rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.prox-service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.prox-service-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  font-style: italic;
}

.prox-check {
  color: var(--color-peach);
  flex-shrink: 0;
}

.prox-service-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.prox-stat {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 1rem;
}

.prox-stat svg {
  color: var(--color-peach);
  opacity: 0.7;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.prox-stat strong {
  display: block;
  color: white;
  font-size: 0.85rem;
  font-family: var(--font-serif);
  font-style: italic;
  margin-bottom: 0.15rem;
}

.prox-stat span {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.prox-service-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  padding: 0.9rem 0;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  margin-top: auto;
}

.prox-service-cta--primary {
  background: white;
  color: var(--color-charcoal);
  border: none;
}

.prox-service-cta--primary:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 180, 216, 0.25);
}

.prox-service-cta--outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.prox-service-cta--outline:hover {
  background: white;
  color: var(--color-charcoal);
  border-color: white;
  transform: translateY(-2px);
}

/* ─── BOTTOM CTA ─── */
.prox-cta {
  padding: 4rem 0 6rem;
}

.prox-cta-card {
  background: white;
  border-radius: 40px;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.prox-cta-deco {
  position: absolute;
  top: -30px;
  right: -30px;
  opacity: 0.03;
  pointer-events: none;
  color: var(--color-charcoal);
}

.prox-cta-content {
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin: 0 auto;
}

.prox-cta-heart {
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.prox-cta-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--color-charcoal);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.prox-cta-text {
  color: #888;
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .prox-cta-card {
    padding: 5rem 3rem;
  }

  .prox-cta-title {
    font-size: 2.5rem;
  }
}

.text-primary {
  color: var(--color-primary);
}

/* ═══════════════════════════════════════════════════════════ */
/* ═══════ CONTACT V5 STYLES ═══════ */
/* ═══════════════════════════════════════════════════════════ */

.contact-v5 {
  padding: 5rem 0 6rem;
  background: var(--color-sand);
}

.contact-v5-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.contact-v5-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 180, 216, 0.08);
  border: 1px solid rgba(0, 180, 216, 0.15);
  border-radius: 50px;
  padding: 0.45rem 1.2rem;
  color: var(--color-primary);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 1.5rem;
}

.contact-v5-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 300;
  font-style: italic;
  color: var(--color-charcoal);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.contact-v5-subtitle {
  color: #888;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto;
}

.contact-v5-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 768px) {
  .contact-v5-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
  }
}

.contact-v5-left {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ─── CONTACT CARDS ─── */
.contact-v5-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 24px;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

a.contact-v5-card {
  cursor: pointer;
}

.contact-v5-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.contact-v5-card--whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.2);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.08);
}

.contact-v5-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-v5-card-icon--green {
  background: rgba(37, 211, 102, 0.1);
  color: #25D366;
}

.contact-v5-card-icon--blue {
  background: rgba(0, 180, 216, 0.1);
  color: var(--color-primary);
}

.contact-v5-card-icon--peach {
  background: rgba(243, 179, 141, 0.12);
  color: var(--color-peach);
}

.contact-v5-card-content {
  flex: 1;
}

.contact-v5-card-content h3 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #aaa;
  margin-bottom: 0.15rem;
}

.contact-v5-card-value {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  font-style: italic;
  color: var(--color-charcoal);
  margin-bottom: 0.2rem;
}

.contact-v5-card-tag {
  font-size: 0.65rem;
  font-weight: 600;
  color: #bbb;
  letter-spacing: 0.05em;
}

.contact-v5-card-arrow {
  color: #ccc;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-v5-card:hover .contact-v5-card-arrow {
  color: var(--color-primary);
  transform: translateX(3px);
}

/* ─── VISIO CTA ─── */
.contact-v5-visio {
  background: var(--color-charcoal);
  border-radius: 28px;
  padding: 1.5rem 1.75rem;
  margin-top: 0.5rem;
}

.contact-v5-visio-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-v5-visio-content svg {
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.contact-v5-visio-content h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: white;
  margin-bottom: 0.3rem;
}

.contact-v5-visio-content p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
  line-height: 1.6;
}

.contact-v5-visio-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: white;
  color: var(--color-charcoal);
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: all 0.4s ease;
}

.contact-v5-visio-btn:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 180, 216, 0.25);
}

/* ─── MAP ─── */
.contact-v5-right {
  position: relative;
}

.contact-v5-map-wrap {
  border-radius: 32px;
  overflow: hidden;
  height: 480px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border: 6px solid white;
}

.contact-v5-map-wrap iframe {
  width: 100%;
  height: 100%;
}

.contact-v5-map-badge {
  position: absolute;
  bottom: -1rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  border-radius: 20px;
  padding: 0.75rem 1.25rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-v5-map-badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
  animation: pulse 2s ease-in-out infinite;
}

.contact-v5-map-badge-label {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  font-style: italic;
  color: var(--color-charcoal);
}

.contact-v5-map-badge-sub {
  font-size: 0.65rem;
  color: #aaa;
  font-weight: 500;
}

@media (max-width: 767px) {
  .contact-v5-title {
    font-size: 2rem;
  }

  .contact-v5-map-wrap {
    height: 350px;
  }
}
/* Video Modal */
.video-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.4s ease;
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: scaleUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.video-modal-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

@keyframes scaleUp {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 768px) {
  .video-modal-content {
    aspect-ratio: 9/16;
    max-height: 80vh;
  }
}

/* ==========================================================================
   FLATPICKR STATUS COLORS & FIXES
   ========================================================================== */

/* High z-index to ensure it shows over hero/navbar */
.flatpickr-calendar {
    z-index: 999999 !important;
}

/* Base style for all days */
.flatpickr-day {
    border-radius: 8px !important;
    transition: all 0.2s ease;
}

/* AVAILABLE (Green) - Default state for non-blocked days */
.flatpickr-day:not(.is-full):not(.is-partial):not(.flatpickr-disabled) {
    background-color: #e8f5e9 !important; /* Very light green */
    color: #2e7d32 !important;
    border-color: transparent !important;
}

.flatpickr-day:not(.is-full):not(.is-partial):not(.flatpickr-disabled):hover {
    background-color: #2e7d32 !important;
    color: white !important;
}

/* RESERVED (Red) - Fully blocked */
.flatpickr-day.is-full {
    background-color: #ffebee !important;
    color: #c62828 !important;
    text-decoration: line-through;
    cursor: not-allowed !important;
    opacity: 0.8;
}

/* PARTIAL (Yellow) - Transition days (Check-in/Check-out) */
.flatpickr-day.is-partial {
    background-color: #fff9c4 !important;
    color: #fbc02d !important;
    border: 1px dashed #fbc02d !important;
}

/* Selected range styling */
.flatpickr-day.selected, 
.flatpickr-day.startRange, 
.flatpickr-day.endRange {
    background-color: var(--color-turquoise) !important;
    color: white !important;
    border-color: var(--color-turquoise) !important;
}

/* Fix for home page Booking Bar visibility */
.vm-datepicker-input {
    cursor: pointer !important;
    z-index: 20 !important;
}

/* ===== V12 RESPONSIVENESS FIXES & POLISH ===== */

@media (max-width: 768px) {
  /* Global Typography Scaling */
  .title-xl { font-size: 2.2rem !important; }
  .title-lg { font-size: 1.8rem !important; }
  .title-md { font-size: 1.5rem !important; }
  
  .section-padding { padding: 3rem 0 !important; }
  
  /* Hero Section Mobile Polish */
  .hero-section {
    height: auto;
    min-height: 100vh;
    padding-bottom: 5rem;
  }
  
  .hero-content {
    padding-top: 140px;
    padding-bottom: 2rem;
  }
  
  .hero-title {
    font-size: 2rem !important;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  
  .hero-tagline {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
  }
  
  .hero-cta-row {
    flex-direction: column !important; /* Stacked but premium on mobile */
    gap: 1rem !important;
    margin-top: 2rem !important;
  }
  
  .btn-video-play, .btn-outline-light {
    width: 100% !important;
    justify-content: center !important;
    padding: 14px 20px !important;
  }
  
  /* Features Section Fixes */
  .features-container {
    flex-direction: column;
    gap: 3rem;
  }
  
  .features-card-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .features-img-stack {
    height: 400px;
    margin-top: 2rem;
  }
  
  /* Proximity Section Fixes */
  .proximity-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem;
  }
  
  .proximity-image-wrap {
    height: 250px;
  }
  
  .proximity-card {
    padding: 1rem;
  }
  
  /* Review Cards */
  .reviews-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  
  /* Booking Bar Fixes */
  .booking-bar-container {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem !important;
  }
  
  .features-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Extra Polish for Proximity & Villa Pages */
@media (max-width: 768px) {
  .prox-hero-title {
    font-size: 2.5rem !important;
  }
  
  .v4-hero-img-box {
    height: 50vh;
  }
  
  .title-xl {
    font-size: 2.5rem !important;
  }
  
  .v4-story-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem;
  }
  
  .v4-visio-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  .min-hub-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .v4-oasis-bg-content {
    padding: 1.5rem !important;
  }
  
  .min-hub-feature-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Extra Polish for Weather Widget */
@media (max-width: 500px) {
  .weather-card {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1.25rem !important;
    padding: 1.5rem !important;
  }
  
  .weather-main {
    width: 100%;
    justify-content: flex-start;
  }
  
  .weather-details {
    flex-direction: row !important;
    width: 100%;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* ===== FINAL MOBILE POLISH V15 ===== */

@media (max-width: 768px) {
  /* Oasis Hub Refinements */
  .v4-oasis-bg-section h2 {
    font-size: 1.8rem !important;
    white-space: normal !important;
    line-height: 1.3 !important;
  }
  
  .min-hub-nav {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    overflow-x: auto;
    width: 100%;
    margin-bottom: 2rem !important;
  }
  
  .min-hub-nav-item {
    font-size: 0.65rem !important;
    white-space: nowrap !important;
    padding: 0.5rem 0.75rem !important;
  }
  
  .min-hub-feature-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important; /* Force 2 columns as requested */
    gap: 0.75rem !important;
  }
  
  .min-hub-feature-item {
    padding: 0.4rem !important;
    font-size: 0.75rem !important;
  }
  
  .min-hub-feature-item span {
    font-size: 0.7rem !important;
  }

  /* Villa Page "L'esprit Villa" Position */
  .villa-page-v4 .v4-hero .container {
    padding-top: 2rem !important; /* Move it higher up */
  }
  
  /* Sections padding */
  .v4-section {
    padding: 3rem 0 !important;
  }

  /* Final Gallery Title */
  .v4-gallery-section h2 {
    font-size: 1.8rem !important;
  }
}

/* ===== FINAL MOBILE UI REFINEMENTS V16.5 ===== */

@media (max-width: 768px) {
  /* 1. Navbar Perfect Centering */
  .navbar-pill-container {
    left: 0 !important;
    right: 0 !important;
    padding: 0 1rem !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
  }
  
  .navbar-pill-inner {
    margin: 0 auto !important;
    width: auto !important;
    min-width: 250px;
    justify-content: space-between;
  }

  /* 2. Hero Spacing & Title Visibility (Increased clearance) */
  .v4-hero, .hero-section, .pt-40, .v4-visio-section, .section-features {
    padding-top: 220px !important;
  }
  
  /* 3. Villa Page "L'esprit Villa Medina" */
  .villa-page-v4 .v4-hero .container {
    padding-top: 0 !important;
    margin-top: -40px !important;
  }
  
  /* 4. Oasis Hub Title & Layout */
  .v4-oasis-bg-section h2 {
    font-size: 1.6rem !important;
    text-align: center;
  }
  
  .min-hub-nav {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    border-bottom: none !important;
  }
  
  .min-hub-nav-item {
    font-size: 0.6rem !important;
    padding: 0.5rem 1rem !important;
    background: rgba(255,255,255,0.05);
    border-radius: 50px;
  }

  /* 5. Home Page CTA Title */
  .cta-v2-title {
    font-size: 1.8rem !important;
  }

  /* 6. Home Page Proximity Section (2 Columns) */
  .section-proximity .proximity-layout > div:last-child {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
  }
  
  .section-proximity .proximity-card {
    padding: 1rem !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  
  .section-proximity .proximity-card-icon {
    width: 35px !important;
    height: 35px !important;
    margin-bottom: 0.5rem;
  }
  
  .section-proximity .proximity-card-name {
    font-size: 0.75rem !important;
  }
  
  .section-proximity .proximity-card-desc {
    display: none !important; /* Hide desc on 2-col mobile for clarity */
  }
  
  .section-proximity .proximity-card-distance {
    font-size: 0.55rem !important;
  }

  /* 7. Reviews Scaling Fix */
  .reviews-grid {
    grid-template-columns: 1fr !important;
  }
  
  .title-lg {
    font-size: 1.7rem !important;
  }
}

/* 1. Navbar Perfect Centering & Desktop Transparency */
.navbar-pill-container {
  display: flex !important;
  justify-content: center !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  pointer-events: none;
}

.navbar-pill-inner {
  display: flex !important;
  align-items: center !important;
  gap: 1.5rem !important;
  pointer-events: auto;
  padding: 8px 16px !important;
  border-radius: 100px;
  background: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin: 0 auto;
}

@media (min-width: 1025px) {
  .navbar-pill-inner {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
  }
}

/* 2. Hero Spacing (Home) */
@media (max-width: 768px) {
  .hero-section, .v4-hero, .pt-40 {
    padding-top: 100px !important;
  }
  
  .hero-content {
    padding-top: 20px !important;
  }
  
  /* 3. Reduce space between Hero and next section */
  .section-features {
    padding-top: 1rem !important;
    margin-top: -2rem !important;
  }
}

/* 4. Proximity Section (Home) - 2 Columns & Badges */
@media (max-width: 768px) {
  .section-proximity .proximity-layout > div:last-child {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
  
  .section-proximity .proximity-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 1rem !important;
    height: 100%;
  }
  
  .section-proximity .proximity-card-icon {
    margin-bottom: 0.5rem;
    width: 40px !important;
    height: 40px !important;
  }
  
  .section-proximity .proximity-card-desc {
    display: none !important;
  }
  
  .section-proximity .proximity-card-distance {
    order: 3;
    margin-top: 0.5rem;
    font-size: 0.6rem !important;
    background: rgba(0, 180, 216, 0.1);
    color: var(--color-primary);
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 700;
  }
  
  .section-proximity .proximity-card-name {
    font-size: 0.8rem !important;
    margin: 0.25rem 0;
  }
}

/* 5. Oasis Hub (Villa Page) */
@media (max-width: 768px) {
  .v4-oasis-bg-section h2 {
    font-size: 1.4rem !important;
    line-height: 1.2 !important;
  }
  
  .min-hub-nav {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    overflow-x: auto !important;
    gap: 0.5rem !important;
    border-bottom: none !important;
  }
  
  .min-hub-nav-item {
    padding: 0.5rem 0.8rem !important;
    font-size: 0.65rem !important;
    white-space: nowrap !important;
  }
  
  .min-hub-feature-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.5rem !important;
  }
}

/* 6. Desktop Spacing (Avis, Contact, Proximity) */
@media (min-width: 1025px) {
  .avis-page-v4 > .pt-24,
  .contact-page-v4,
  .prox-page .prox-hero,
  .villa_page_v4 .v4-hero {
    padding-top: 220px !important;
  }
}


/* ===== FINAL MOBILE & DESKTOP POLISH V18 ===== */

/* 1. Mobile Menu Overlay Fixes */
@media (max-width: 768px) {
  .mobile-overlay-content {
    padding-top: 8rem !important;
    gap: 1.5rem !important;
  }
  
  .link-text {
    font-size: 1.4rem !important;
  }
  
  .link-number {
    font-size: 0.5rem !important;
  }

  /* 2. Hero Spacing (Home/Villa) - REDUCED GAP */
  .navbar-pill-container {
    top: 1rem !important;
  }
  
  .hero-section, .v4-hero, .pt-40 {
    padding-top: 80px !important;
  }
  
  .hero-content {
    padding-top: 0 !important;
  }
  
  /* 3. Oasis Hub (Villa Page) - Side by Side Toggle */
  .min-hub-nav {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    gap: 0 !important;
    padding: 0 !important;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    overflow: hidden;
  }
  
  .min-hub-nav-item {
    flex: 1 1 50% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    padding: 0.75rem 0.25rem !important;
    font-size: 0.6rem !important;
  }
  
  .min-hub-feature-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.5rem !important;
  }

  /* 4. Proximity Badges (Home Page) */
  .section-proximity .proximity-card-distance {
    position: relative !important;
    display: inline-block !important;
    margin-top: 0.5rem !important;
    font-size: 0.55rem !important;
    padding: 4px 8px !important;
    background: rgba(0, 180, 216, 0.08) !important;
    color: var(--color-primary) !important;
    border-radius: 4px !important;
    font-weight: 800 !important;
  }
}

/* 5. Desktop Spacing (More room for titles) */
@media (min-width: 1025px) {
  .avis-page-v4 .pt-24,
  .contact-page-v4,
  .prox-page .prox-hero,
  .villa_page_v4 .v4-hero {
    padding-top: 180px !important;
  }
  
  /* Remove white sub-bar from desktop navbar inner */
  .navbar-pill-inner {
    background: rgba(255, 255, 255, 0) !important;
    box-shadow: none !important;
    border: none !important;
  }
}

/* ===== FINAL MOBILE & DESKTOP POLISH V19 ===== */

@media (max-width: 768px) {
  /* Conciergerie (Proximity Page) */
  .prox-concierge-grid {
    padding: 0 1rem;
    gap: 1rem !important;
  }
  
  .prox-service-card {
    padding: 1.5rem !important;
    border-radius: 20px !important;
  }
  
  .prox-service-title {
    font-size: 1.2rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .prox-service-desc {
    font-size: 0.85rem !important;
    line-height: 1.5 !important;
  }
  
  .prox-service-list li {
    font-size: 0.75rem !important;
  }
  
  .prox-service-cta {
    padding: 0.75rem 1rem !important;
    font-size: 0.75rem !important;
  }
  
  .prox-concierge-title {
    font-size: 1.8rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  .prox-concierge {
    padding: 3rem 0 !important;
  }
}

/* ===== DESKTOP SPACING TWEAK (Contact Only) ===== */
@media (min-width: 1025px) {
  .contact-page-v4 {
    padding-top: 130px !important; /* Reduced from 180px as requested */
  }
}

/* ===== MOBILE NAVBAR & HERO RE-POLISH V20 ===== */

@media (max-width: 768px) {
  /* 1. Dark Glassmorphism Navbar for Mobile */
  .navbar-pill-inner {
    background: rgba(18, 18, 18, 0.7) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    padding: 6px 14px !important;
  }
  
  .hamburger-inner, 
  .hamburger-box::before, 
  .hamburger-box::after {
    background-color: #ffffff !important;
  }
  
  .mobile-toggle-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
  }
  
  .navbar-logo-img {
    filter: brightness(0) invert(1); /* Ensure logo is white if needed or just visible on dark */
  }

  /* 2. Hero Spacing Balanced */
  .navbar-pill-container {
    top: 1.5rem !important;
  }
  
  .hero-section, .v4-hero, .pt-40 {
    padding-top: 130px !important; /* Balanced gap */
  }
  
  .hero-content {
    padding-top: 10px !important;
  }
}

/* ===== PROXIMITY BADGE RE-STYLE V21 ===== */
@media (max-width: 768px) {
  .proximity-card-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .proximity-card-distance {
    order: 10 !important; /* Move to bottom */
    position: static !important;
    margin-top: 10px !important;
    background: rgba(0, 180, 216, 0.1) !important;
    color: var(--color-primary) !important;
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    padding: 6px 16px !important;
    border-radius: 50px !important; /* Pill style */
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
  }
  
  .proximity-card-header {
    display: block !important;
  }
}

/* ===== BALANCED VILLA PAGE SPACING V22 ===== */
@media (max-width: 768px) {
  .villa-page-v4 .v4-hero {
    padding-top: 110px !important;
  }
}

/* ===== CONCIERGERIE & HUB CENTERED UI V23 ===== */
@media (max-width: 768px) {
  /* Conciergerie Centering */
  .prox-concierge-header {
    text-align: center !important;
  }
  
  .prox-concierge-grid {
    padding: 0 1rem;
  }
  
  .prox-service-card {
    align-items: center !important;
    text-align: center !important;
    padding: 2rem 1.5rem !important;
  }
  
  .prox-service-list {
    text-align: left !important;
    display: inline-block !important;
    margin: 1rem auto !important;
  }
  
  /* Hub Centering & Full Width */
  .min-hub-card {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 1.5rem !important;
    border-radius: 24px !important;
  }
  
  .min-hub-feature-grid {
    width: 100% !important;
  }
  
  .min-hub-feature-item {
    justify-content: center !important;
    text-align: center !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
  }
}

/* ===== MOBILE CONTACT PAGE SPACING TWEAK V24 ===== */
@media (max-width: 768px) {
  .contact-page-v4 {
    padding-top: 110px !important; /* Perfect balance for iPhone 14/15 Pro */
  }
}

/* ===== FINAL MOBILE POLISH V25 (Burger & Proximity) ===== */
@media (max-width: 768px) {
  /* White Burger Lines */
  .hamburger-inner, .hamburger-box::before, .hamburger-box::after {
    background-color: #ffffff !important;
  }
  
  /* Transparent/Dark Toggle Button */
  .mobile-toggle-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
  }
  
  /* Proximity Badges on One Line */
  .proximity-card-distance {
    white-space: nowrap !important;
    max-width: none !important;
    width: auto !important;
    padding: 6px 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
}

/* ===== FINAL MOBILE POLISH V26 ===== */
@media (max-width: 768px) {
  /* Oasis Hub Card Scaling */
  .min-hub-card {
    width: 92% !important;
    max-width: none !important;
    margin: 1.5rem auto !important;
    padding: 1.5rem 1rem !important;
    background: rgba(18, 18, 18, 0.7) !important;
    border-radius: 24px !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  
  .min-hub-feature-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem 0.5rem !important;
    width: 100% !important;
  }
  
  .min-hub-feature-item {
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }
  
  .min-hub-feature-item i {
    margin-right: 0 !important;
    margin-bottom: 0.5rem !important;
  }
  
  .min-hub-feature-item span {
    font-size: 0.7rem !important;
    line-height: 1.3 !important;
  }

  /* Hamburger Color Corrected */
  .hamburger-inner, .hamburger-box::before, .hamburger-box::after {
    background-color: #ffffff !important;
  }
}

/* ===== ULTIMATE MOBILE SPACING FIX V27 ===== */
@media (max-width: 768px) {
  /* Conciergerie Cards Centering */
  .prox-concierge {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  
  .prox-concierge-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    gap: 1.5rem !important;
  }
  
  .prox-service-card {
    width: 90% !important; 
    margin: 0 auto !important;
    box-sizing: border-box !important;
    text-align: center !important;
    align-items: center !important;
  }
}

/* ===== AVIS PAGE MOBILE SPACING V28 ===== */
@media (max-width: 768px) {
  .avis-page-v4 .pt-24 {
    padding-top: 130px !important;
  }
}

/* ===== PROXIMITY BADGE ONE-LINE FIX V29 ===== */
@media (max-width: 768px) {
  .proximity-card-distance {
    white-space: nowrap !important;
    display: inline-flex !important;
    font-size: 0.45rem !important; /* Reduced to ensure one-line fit */
    padding: 3px 6px !important;
    line-height: 1.2 !important;
    text-align: center !important;
    justify-content: center !important;
    letter-spacing: -0.01em !important;
    border-radius: 4px !important;
  }
}

/* ===== MOBILE BURGER & PROXIMITY FINAL V30 ===== */
@media (max-width: 768px) {
  .hamburger-inner, 
  .hamburger-box::before, 
  .hamburger-box::after {
    background-color: #ffffff !important;
  }
  
  /* Unified proximity badges fix */
  .proximity-card-distance {
    white-space: nowrap !important;
    display: inline-block !important;
    font-size: 0.45rem !important;
    padding: 3px 6px !important;
    width: auto !important;
    max-width: 100% !important;
    overflow: visible !important;
  }
}

/* ===== HUB & BURGER FINAL V31 ===== */
@media (max-width: 768px) {
  /* Hub Card Full Width */
  .min-hub-card {
    width: 98% !important;
    margin: 1rem 1% !important;
    padding: 1.5rem 0.5rem !important;
    box-shadow: none !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
  }
  
  .min-hub-feature-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem 0.2rem !important;
  }

  /* Force All Burger Lines White */
  .hamburger-inner, 
  .hamburger-box::before, 
  .hamburger-box::after {
    background-color: #ffffff !important;
    color: #ffffff !important;
  }
}

/* ===== TOTAL MOBILE CENTERING & BALANCE V32 ===== */
@media (max-width: 768px) {
  /* Global Container Reset */
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* Conciergerie Ultimate Center */
  .prox-concierge-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  .prox-service-card {
    width: 100% !important;
    max-width: 450px !important; /* Increased for better fit on large phones */
    margin: 0 auto 1.5rem auto !important;
    padding: 2rem 1.5rem !important; /* Slightly more padding for balance */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }
  
  .prox-service-list {
    text-align: left !important;
    padding: 0 !important;
    margin: 1rem 0 !important;
    display: inline-block !important;
  }

  /* Hub Card Ultimate Center */
  .min-hub-card {
    width: 98% !important; /* Maximized width */
    max-width: none !important;
    margin-left: 1% !important;
    margin-right: 1% !important;
    padding: 2rem 0.75rem !important;
    box-sizing: border-box !important;
  }
  
  .min-hub-feature-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    width: 100% !important;
    gap: 1.5rem 0.3rem !important; /* Reduced horizontal gap to gain space for text */
  }
}
