/* ============================================================
   CALA BLU TERRASINI — Luxury Mediterranean Design System
   Style: Airbnb Luxe · Palette: Teal & Gold · Fonts: Playfair + Inter
   ============================================================ */

/* ─── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ─── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Brand palette */
  --teal:        #0ABFBC;
  --teal-dark:   #088f8d;
  --teal-light:  #e0f7f7;
  --gold:        #C9A84C;
  --gold-dark:   #a8852e;
  --gold-light:  #fdf4e1;
  --navy:        #0D1B2A;
  --navy-mid:    #1a2e44;
  --navy-soft:   #253d57;
  --pearl:       #F8F5F0;
  --sand:        #EDE8DF;
  --white:       #ffffff;

  /* Text */
  --text-dark:   #0D1B2A;
  --text-mid:    #2c4460;
  --text-muted:  #5a7080;

  /* Nav */
  --nav-bg:      rgba(255,255,255,0.88);
  --nav-scroll:  rgba(255,255,255,0.97);
  --nav-border:  rgba(201,168,76,0.18);
  --nav-text:    #0D1B2A;
  --cta:         #0ABFBC;
  --cta-hover:   #088f8d;

  /* Shadows */
  --shadow-sm:   0 2px 12px rgba(13,27,42,0.08);
  --shadow-md:   0 8px 30px rgba(13,27,42,0.12);
  --shadow-lg:   0 20px 60px rgba(13,27,42,0.16);
  --shadow-gold: 0 8px 30px rgba(201,168,76,0.25);

  /* Radii */
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;

  /* Transitions */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── Base Reset ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--navy);
}

a { color: var(--teal); transition: color 0.2s ease; }
a:hover { color: var(--teal-dark); }

img { max-width: 100%; height: auto; }

/* ─── Accessibility ─────────────────────────────────────────── */
.skip-link {
  display: block !important;
  position: absolute !important;
  left: 12px !important;
  top: -120px !important;
  z-index: 9999 !important;
  background: var(--navy) !important;
  color: #fff !important;
  padding: 10px 16px !important;
  border-radius: var(--radius-sm) !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  transition: top 0.2s ease !important;
}
.skip-link:focus { top: 12px !important; }

a:focus, button:focus {
  outline: 3px solid var(--gold) !important;
  outline-offset: 3px;
}

/* ─── NAVBAR ────────────────────────────────────────────────── */
.topbar {
  position: sticky !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--nav-bg) !important;
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--nav-border) !important;
  box-shadow: 0 1px 0 rgba(201,168,76,0.08);
  z-index: 5000 !important;
  overflow: visible !important;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.topbar.scrolled,
.topbar.sticky-scrolled {
  background: var(--nav-scroll) !important;
  box-shadow: var(--shadow-md) !important;
  border-bottom-color: rgba(201,168,76,0.22) !important;
}

.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 74px;
  overflow: visible;
}

/* Logo */
.brand { margin-right: 12px; flex-shrink: 0; }
.brand img,
.header-logo img,
.logo img {
  height: 72px !important;
  width: auto !important;
  max-width: 280px;
  display: block;
  transform: none !important;
  transition: opacity 0.2s ease;
}
.brand img:hover { opacity: 0.88; }

/* Doppio logo (Cala Blu + Cala Verde) nell'header standard */
.brand .brand-logos {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 12px;
  padding: 4px 10px;
  box-shadow: 0 2px 10px rgba(13,27,42,0.08);
}
.brand .brand-logos img {
  height: 48px !important;
  width: auto !important;
  max-width: none;
  display: block;
}
@media (max-width: 640px){
  .brand .brand-logos img { height: 38px !important; }
  .brand .brand-logos { gap: 6px; padding: 3px 8px; }
}

/* Desktop nav links */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  margin-left: auto;
  overflow: visible !important;
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--navy) !important;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  text-decoration: none !important;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-nav:hover,
.btn-nav:focus {
  background: var(--teal-light) !important;
  border-color: var(--teal) !important;
  color: var(--teal-dark) !important;
}

/* Dropdown */
.desktop-nav,
.topbar-inner,
.desktop-nav .nav-item-dropdown {
  overflow: visible !important;
}

.desktop-nav .nav-item-dropdown {
  position: relative !important;
  display: inline-flex;
  align-items: center;
}

/* Ponte invisibile fra la voce di menu e la tendina.
   La tendina si apre 8 px piu' in basso: senza questo tratto il mouse,
   scendendo, attraversa 8 px in cui non e' sopra nessuno dei due elementi,
   il :hover cade e la tendina si richiude prima che si riesca a cliccare.
   Il pseudo-elemento appartiene alla voce, quindi passarci sopra la tiene
   aperta. Alto quanto lo stacco piu' un margine di sicurezza. */
.desktop-nav .nav-item-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;
}

/* Freccetta: senza un segno visibile nessuno immagina che "Appartamenti"
   nasconda due voci, e la tendina resta un segreto. */
.desktop-nav .nav-parent::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.55;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.desktop-nav .nav-item-dropdown:hover .nav-parent::after,
.desktop-nav .nav-item-dropdown.open .nav-parent::after {
  transform: translateY(1px) rotate(-135deg);
  opacity: 1;
}
.desktop-nav .nav-parent { cursor: pointer; }

.desktop-nav .nav-item-dropdown .nav-submenu {
  position: absolute !important;
  top: calc(100% + 8px) !important;
  left: 0 !important;
  min-width: 260px;
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  display: none;
  z-index: 6000 !important;
  pointer-events: auto !important;
}

.desktop-nav .nav-item-dropdown:hover .nav-submenu,
.desktop-nav .nav-item-dropdown:focus-within .nav-submenu,
.desktop-nav .nav-item-dropdown.open .nav-submenu {
  display: block !important;
}

.desktop-nav .nav-item-dropdown .nav-submenu a {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--navy) !important;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none !important;
  transition: background 0.15s ease;
}
.desktop-nav .nav-item-dropdown .nav-submenu a:hover {
  background: var(--teal-light);
  color: var(--teal-dark) !important;
}

/* CTA primary button */
.cta-primary {
  display: inline-flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff !important;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(10,191,188,0.35);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.cta-primary:hover,
.cta-primary:focus {
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(10,191,188,0.45);
  text-decoration: none !important;
}
.cta-primary .cta-main {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}
.cta-primary .cta-sub {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.88;
  line-height: 1;
}

/* Language switcher */
.lang-switch {
  display: flex;
  gap: 4px;
  margin-left: 6px;
}
.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 28px;
  padding: 0 7px;
  border-radius: 999px;
  border: 1px solid rgba(13,27,42,0.2) !important;
  color: var(--navy) !important;
  font-size: 11px;
  font-weight: 700;
  background: transparent !important;
  text-decoration: none !important;
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-switch a:hover,
.lang-switch a:focus {
  background: var(--teal-light) !important;
  color: var(--teal-dark) !important;
  border-color: var(--teal) !important;
}
.lang-switch a.active {
  background: var(--navy) !important;
  color: #fff !important;
  border-color: var(--navy) !important;
}

/* Hamburger */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1.5px solid rgba(13,27,42,0.25) !important;
  border-radius: var(--radius-sm);
  padding: 10px 9px;
  cursor: pointer;
  margin-left: auto;
}
.menu-toggle-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy) !important;
  margin: 4px 0;
  transition: background 0.2s;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-height: 100dvh;
  overflow-y: auto;
  transform: translateY(-110%);
  transition: transform 0.32s var(--ease-out);
  background: rgba(255,255,255,0.98) !important;
  backdrop-filter: blur(20px);
  z-index: 4999;
  padding: 90px 20px 28px;
  border-bottom: 1px solid var(--sand);
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu-inner {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-link {
  display: block;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: var(--pearl) !important;
  color: var(--navy) !important;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none !important;
  transition: background 0.2s ease;
}
.mobile-link:hover,
.mobile-link:focus {
  background: var(--teal-light) !important;
  color: var(--teal-dark) !important;
}
.mobile-submenu-group .mobile-group-title {
  opacity: 0.7;
  cursor: default;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.mobile-lang { margin-top: 10px; }
.mobile-menu .cta-primary { width: 100%; justify-content: center; }

/* Responsive nav */
@media (max-width: 991.98px) {
  .topbar-inner { min-height: 64px; padding: 8px 16px; }
  .brand img, .header-logo img, .logo img { height: 52px !important; }
  .desktop-nav,
  .topbar > .topbar-inner > .lang-switch,
  .topbar > .topbar-inner > .cta-primary { display: none !important; }
  .menu-toggle { display: inline-block; }
}
@media (min-width: 992px) { .mobile-menu { display: none !important; } }


/* ─── HERO / SLIDER ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Owl carousel slider */
.home-slider { min-height: 92vh; }

.home-slider .slider-item {
  min-height: 92vh;
  background-size: cover !important;
  background-position: center !important;
  position: relative;
}

.home-slider .slider-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13,27,42,0.28) 0%,
    rgba(13,27,42,0.55) 50%,
    rgba(13,27,42,0.72) 100%
  );
}

/* Hero content overlay */
.hero-fixed-overlay.slider-overlay {
  position: absolute !important;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
}

.slider-overlay .slider-overlay-inner {
  pointer-events: auto;
  max-height: 100%;
  overflow: hidden;
}

.slider-overlay .slide-logo {
  display: block;
  text-align: center;
  margin: 0 0 24px;
  line-height: 0;
  pointer-events: none;
}
.slider-overlay .slide-logo img {
  height: 120px !important;
  max-height: none;
  width: auto;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.5));
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.overlay-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.overlay-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  max-width: 640px;
  margin: 0 auto 12px;
  line-height: 1.6;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.overlay-muted {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 28px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Hero CTA button — gold override with max specificity */
.hero .btn.btn-primary,
.slider-overlay .btn.btn-primary,
.hero-fixed-overlay .btn.btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 16px 36px !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%) !important;
  border: none !important;
  color: var(--navy) !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  letter-spacing: 0.01em !important;
  box-shadow: var(--shadow-gold) !important;
  text-decoration: none !important;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease !important;
}
.hero .btn.btn-primary:hover,
.slider-overlay .btn.btn-primary:hover,
.hero-fixed-overlay .btn.btn-primary:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 16px 40px rgba(201,168,76,0.4) !important;
  color: var(--navy) !important;
  background: linear-gradient(135deg, #d4a93a 0%, #9a7020 100%) !important;
}

@media (max-width: 860px) {
  .hero, .home-slider, .home-slider .slider-item { min-height: 70vh; }
  .slider-overlay .slide-logo img { height: 80px !important; }
  .overlay-title { font-size: clamp(1.6rem, 7vw, 2.4rem); }
}
@media (max-width: 520px) {
  .slider-overlay .slide-logo img { height: 60px !important; }
}


/* ─── SECTION BASE ──────────────────────────────────────────── */
.ftco-section {
  padding: 80px 0;
  position: relative;
}

.ftco-section:nth-of-type(even) {
  background: var(--pearl);
}

/* Section divider */
.ftco-section + .ftco-section::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(200px, 40vw);
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(201,168,76,0.5),
    transparent
  );
}

/* Headings */
.heading-section h2,
.ftco-section .heading-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.15;
}

.heading-section h2 span {
  color: var(--teal);
}

.heading-section p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Gold accent underline on h2 */
.heading-section h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  border-radius: 2px;
  margin: 14px auto 0;
}

@media (max-width: 768px) {
  .ftco-section { padding: 56px 0; }
}


/* ─── GUIDE / BLOG CARDS ────────────────────────────────────── */
.blog-entry {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
  cursor: pointer;
}

.blog-entry:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Image block */
.block-20 {
  display: block;
  width: 100%;
  height: 220px;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out);
}

.blog-entry:hover .block-20 { transform: scale(1.04); }

.block-20::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13,27,42,0.3) 0%, transparent 60%);
  transition: opacity 0.3s ease;
}

.blog-entry .text {
  padding: 20px 22px 24px;
}

.blog-entry .text .heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.blog-entry .text .heading a {
  color: var(--navy) !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}
.blog-entry .text .heading a:hover { color: var(--teal) !important; }

/* Services/apartments media cards */
.services .media.block-6 {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
  border: 1px solid rgba(201,168,76,0.1);
}
.services .media.block-6:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10,191,188,0.2);
}
.services .media-body .heading a {
  color: var(--teal) !important;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}
.services .media-body .heading a:hover { color: var(--gold) !important; }


/* ─── APARTMENT CARDS ───────────────────────────────────────── */
.home-page .col-md-6 > .p-4.bg-white {
  background: var(--white) !important;
  border-radius: var(--radius-lg) !important;
  border: 1px solid rgba(201,168,76,0.15) !important;
  box-shadow: var(--shadow-sm) !important;
  padding: 32px !important;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.home-page .col-md-6 > .p-4.bg-white::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.home-page .col-md-6 > .p-4.bg-white:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg) !important;
  border-color: rgba(10,191,188,0.3) !important;
}
.home-page .col-md-6 > .p-4.bg-white:hover::before { opacity: 1; }

.home-page .col-md-6 > .p-4.bg-white h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

/* Generic Bootstrap btn-primary override → Teal */
.btn-primary,
.btn.btn-primary:not(.hero .btn-primary):not(.slider-overlay .btn-primary) {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%) !important;
  border-color: transparent !important;
  color: #fff !important;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  border-radius: 999px !important;
  padding: 12px 28px !important;
  box-shadow: 0 4px 16px rgba(10,191,188,0.3) !important;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease !important;
}
.btn-primary:hover,
.btn.btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(10,191,188,0.4) !important;
  color: #fff !important;
}


/* ─── REVIEWS / FEEDBACK ────────────────────────────────────── */
.guest-feedback-booking { background: var(--pearl); }

.guest-feedback-booking .feedback-rating-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201,168,76,0.15);
}

.guest-feedback-booking .feedback-stars,
.guest-feedback-booking .feedback-card-stars {
  color: var(--gold);
  letter-spacing: 3px;
  line-height: 1;
}
.guest-feedback-booking .feedback-stars { font-size: 36px; margin-bottom: 8px; }
.guest-feedback-booking .feedback-score {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.guest-feedback-booking .feedback-note {
  font-size: 14px;
  color: var(--text-muted);
}

.guest-feedback-booking .feedback-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.guest-feedback-booking .feedback-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,168,76,0.1);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.guest-feedback-booking .feedback-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.guest-feedback-booking .feedback-card-stars { font-size: 20px; margin-bottom: 12px; }
.guest-feedback-booking .feedback-card p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
}
.guest-feedback-booking .feedback-tag {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.guest-feedback-booking .feedback-subtitle {
  max-width: 680px;
  margin: 0 auto;
}

/* Inline star reviews (no class) */
.home-page .blog-entry .text {
  padding: 22px;
}
.home-page .blog-entry .text p:first-child {
  font-size: 20px;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .guest-feedback-booking .feedback-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .guest-feedback-booking .feedback-grid { grid-template-columns: 1fr; }
  .guest-feedback-booking .feedback-stars,
  .guest-feedback-booking .feedback-score { font-size: 30px; }
}


/* ─── FAQ ───────────────────────────────────────────────────── */
.faq-section {
  background: var(--white);
}
.faq-section h2 {
  font-family: 'Playfair Display', serif;
}
.faq-section h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 8px;
  padding-left: 16px;
  border-left: 3px solid var(--teal);
  line-height: 1.4;
}
.faq-section p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}


/* ─── FOOTER ────────────────────────────────────────────────── */
.ftco-footer {
  background: var(--navy) !important;
  position: relative;
}
.ftco-footer.ftco-section.img {
  background-image: none !important;
  background-color: var(--navy) !important;
}
.ftco-footer .overlay { display: none !important; }

.ftco-footer .container,
.ftco-footer .row,
.ftco-footer .ftco-footer-widget,
.ftco-footer h2,
.ftco-footer p,
.ftco-footer ul,
.ftco-footer li,
.ftco-footer a {
  position: relative;
  z-index: 2;
}
.ftco-footer, .ftco-footer * {
  user-select: text !important;
  -webkit-user-select: text !important;
}
.ftco-footer a { pointer-events: auto !important; cursor: pointer; }

.ftco-footer,
.ftco-footer p {
  color: rgba(255,255,255,0.75) !important;
}
.ftco-footer .ftco-heading-2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold) !important;
  margin-bottom: 16px;
}
.ftco-footer a {
  color: rgba(255,255,255,0.7) !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}
.ftco-footer a:hover { color: var(--teal) !important; }

.ftco-footer .cta-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%) !important;
  color: var(--navy) !important;
  box-shadow: var(--shadow-gold);
}
.ftco-footer .cta-primary:hover { color: var(--navy) !important; }
.ftco-footer .cta-primary .cta-main,
.ftco-footer .cta-primary .cta-sub { color: var(--navy) !important; }


/* ─── PRICING PAGE ──────────────────────────────────────────── */
.pricing-page { background: var(--pearl); }
.pricing-hero { padding: 80px 0 56px; }
.pricing-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 16px;
}
.pricing-hero p { font-size: clamp(16px, 2.2vw, 19px); color: var(--text-mid); margin-bottom: 28px; }
.pricing-section { padding: 48px 0; }
.pricing-section h2 { font-family: 'Playfair Display', serif; color: var(--navy); margin-bottom: 20px; }
.sand-bg { background: var(--sand); }
.pricing-table-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.pricing-table { margin-bottom: 0; }
.pricing-table thead th {
  background: var(--navy);
  color: #fff;
  border: 0;
  font-weight: 700;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
}
.pricing-table td {
  border-color: rgba(201,168,76,0.12);
  color: var(--text-mid);
  font-weight: 600;
  vertical-align: middle;
}
.pricing-table tbody tr:nth-child(even) td { background: var(--pearl); }
.pricing-checks, .pricing-info-list { margin: 20px 0; padding-left: 0; list-style: none; }
.pricing-checks li, .pricing-info-list li { padding: 6px 0; color: var(--text-mid); }
.pricing-checks li::before { content: "✓  "; color: var(--teal); font-weight: 700; }
.pricing-cta {
  padding: 13px 30px;
  border-radius: 999px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff;
  border: none;
}
.pricing-cta-secondary {
  padding: 12px 26px;
  border-radius: 999px;
  border: 2px solid var(--teal);
  color: var(--teal);
  font-weight: 700;
  background: transparent;
}
.pricing-final-cta {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--gold-light) 100%);
  padding: 64px 0;
}
.pricing-final-cta h2 { color: var(--navy); margin-bottom: 14px; }
.pricing-final-cta p { color: var(--text-mid); margin-bottom: 24px; }
.pricing-cta-final {
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border: none;
}

@media (max-width: 768px) {
  .pricing-hero { padding: 60px 0 40px; }
  .pricing-section { padding: 36px 0; }
  .pricing-table thead th, .pricing-table td { font-size: 14px; padding: 10px 8px; }
}


/* ─── SERVICE ICONS HIGHLIGHT ───────────────────────────────── */
.service-icons-highlight { padding: 24px 0 12px; }
.service-icons-highlight .highlight-wrap {
  background: var(--white);
  border: 1px solid rgba(10,191,188,0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 20px;
}
.service-icons-highlight .highlight-title {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin: 0 0 14px;
  text-align: center;
}
.service-icons-highlight .badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.service-icons-highlight .badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--pearl);
  border: 1px solid rgba(10,191,188,0.2);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  transition: background 0.2s ease, transform 0.2s ease;
  cursor: default;
}
.service-icons-highlight .badge-item:hover { background: var(--teal-light); transform: translateY(-1px); }
.service-icons-highlight .badge-item .symbol { font-size: 1rem; line-height: 1; }
.service-icons-highlight .badge-item.netflix .symbol { color: #e50914; font-weight: 900; }
.service-icons-highlight .badge-item.prime .symbol { color: #00a8e1; }
.service-icons-highlight .badge-item.wifi .symbol { color: var(--teal); }


/* ─── BOOKING FORM ──────────────────────────────────────────── */
.booking-form .form-control {
  background: var(--white) !important;
  border: 1.5px solid rgba(13,27,42,0.15) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--navy) !important;
  font-family: 'Inter', sans-serif;
  padding: 12px 16px;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.booking-form .form-control:focus {
  border-color: var(--teal) !important;
  box-shadow: 0 0 0 3px rgba(10,191,188,0.15) !important;
  outline: none;
}
.booking-form label {
  color: var(--navy) !important;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}
.booking-form textarea.form-control { min-height: 130px; }


/* ─── WHATSAPP FLOAT ────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 3000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff !important;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease;
}
.whatsapp-float:hover, .whatsapp-float:focus {
  color: #fff !important;
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37,211,102,0.45);
  text-decoration: none;
}
.whatsapp-float-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 640px) {
  .whatsapp-float { right: 12px; bottom: 12px; padding: 11px 14px; font-size: 13px; }
}


/* ─── COOKIE BANNER ─────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 4000;
}
.cookie-banner-inner {
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(13,27,42,0.97);
  color: #fff;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 20px 24px;
}
.cookie-title { margin: 0 0 8px; font-weight: 800; font-size: 1rem; font-family: 'Playfair Display', serif; }
.cookie-text, .cookie-legal {
  margin: 0 0 10px;
  line-height: 1.5;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  font-family: 'Inter', sans-serif;
}
.cookie-legal a { color: var(--teal); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn {
  border: 0;
  border-radius: var(--radius-sm);
  padding: 11px 20px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  font-size: 14px;
}
.cookie-accept { background: var(--teal); color: #fff; }
.cookie-accept:hover { background: var(--teal-dark); }
.cookie-reject { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.cookie-reject:hover { background: rgba(255,255,255,0.22); }
@media (max-width: 700px) {
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; }
  .cookie-banner-inner { padding: 16px; }
  .cookie-btn { width: 100%; }
}


/* ─── LOADER ────────────────────────────────────────────────── */
#ftco-loader.show.fullscreen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
#ftco-loader .path { stroke: var(--teal) !important; }


/* ─── AOS ANIMATION ENHANCEMENT ────────────────────────────── */
[data-aos] { will-change: transform, opacity; }


/* ─── ROOM WRAP ─────────────────────────────────────────────── */
.room-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}
.room-wrap:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.img.d-flex {
  border-radius: var(--radius-md);
  overflow: hidden;
}


/* ─── HOME PAGE OVERRIDES ───────────────────────────────────── */
.home-page { background: var(--white) !important; }
.home-page #main > section.ftco-section { background: var(--white) !important; }
.home-page #main > section.ftco-section:nth-of-type(even) { background: var(--pearl) !important; }

.home-page a.block-20.rounded[aria-label] {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 220px;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
.home-page .blog-entry.align-self-stretch { width: 100%; }

/* Guide section link override */
.home-page .row .col-md-10 a:not(.btn):not(.cta-primary) {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
}
.home-page .row .col-md-10 a:not(.btn):not(.cta-primary):hover { color: var(--gold); }


/* ─── REDUCED MOTION ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-aos] { opacity: 1 !important; transform: none !important; }
}


/* Fallback visibility: vendor/css/style.css sets .ftco-animate to opacity:0;visibility:hidden
   and the reveal animation never fires, leaving 218 elements invisible on 55 pages
   (blog cards, photo galleries). Keep content visible regardless of the animation. */
.ftco-animate { opacity: 1; visibility: visible; }
