/*
 * NAO Concierge — Global Stylesheet
 * styles-global.css
 * ─────────────────────────────────────────────────────────────────
 * Shared across: index.html · tenerife.html · grancanaria.html
 *                lanzarote.html
 *
 * Design system:
 *   --black  #0A0A0A  |  --gold  #c9a96e  |  --cream  #F5F0EB
 *   --atlantic  #1B3A5C  (accent blue for hover states)
 *   Typography: Playfair Display (headings) · Inter (body)
 *
 * RULE: Any visual change must be made here — NEVER with inline styles.
 *       Changes here propagate automatically to all pages.
 *
 * Sections:
 *   1. CSS Variables & Reset
 *   2. Typography & Base
 *   3. Navigation (desktop + mobile)
 *   4. Hero
 *   5. Stats bar
 *   6. Services carousel
 *   7. Service subpages (.service-page)
 *   8. Occasions
 *   9. Itineraries
 *  10. Calendar
 *  11. About
 *  12. Contact & Forms
 *  13. FAQ
 *  14. Testimonials & Clients
 *  15. Footer
 *  16. WhatsApp float
 *  17. Chatbot
 *  18. Modals & Overlays
 *  19. Island Selector
 *  20. Partner page
 *  21. Animations & keyframes
 *  22. Responsive (media queries)
 *  23. Mobile nav overlay
 *  24. About panels (mobile)
 *  25. Blog back button (mobile)
 * ─────────────────────────────────────────────────────────────────
 */


/* ════════════════════════════════════════════════════
   1. CSS VARIABLES & RESET
   ════════════════════════════════════════════════════ */

:root {
  --black: #0A0A0A;
  --black-mid: #1A1A1A;
  --black-light: #2A2A2A;
  --gold: #c9a96e;
  --gold-light: #e2c99a;
  --gold-dark: #a07c45;
  --cream: #F5F0EB;
  --cream-dark: #ede5d4;
  --white: #ffffff;
  --atlantic: #1B3A5C;
  --text-light: rgba(245,240,235,0.7);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

/* Hide section divider eyebrows — keep for SEO, invisible in UI */
.services > .section-eyebrow,
.occasions > .section-eyebrow,
section.itineraries .section-header > .section-eyebrow,
.calendar-section .section-header > .section-eyebrow,
.about .about-content > .section-eyebrow,
.contact > .section-eyebrow,
.faq > .section-eyebrow {
  display: none !important;
}

.contact-card {
  text-decoration: none;
  color: inherit;
}

html {
  scroll-behavior: smooth;
}


/* ════════════════════════════════════════════════════
   2. TYPOGRAPHY & BASE
   ════════════════════════════════════════════════════ */

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--cream);
  overflow-x: hidden;
}


/* ════════════════════════════════════════════════════
   3. NAVIGATION (desktop + mobile)
   ════════════════════════════════════════════════════ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 32px;
  height: 72px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,169,110,0.15);
  transition: background 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  cursor: pointer;
  transition: opacity 0.2s;
}

.nav-logo:hover {
  opacity: 0.75;
}

.nav-logo span {
  color: var(--cream);
  font-weight: 300;
}

/* ── HAMBURGER — hidden on desktop, visible on mobile ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-hamburger {
    display: flex;
  }
}

/* ── NAV BOOK BUTTON ── */
.nav-book-btn {
  padding: 9px 22px;
  background: var(--gold);
  color: var(--black);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  flex-shrink: 0;
  margin-left: 20px;
}

.nav-book-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* ── NAV LINKS ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--gold);
}

/* ── Services dropdown ── */
.nav-services {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.nav-services > a {
  cursor: pointer;
}

.services-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--black-mid);
  border: 1px solid rgba(201,169,110,0.55);
  border-radius: 12px;
  padding: 8px;
  min-width: 320px;
  width: 320px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  z-index: 200;
  margin-top: 8px;
}

.services-dropdown::before {
  content: '';
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  height: 24px;
}

.nav-services:hover .services-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.services-dropdown .dropdown-item {
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.2s;
  border-bottom: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.services-dropdown .dropdown-item:hover {
  background: rgba(201,169,110,0.08);
}

.services-dropdown .dropdown-item .dropdown-label {
  display: block;
  white-space: nowrap;
}

.services-dropdown .dropdown-item .dropdown-value {
  white-space: nowrap;
}

/* ── Contact dropdown ── */
.nav-contact {
  position: relative;
}

.nav-contact > a {
  cursor: pointer;
}

.contact-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--black-mid);
  border: 1px solid rgba(201,169,110,0.55);
  border-radius: 12px;
  padding: 20px;
  min-width: 260px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  margin-top: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.contact-dropdown::before {
  content: '';
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  height: 24px;
}

.nav-contact:hover .contact-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(201,169,110,0.1);
  text-decoration: none;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(201,169,110,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  color: var(--gold);
}

.dropdown-icon svg {
  stroke: var(--gold);
}

.dropdown-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

.dropdown-value {
  font-size: 13px;
  color: var(--cream);
  opacity: 0.9;
}

/* ── About dropdown ── */
.nav-about-dd {
  position: relative;
}

.about-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--black-mid);
  border: 1px solid rgba(201,169,110,0.55);
  border-radius: 12px;
  padding: 8px;
  min-width: 240px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 300;
  margin-top: 8px;
}

.nav-about-dd:hover .about-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-about-dd .about-dropdown::before {
  content: '';
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  height: 24px;
}

.about-dropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.about-dd-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
}

.about-dd-item:hover {
  background: rgba(201,169,110,0.08);
}

.about-dd-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(201,169,110,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  color: var(--gold);
}

.about-dd-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-dd-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  display: block;
}

.about-dd-sub {
  font-size: 13px;
  color: var(--cream);
  opacity: 0.9;
  display: block;
}

/* ── Occasions dropdown ── */
.occasions-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--black-mid);
  border: 1px solid rgba(201,169,110,0.55);
  border-radius: 12px;
  padding: 8px;
  min-width: 420px;
  width: 420px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  z-index: 200;
  margin-top: 8px;
}

.occasions-dropdown::before {
  content: '';
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  height: 24px;
}

.nav-occasions-dd:hover .occasions-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-occasions-dd .occasions-dropdown .dropdown-item {
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.2s;
  border-bottom: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-occasions-dd .occasions-dropdown .dropdown-item:hover {
  background: rgba(201,169,110,0.08);
}

.nav-occasions-dd .occasions-dropdown .dropdown-item .dropdown-label {
  display: block;
  white-space: nowrap;
}

.nav-occasions-dd .occasions-dropdown .dropdown-item .dropdown-value {
  white-space: normal;
  max-width: 300px;
  line-height: 1.4;
}

/* ── Journal dropdown ── */
.journal-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--black-mid);
  border: 1px solid rgba(201,169,110,0.55);
  border-radius: 12px;
  padding: 8px;
  min-width: 340px;
  width: 340px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  z-index: 200;
  margin-top: 8px;
}

.journal-dropdown::before {
  content: '';
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  height: 24px;
}

.nav-journal-dd:hover .journal-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-journal-dd .journal-dropdown .dropdown-item {
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.2s;
  border-bottom: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-journal-dd .journal-dropdown .dropdown-item:hover {
  background: rgba(201,169,110,0.08);
}

.nav-journal-dd .journal-dropdown .dropdown-item .dropdown-label {
  display: block;
  white-space: nowrap;
}

.nav-journal-dd .journal-dropdown .dropdown-item .dropdown-value {
  white-space: normal;
  max-width: 260px;
  line-height: 1.4;
}

.journal-view-all {
  border-top: 1px solid rgba(201,169,110,0.15);
  margin-top: 4px;
  padding-top: 10px !important;
}

/* ── NAV PHONES ── */
.nav-phones {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-right: 8px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--text-light);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-phone:hover {
  color: var(--gold);
}

.nav-phone-flag {
  font-size: 14px;
}

.nav-phone-num {
  font-weight: 400;
}

@media (max-width: 1100px) {
  .nav-phones {
    display: none;
  }
}

/* ── LANGUAGE SELECTOR ── */
.nav-lang {
  position: relative;
  margin-right: 8px;
}

.nav-lang-btn {
  background: transparent;
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--text-light);
  padding: 7px 12px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-lang-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.nav-lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--black-mid);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 10px;
  padding: 8px;
  min-width: 180px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 300;
}

.nav-lang-dropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--cream);
  font-weight: 300;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
}

.lang-option:hover {
  background: rgba(201,169,110,0.08);
}

.lang-option.active {
  color: var(--gold);
  font-weight: 500;
}

.lang-option.coming-soon {
  opacity: 0.45;
  cursor: default;
}

.lang-flag {
  font-size: 18px;
  flex-shrink: 0;
}

.lang-label {
  flex: 1;
}

.lang-soon-tag {
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(201,169,110,0.15);
  color: var(--gold);
  padding: 2px 6px;
  border-radius: 3px;
}

/* ── BOOK NOW DROPDOWN ── */
.nav-book-wrap {
  position: relative;
}

.nav-book-wrap .nav-book-btn {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-book-wrap .nav-book-btn:hover {
  background: #d4b483;
}

.nav-book-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: var(--black-mid);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 12px;
  padding: 12px;
  min-width: 240px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 300;
}

.nav-book-dropdown.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav-book-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.nav-book-phone:hover {
  background: rgba(201,169,110,0.08);
}

.nav-book-phone > span {
  font-size: 22px;
  flex-shrink: 0;
}

.nav-book-phone div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nb-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.nb-num {
  font-size: 15px;
  color: var(--cream);
  font-weight: 400;
}

.nb-divider {
  height: 1px;
  background: rgba(201,169,110,0.15);
  margin: 8px 0;
}

.nb-contact-link {
  display: block;
  text-align: center;
  padding: 10px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s;
}

.nb-contact-link:hover {
  opacity: 0.7;
}

nav ul,
nav ul li {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li::marker {
  color: transparent;
  font-size: 0;
}

nav .nav-logo::before {
  display: none;
  content: none;
}

/* ── BILINGUAL / MULTILINGUAL ── */
.zh { display: none !important; }
.en { display: inline; }
html[lang="zh"] .zh { display: inline !important; }
html[lang="zh"] .en { display: none !important; }
.es { display: none !important; }
html[lang="es"] .es { display: inline !important; }
html[lang="es"] .en { display: none !important; }
.de { display: none !important; }
html[lang="de"] .de { display: inline !important; }
html[lang="de"] .en { display: none !important; }
html[lang="de"] .zh { display: none !important; }
html[lang="de"] .es { display: none !important; }
.fr { display: none !important; }
html[lang="fr"] .fr { display: inline !important; }
html[lang="fr"] .en { display: none !important; }
html[lang="fr"] .zh { display: none !important; }
html[lang="fr"] .es { display: none !important; }


/* ════════════════════════════════════════════════════
   4. HERO
   ════════════════════════════════════════════════════ */

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.5) 60%, rgba(10,10,10,0.7) 100%),
              url('Imagenes_WEB/tenerifehero.jpg') center/cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px;
  max-width: 700px;
  padding-top: 72px;
}

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-title em {
  color: var(--gold);
  font-style: italic;
}

.hero-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 44px;
  max-width: 480px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.btn-primary {
  padding: 14px 32px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-outline {
  padding: 14px 32px;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,240,235,0.3);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

/* ── HERO TAGS ── */
.hero-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-tag {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.35);
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(201,169,110,0.06);
  backdrop-filter: blur(4px);
}


/* ════════════════════════════════════════════════════
   5. STATS BAR
   ════════════════════════════════════════════════════ */

.stats {
  background: var(--gold);
  padding: 28px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  border-right: 1px solid rgba(10,10,10,0.2);
  padding: 8px 0;
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.7;
  margin-top: 4px;
}


/* ════════════════════════════════════════════════════
   6. SERVICES CAROUSEL (3D Coverflow)
   ════════════════════════════════════════════════════ */

.services {
  padding: 120px 0 80px;
  background: var(--black);
  overflow: visible;
  width: 100%;
  box-sizing: border-box;
}

.section-header {
  text-align: center;
  padding: 0 48px;
  margin-bottom: 40px;
}

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
}

.section-title em {
  color: var(--gold);
  font-style: italic;
}

/* ── 3D CARD CAROUSEL ── */
.cfl-wrap {
  padding: 20px 0 28px;
  overflow: hidden;
  contain: style paint;
  position: relative;
}

.cfl-stage {
  width: 100%;
  height: 360px;
  position: relative;
  overflow: visible;
  z-index: 2;
  box-sizing: border-box;
}

.cfl-track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.cfl-item {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(201,169,110,0.55);
  will-change: transform, left, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform-style: flat;
  transition: transform 0.30s ease,
              opacity   0.30s ease,
              box-shadow 0.3s ease,
              border-color 0.3s ease,
              left 0.38s cubic-bezier(0.4,0,0.2,1);
}

.cfl-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  z-index: 0;
}

/* Hover: gold border + scale feedback */
.cfl-item.cfl-c:hover {
  transform: scale(1.04) !important;
  opacity: 1 !important;
  border: 2px solid var(--gold) !important;
  box-shadow: 0 0 0 6px rgba(201,169,110,0.12), 0 20px 60px rgba(0,0,0,0.6) !important;
}

.cfl-item.cfl-1l:hover,
.cfl-item.cfl-1r:hover {
  transform: scale(0.89) !important;
  opacity: 1 !important;
  border: 2px solid var(--gold) !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  z-index: 12 !important;
}

.cfl-item.cfl-2l:hover,
.cfl-item.cfl-2r:hover {
  transform: scale(0.66) !important;
  opacity: 0.85 !important;
  border: 2px solid rgba(201,169,110,0.75) !important;
  z-index: 8 !important;
}

.cfl-item:not(.cfl-h):hover .cfl-bg {
  transform: scale(1.06);
}

.cfl-item::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at center, rgba(10,10,10,0.70) 0%, rgba(10,10,10,0.20) 65%, transparent 100%);
  transition: background 0.3s;
}

.cfl-item:hover::after {
  background: linear-gradient(to top, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.1) 55%, transparent 100%);
}

.cfl-txt {
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  padding: 0 24px;
  z-index: 2;
  text-align: center;
}

.cfl-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 5px;
  text-rendering: optimizeLegibility;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.cfl-tag {
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.9;
  text-rendering: geometricPrecision;
}

/* 3D POSITIONS */
.cfl-item.cfl-c {
  transform: scale(1.00);
  opacity: 1.0;
  z-index: 10;
}

.cfl-item.cfl-1l {
  transform: scale(0.82);
  opacity: 0.85;
  z-index: 7;
}

.cfl-item.cfl-1r {
  transform: scale(0.82);
  opacity: 0.85;
  z-index: 7;
}

.cfl-item.cfl-2l {
  transform: scale(0.60);
  opacity: 0.45;
  z-index: 4;
}

.cfl-item.cfl-2r {
  transform: scale(0.60);
  opacity: 0.45;
  z-index: 4;
}

.cfl-item.cfl-h {
  transform: scale(0.3);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

/* nav controls */
.cfl-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.cfl-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.3);
  background: transparent;
  color: var(--gold);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.cfl-btn:hover {
  background: rgba(201,169,110,0.1);
  border-color: var(--gold);
}

.cfl-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.cfl-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201,169,110,0.3);
  cursor: pointer;
  transition: all 0.2s;
}

.cfl-dot.on {
  background: var(--gold);
  width: 20px;
  border-radius: 3px;
}

/* Side arrows */
.cfl-arrow-left,
.cfl-arrow-right {
  position: absolute;
  top: 4px;
  transform: none;
  z-index: 20;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.4);
  background: rgba(10,10,10,0.65);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  line-height: 1;
  user-select: none;
}

.cfl-arrow-left {
  left: 4px;
}

.cfl-arrow-right {
  right: 4px;
}

.cfl-arrow-left:hover {
  background: rgba(201,169,110,0.15);
  border-color: var(--gold);
  transform: scale(1.1);
}

.cfl-arrow-right:hover {
  background: rgba(201,169,110,0.15);
  border-color: var(--gold);
  transform: scale(1.1);
}


/* ════════════════════════════════════════════════════
   7. SERVICE SUBPAGES (.service-page)
   ════════════════════════════════════════════════════ */

.service-page {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  z-index: 500;
  background: var(--black);
  overflow-y: auto;
  transition: left 0.45s cubic-bezier(0.4,0,0.2,1);
}

.service-page.sp-open {
  left: 0 !important;
}

.sp-header {
  background: linear-gradient(135deg, var(--black-mid) 0%, var(--black) 100%);
  padding: 32px 48px 72px;
  border-bottom: 1px solid rgba(201,169,110,0.15);
  position: relative;
  overflow: hidden;
}

/* Event Management background support */
#page-events .sp-header {
  background-image: linear-gradient(135deg, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.65) 100%), url('Imagenes_WEB/tenerifeparty.jpg');
  background-size: cover;
  background-position: center top;
}

.sp-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--gold);
  padding: 10px 20px;
  border-radius: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  margin-bottom: 48px;
  transition: all 0.2s;
}

.sp-back:hover {
  background: rgba(201,169,110,0.08);
  border-color: var(--gold);
}

.sp-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  margin: 16px 0 24px;
}

.sp-hero-intro {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 620px;
  margin-bottom: 36px;
}

.sp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,169,110,0.1);
}

.sp-card {
  background: var(--black);
  padding: 48px;
  transition: background 0.3s;
}

.sp-card:hover {
  background: var(--black-mid);
}

.sp-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.sp-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 30px;
}

.sp-card-icon svg {
  stroke: var(--gold);
  display: block;
}

.sp-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--cream);
}

.sp-card-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 24px;
}

.sp-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.sp-card-list li {
  font-size: 13px;
  color: var(--cream);
  opacity: 0.82;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.sp-card-list li::before {
  content: '\2014';
  color: var(--gold);
  position: absolute;
  left: 0;
}

.sp-card-with-bg {
  position: relative;
  overflow: hidden;
}

.sp-card-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.18;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.sp-card-with-bg:hover .sp-card-bg-img {
  opacity: 0.26;
}

.sp-card-with-bg > *:not(.sp-card-bg-img) {
  position: relative;
  z-index: 1;
}

/* ── SP HEADER CTAs ── */
.sp-header-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn-check-pricing {
  padding: 14px 32px;
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.5);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-check-pricing::before {
  content: '\2726';
  font-size: 9px;
}

.btn-check-pricing:hover {
  background: rgba(201,169,110,0.08);
  border-color: var(--gold);
}

.btn-check-pricing.active {
  background: rgba(201,169,110,0.12);
  border-color: var(--gold);
}

.sp-mode-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s;
  font-family: 'Inter', sans-serif;
}

.sp-mode-label.visible {
  opacity: 1;
}

/* Cards in calculator mode */
.sp-card .sp-card-content {
  transition: opacity 0.3s;
}

.sp-card .sp-card-calc {
  display: none;
}

.pricing-mode .sp-card .sp-card-content {
  display: none;
}

.pricing-mode .sp-card .sp-card-calc {
  display: block;
}

/* ── SP FOOTER ── */
.sp-footer {
  border-top: 1px solid rgba(201,169,110,0.15);
  padding: 0;
  width: 100%;
}

.sp-footer button {
  display: block;
  width: 100%;
  padding: 36px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.sp-footer button:hover {
  background: #d4b578;
}


/* ════════════════════════════════════════════════════
   8. OCCASIONS
   ════════════════════════════════════════════════════ */

.occasions {
  padding: 100px 48px;
  background: var(--black-mid);
}

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.occasion-card {
  padding: 32px 28px;
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 12px;
  background: var(--black);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  min-height: 180px;
}

.occasion-card:hover {
  border-color: rgba(201,169,110,0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.occ-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.4s ease;
  z-index: 0;
}

.occasion-card:hover .occ-bg {
  transform: none;
}

.occ-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.80) 0%, rgba(10,10,10,0.50) 100%);
  transition: background 0.3s;
  z-index: 1;
}

.occasion-card:hover .occ-overlay {
  background: linear-gradient(135deg, rgba(10,10,10,0.68) 0%, rgba(10,10,10,0.38) 100%);
}

.occasion-card > *:not(.occ-bg):not(.occ-overlay) {
  position: relative;
  z-index: 2;
}

.occasion-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.occasion-name {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 10px;
}

.occasion-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245,240,235,0.8);
}

.occasion-arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 18px;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-4px);
  z-index: 1;
}

.occasion-card:hover .occasion-arrow {
  opacity: 1;
  transform: translateX(0);
}


/* ════════════════════════════════════════════════════
   9. ITINERARIES
   ════════════════════════════════════════════════════ */

.itineraries {
  padding: 100px 0;
  background: var(--black-mid);
}

.itin-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0 48px;
  margin-bottom: 56px;
}

.itin-tab {
  padding: 10px 24px;
  border-radius: 32px;
  border: 1px solid rgba(201,169,110,0.3);
  background: transparent;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
}

.itin-tab:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.itin-tab.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  font-weight: 600;
}

.itin-panel {
  display: none;
  padding: 0 48px;
}

.itin-panel.active {
  display: block;
}

.itin-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 64px;
}

.itin-badge {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.itin-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 20px;
}

.itin-title em {
  color: var(--gold);
  font-style: italic;
}

.itin-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 32px;
}

.itin-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.itin-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.itin-meta-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.itin-meta-value {
  font-size: 14px;
  color: var(--cream);
  font-weight: 300;
}

.itin-price {
  display: inline-block;
  padding: 14px 28px;
  border: 1px solid rgba(201,169,110,0.4);
  border-radius: 4px;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--cream);
}

.itin-price span {
  color: var(--gold);
  font-size: 22px;
  font-weight: 300;
}

.itin-highlights {
  background: rgba(10,10,10,0.5);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 12px;
  padding: 32px;
}

.itin-highlights-title {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.itin-highlight-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.itin-highlight-list li {
  font-size: 14px;
  color: var(--cream);
  font-weight: 300;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.itin-highlight-list li::before {
  content: '\2726';
  color: var(--gold);
  position: absolute;
  left: 0;
  font-size: 10px;
  top: 3px;
}

.itin-days {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 48px;
  align-items: stretch;
}

.itin-day {
  background: rgba(10,10,10,0.4);
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: 12px;
  padding: 24px;
  transition: border-color 0.3s, background 0.3s;
  display: flex;
  flex-direction: column;
}

.itin-day:hover {
  border-color: rgba(201,169,110,0.35);
  background: rgba(10,10,10,0.65);
}

.itin-day-num {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.itin-day-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
}

.itin-day-desc {
  flex: 1;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
  margin-top: 8px;
}

.itin-cta {
  text-align: center;
  padding: 48px 0 0;
  border-top: 1px solid rgba(201,169,110,0.12);
}

.itin-cta p {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 24px;
}


/* ════════════════════════════════════════════════════
   10. CALENDAR
   ════════════════════════════════════════════════════ */

.party-calendar {
  padding: 100px 0;
  background: var(--black);
}

.cal-upcoming {
  padding: 80px 0;
  background: var(--black);
}

.cal-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0 48px;
  margin-bottom: 56px;
}

.cal-filter {
  padding: 8px 20px;
  border-radius: 24px;
  border: 1px solid rgba(201,169,110,0.3);
  background: transparent;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.cal-filter:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.cal-filter.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  font-weight: 600;
}

.cal-grid {
  display: grid;
  gap: 2px;
  background: rgba(201,169,110,0.08);
  padding: 0 48px;
}

.cal-month-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--cream);
  padding: 24px 0 16px;
  border-bottom: 1px solid rgba(201,169,110,0.15);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cal-month-title span {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.cal-events {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.cal-event {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 20px;
  background: rgba(10,10,10,0.4);
  border: 1px solid rgba(201,169,110,0.1);
  border-radius: 10px;
  padding: 16px 24px;
  transition: all 0.25s;
}

.cal-event:hover {
  border-color: rgba(201,169,110,0.35);
  background: rgba(10,10,10,0.7);
}

.cal-event.featured {
  border-color: rgba(201,169,110,0.4);
  background: rgba(201,169,110,0.05);
}

.cal-date {
  text-align: center;
  border-right: 1px solid rgba(201,169,110,0.15);
  padding-right: 20px;
}

.cal-date-day {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
}

.cal-date-month {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.cal-event-name {
  font-size: 15px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 4px;
}

.cal-event-detail {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 300;
}

.cal-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cal-tag {
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}

.cal-tag.tenerife { background: rgba(138,43,226,0.2); color: #c084fc; border: 1px solid rgba(138,43,226,0.3); }
.cal-tag.gran-canaria { background: rgba(59,130,246,0.15); color: #93c5fd; border: 1px solid rgba(59,130,246,0.25); }
.cal-tag.lanzarote { background: rgba(16,185,129,0.15); color: #6ee7b7; border: 1px solid rgba(16,185,129,0.25); }
.cal-tag.nightlife { background: rgba(239,68,68,0.15); color: #fca5a5; border: 1px solid rgba(239,68,68,0.25); }
.cal-tag.sailing { background: rgba(14,165,233,0.15); color: #7dd3fc; border: 1px solid rgba(14,165,233,0.25); }
.cal-tag.culture { background: rgba(201,169,110,0.15); color: var(--gold); border: 1px solid rgba(201,169,110,0.3); }
.cal-tag.sport { background: rgba(34,197,94,0.15); color: #86efac; border: 1px solid rgba(34,197,94,0.25); }
.cal-tag.gastronomy { background: rgba(251,146,60,0.15); color: #fdba74; border: 1px solid rgba(251,146,60,0.25); }
.cal-tag.daylife { background: rgba(250,204,21,0.15); color: #fde047; border: 1px solid rgba(250,204,21,0.25); }
.cal-tag.wellness { background: rgba(167,139,250,0.15); color: #c4b5fd; border: 1px solid rgba(167,139,250,0.25); }
.cal-tag.nature { background: rgba(52,211,153,0.15); color: #6ee7b7; border: 1px solid rgba(52,211,153,0.25); }
.cal-tag.art { background: rgba(244,114,182,0.15); color: #f9a8d4; border: 1px solid rgba(244,114,182,0.25); }

.cal-cta {
  text-align: center;
  padding: 56px 48px 0;
  border-top: 1px solid rgba(201,169,110,0.12);
  margin-top: 16px;
}

.cal-cta p {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 12px;
}

.cal-cta small {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.cal-hidden {
  display: none !important;
}

.cal-upcoming-strip {
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
}

.cal-upcoming-event {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 20px;
  background: rgba(10,10,10,0.4);
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: 10px;
  padding: 14px 24px;
  transition: all 0.25s;
}

.cal-upcoming-event:hover {
  border-color: rgba(201,169,110,0.35);
  background: rgba(10,10,10,0.7);
}

.cal-upcoming-event.featured {
  border-color: rgba(201,169,110,0.3);
  background: rgba(201,169,110,0.04);
}

.cal-upcoming-cta {
  text-align: center;
  padding: 0 48px;
}

.cal-upcoming-cta p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.calendar-page {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  z-index: 500;
  background: var(--black);
  overflow-y: auto;
  transition: left 0.45s cubic-bezier(0.4,0,0.2,1);
}

.calendar-page.cp-open {
  left: 0 !important;
}

.cp-header {
  background: linear-gradient(135deg, var(--black-mid) 0%, var(--black) 100%);
  padding: 32px 48px 56px;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.cp-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--gold);
  padding: 10px 20px;
  border-radius: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  margin-bottom: 40px;
  transition: all 0.2s;
}

.cp-back:hover {
  background: rgba(201,169,110,0.08);
  border-color: var(--gold);
}


/* ════════════════════════════════════════════════════
   11. ABOUT
   ════════════════════════════════════════════════════ */

.about {
  padding: 120px 48px;
  background: var(--black-mid);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
  filter: brightness(0.9) saturate(0.9);
  display: block;
}

.about-image-frame {
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 12px;
  pointer-events: none;
}

.about-content .section-eyebrow {
  text-align: left;
}

.about-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-title em {
  color: var(--gold);
  font-style: italic;
}

.about-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 48px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.value-card {
  padding: 20px;
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 8px;
  background: rgba(10,10,10,0.4);
  cursor: default;
  transition: all 0.3s;
  overflow: hidden;
  position: relative;
}

.value-card:hover {
  border-color: rgba(201,169,110,0.5);
  background: rgba(10,10,10,0.7);
  transform: translateY(-2px);
}

.value-card:hover .value-illustration {
  opacity: 0.18;
}

.value-illustration {
  position: absolute;
  top: 8px;
  right: 8px;
  opacity: 0.1;
  transition: opacity 0.3s;
  pointer-events: none;
}

.value-roman {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 3px;
  opacity: 0.9;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.value-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.value-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.value-icon svg {
  stroke: var(--gold);
  display: block;
}

.value-desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}


/* ════════════════════════════════════════════════════
   12. CONTACT & FORMS
   ════════════════════════════════════════════════════ */

.contact {
  padding: 120px 48px;
  background: var(--black);
}

.contact .section-header {
  margin-bottom: 64px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 12px;
  background: rgba(26,26,26,0.4);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

.contact-card:hover {
  border-color: rgba(201,169,110,0.5);
  background: rgba(26,26,26,0.7);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.contact-card-icon svg {
  stroke: var(--gold);
  display: block;
}

.contact-card-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-card-value {
  font-size: 14px;
  color: var(--cream);
}

/* ── Form ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(26,26,26,0.5);
  border: 1px solid rgba(201,169,110,0.55);
  border-radius: 6px;
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245,240,235,0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select option {
  background: var(--black-mid);
}

.form-submit {
  padding: 14px 32px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}


/* ════════════════════════════════════════════════════
   13. FAQ
   ════════════════════════════════════════════════════ */

.faq {
  padding: 100px 48px;
  background: var(--black);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border-bottom: 1px solid rgba(201,169,110,0.12);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--cream);
  text-align: left;
  gap: 20px;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding-bottom: 0;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}


/* ════════════════════════════════════════════════════
   14. TESTIMONIALS & CLIENTS
   ════════════════════════════════════════════════════ */

.testimonials {
  padding: 120px 48px;
  background: var(--black-mid);
}

.clients-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 72px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.client-logo {
  width: 120px;
  height: 44px;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  letter-spacing: 2px;
  color: rgba(201,169,110,0.5);
  text-transform: uppercase;
  transition: all 0.3s;
}

.client-logo:hover {
  background: rgba(201,169,110,0.12);
  border-color: rgba(201,169,110,0.3);
  color: var(--gold);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(10,10,10,0.5);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(201,169,110,0.35);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.star {
  color: var(--gold);
  font-size: 14px;
}

.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  color: var(--gold);
  font-weight: 500;
  flex-shrink: 0;
}

.author-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
}

.author-origin {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 1px;
}


/* ════════════════════════════════════════════════════
   15. FOOTER
   ════════════════════════════════════════════════════ */

footer {
  background: var(--black-mid);
  border-top: 1px solid rgba(201,169,110,0.15);
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.footer-brand span {
  color: var(--cream);
  font-weight: 300;
}

.footer-tagline {
  font-size: 11px;
  color: var(--gold);
  margin-top: 4px;
  letter-spacing: 1.5px;
  opacity: 0.8;
}

.footer-copy {
  font-size: 11px;
  color: var(--text-light);
}

.footer-upgraded {
  background: var(--black-mid);
  border-top: 1px solid rgba(201,169,110,0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 56px 48px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo-full {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 2px;
}

.footer-logo-full span {
  color: var(--cream);
  font-weight: 300;
}

.footer-tagline-full {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1.5px;
  opacity: 0.8;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
}

.footer-social-link:hover {
  border-color: var(--gold);
  background: rgba(201,169,110,0.1);
}

.footer-col-title {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}

.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-links a {
  font-size: 13px;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}

.footer-col-links a:hover {
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-top: 1px solid rgba(201,169,110,0.1);
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.footer-bottom-left {
  font-size: 11px;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
}

.footer-bottom-right {
  display: flex;
  gap: 24px;
}

.footer-bottom-right a {
  font-size: 11px;
  color: var(--text-light);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.footer-bottom-right a:hover {
  color: var(--gold);
}

/* footer-top legacy alias */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 56px 48px 40px;
}


/* ════════════════════════════════════════════════════
   16. WHATSAPP FLOAT
   ════════════════════════════════════════════════════ */

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 150;
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-label {
  background: var(--black-mid);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 24px;
  padding: 8px 16px;
  font-size: 12px;
  color: var(--cream);
  white-space: nowrap;
  position: absolute;
  right: calc(100% + 10px);
  bottom: 50%;
  transform: translateY(50%) translateX(8px);
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
  font-family: 'Inter', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.whatsapp-float:hover .whatsapp-label {
  opacity: 1;
  transform: translateY(50%) translateX(0);
}

.whatsapp-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  border: 2px solid #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}


/* ════════════════════════════════════════════════════
   17. CHATBOT
   ════════════════════════════════════════════════════ */

.chatbot-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 24px;
}

.chatbot-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.chatbot-window {
  background: var(--black-mid);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  height: 600px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s;
  overflow: hidden;
}

.chatbot-overlay.open .chatbot-window {
  transform: translateY(0) scale(1);
}

.chatbot-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(201,169,110,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chatbot-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--cream);
}

.chatbot-subtitle {
  font-size: 11px;
  color: var(--text-light);
}

.chatbot-close {
  margin-left: auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.55);
  background: transparent;
  color: var(--cream);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.chatbot-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,169,110,0.2) transparent;
}

.msg {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.6;
}

.msg.bot {
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.15);
  color: var(--cream);
  border-radius: 4px 12px 12px 12px;
  align-self: flex-start;
}

.msg.user {
  background: var(--gold);
  color: var(--black);
  font-weight: 500;
  border-radius: 12px 4px 12px 12px;
  align-self: flex-end;
}

.msg.typing {
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.1);
  color: var(--text-light);
  align-self: flex-start;
  font-style: italic;
  font-size: 13px;
}

.chatbot-input-area {
  padding: 16px 20px;
  border-top: 1px solid rgba(201,169,110,0.15);
  display: flex;
  gap: 10px;
}

.chatbot-input {
  flex: 1;
  background: rgba(10,10,10,0.6);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 24px;
  padding: 10px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}

.chatbot-input:focus {
  border-color: var(--gold);
}

.chatbot-input::placeholder {
  color: rgba(245,240,235,0.3);
}

.chatbot-send {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  color: var(--black);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.chatbot-send:hover {
  background: var(--gold-light);
  transform: scale(1.05);
}

.chatbot-trigger {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 150;
  display: flex;
  align-items: flex-end;
  flex-direction: row-reverse;
  gap: 12px;
}

.chatbot-trigger-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(201,169,110,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.chatbot-trigger-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(201,169,110,0.5);
}

.chatbot-trigger-label {
  background: var(--black-mid);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 24px;
  padding: 8px 16px;
  font-size: 12px;
  color: var(--cream);
  white-space: nowrap;
  position: absolute;
  right: calc(100% + 10px);
  bottom: 50%;
  transform: translateY(50%) translateX(8px);
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
}

.chatbot-trigger:hover .chatbot-trigger-label {
  opacity: 1;
  transform: translateY(50%) translateX(0);
}


/* ════════════════════════════════════════════════════
   18. MODALS & OVERLAYS
   ════════════════════════════════════════════════════ */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 24px;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--black-mid);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 16px;
  padding: 48px;
  max-width: 600px;
  width: 100%;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.55);
  background: transparent;
  color: var(--cream);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.modal-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.modal-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.modal-eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.2;
}

.modal-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 28px;
}

.modal-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.modal-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--cream);
  font-weight: 300;
}

.modal-feature::before {
  content: '\2014';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.modal-sub-tag {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 20px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
}

.modal-cta {
  padding: 14px 32px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.modal-cta:hover {
  background: var(--gold-light);
}

/* ── SC MODAL (Service Contact) ── */
.sc-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 700;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  padding: 20px;
}

.sc-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.sc-modal {
  background: var(--black-mid);
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 16px;
  padding: 48px;
  max-width: 560px;
  width: 100%;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s;
}

.sc-modal-overlay.open .sc-modal {
  transform: translateY(0) scale(1);
}

.sc-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.55);
  background: transparent;
  color: var(--cream);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.sc-modal-close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.sc-modal-eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}

.sc-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 28px;
  line-height: 1.2;
}

.sc-modal-title em {
  color: var(--gold);
  font-style: italic;
}

.sc-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sc-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sc-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sc-form-group label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
}

.sc-form-group input,
.sc-form-group textarea,
.sc-form-group select {
  background: rgba(10,10,10,0.6);
  border: 1px solid rgba(201,169,110,0.55);
  border-radius: 6px;
  padding: 11px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.sc-form-group input:focus,
.sc-form-group textarea:focus,
.sc-form-group select:focus {
  border-color: var(--gold);
}

.sc-form-group input::placeholder,
.sc-form-group textarea::placeholder {
  color: rgba(245,240,235,0.3);
}

.sc-form-group textarea {
  min-height: 90px;
  resize: vertical;
}

.sc-form-group select option {
  background: var(--black-mid);
}

.sc-submit {
  padding: 14px 32px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}

.sc-submit:hover {
  background: var(--gold-light);
}

.sc-success {
  text-align: center;
  padding: 20px 0;
  display: none;
}

.sc-success-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.sc-success-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--cream);
  margin-bottom: 10px;
}

.sc-success-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}


/* ════════════════════════════════════════════════════
   19. ISLAND SELECTOR
   ════════════════════════════════════════════════════ */

.island-selector {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  padding: 100px 24px 60px;
  transition: opacity 0.4s ease;
}

.island-selector.hide {
  opacity: 0;
  pointer-events: none;
}

.island-selector-inner {
  text-align: center;
  padding: 0;
  max-width: 1100px;
  width: 100%;
}

.island-selector-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.island-selector-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

.island-selector-title em {
  color: var(--gold);
  font-style: italic;
}

.island-selector-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 48px;
  letter-spacing: 1px;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.island-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.island-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(201,169,110,0.2);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
}

.island-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.3) 60%, transparent 100%);
  transition: background 0.4s;
}

.island-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.island-card:hover::before {
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.2) 60%, transparent 100%);
}

.island-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 22px;
  text-align: left;
}

.island-card-tag {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.island-card-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 10px;
}

.island-card-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 24px;
}

.island-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  transition: gap 0.2s;
}

.island-card:hover .island-card-btn {
  gap: 14px;
}

.island-card-btn-line {
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.island-card:hover .island-card-btn-line {
  width: 40px;
}

.island-selector-skip {
  margin-top: 40px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245,240,235,0.3);
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards;
}

.island-selector-skip:hover {
  color: var(--text-light);
}

/* Island card backgrounds — Canary Islands */
.island-card.tenerife {
  background-image: url('Imagenes_WEB/tenerifehero.jpg');
}

.island-card.gran-canaria {
  background-image: url('Imagenes_WEB/grancanariahero.jpg');
}

.island-card.lanzarote {
  background-image: url('Imagenes_WEB/lanzarotehero.jpg');
}


/* ════════════════════════════════════════════════════
   20. PARTNER PAGE
   ════════════════════════════════════════════════════ */

.partner-page {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  z-index: 500;
  background: var(--black);
  overflow-y: auto;
  transition: left 0.45s cubic-bezier(0.4,0,0.2,1);
}

.partner-page.pp-open {
  left: 0 !important;
}

.pp-header {
  background: linear-gradient(135deg, var(--black-mid) 0%, var(--black) 100%);
  padding: 32px 48px 64px;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.pp-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--gold);
  padding: 10px 20px;
  border-radius: 24px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  margin-bottom: 48px;
  transition: all 0.2s;
}

.pp-back:hover {
  background: rgba(201,169,110,0.08);
}

.pp-body {
  padding: 64px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.pp-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
  align-items: start;
}

.pp-intro-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 24px;
}

.pp-intro-text h2 em {
  color: var(--gold);
  font-style: italic;
}

.pp-intro-text p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 16px;
}

.pp-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pp-stat {
  background: rgba(201,169,110,0.06);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.pp-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.pp-stat-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 8px;
}

.pp-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 8px;
}

.pp-section-title em {
  color: var(--gold);
  font-style: italic;
}

.pp-section-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.7;
}

.pp-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 80px;
}

.pp-benefit {
  background: rgba(10,10,10,0.5);
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: 12px;
  padding: 32px;
  transition: border-color 0.3s;
}

.pp-benefit:hover {
  border-color: rgba(201,169,110,0.4);
}

.pp-benefit-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pp-benefit-icon svg {
  stroke: var(--gold);
  display: block;
}

.pp-benefit-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
}

.pp-benefit-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
}

.pp-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 80px;
}

.pp-tier {
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 16px;
  padding: 36px;
  text-align: center;
  background: rgba(10,10,10,0.4);
  transition: all 0.3s;
}

.pp-tier.featured {
  border-color: var(--gold);
  background: rgba(201,169,110,0.06);
  transform: scale(1.03);
}

/* ── TIER METALS ── */
.pp-tier-silver {
  background: linear-gradient(160deg, rgba(168,180,192,0.12) 0%, rgba(168,180,192,0.04) 100%);
  border-color: rgba(168,180,192,0.35);
}

.pp-tier-silver .pp-tier-name,
.pp-tier-silver .pp-tier-commission {
  color: #A8B4C0;
}

.pp-tier-silver .pp-tier-label {
  color: #A8B4C0;
  letter-spacing: 3px;
}

.pp-tier-silver .pp-tier-list li::before {
  color: #A8B4C0;
}

.pp-tier-silver:hover {
  border-color: rgba(168,180,192,0.65);
  background: linear-gradient(160deg, rgba(168,180,192,0.1) 0%, rgba(10,10,10,0.6) 100%);
}

.pp-tier-gold {
  background: linear-gradient(160deg, rgba(201,169,110,0.15) 0%, rgba(201,169,110,0.05) 100%);
  border-color: var(--gold);
}

.pp-tier-platinum {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(216,212,207,0.13) 0%, rgba(216,212,207,0.04) 100%);
  border-color: rgba(216,212,207,0.4);
}

.pp-tier-platinum .pp-tier-name,
.pp-tier-platinum .pp-tier-commission {
  color: #D8D4CF;
}

.pp-tier-platinum .pp-tier-label {
  color: #D8D4CF;
  letter-spacing: 3px;
}

.pp-tier-platinum .pp-tier-list li::before {
  color: #D8D4CF;
}

.pp-tier-platinum:hover {
  border-color: rgba(216,212,207,0.7);
  background: linear-gradient(160deg, rgba(216,212,207,0.12) 0%, rgba(10,10,10,0.6) 100%);
}

.pp-tier-platinum::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(216,212,207,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.pp-tier-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.pp-tier-name {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
}

.pp-tier-commission {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.pp-tier-commission span {
  font-size: 18px;
}

.pp-tier-desc {
  font-size: 13px;
  color: var(--text-light);
  margin: 16px 0 24px;
  line-height: 1.7;
}

.pp-tier-list {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pp-tier-list li {
  font-size: 13px;
  color: var(--cream);
  padding-left: 18px;
  position: relative;
}

.pp-tier-list li::before {
  content: '\2726';
  color: var(--gold);
  position: absolute;
  left: 0;
  font-size: 9px;
  top: 3px;
}

.pp-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 80px;
}

.pp-step {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: 12px;
  background: rgba(10,10,10,0.3);
}

.pp-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(201,169,110,0.25);
  line-height: 1;
  margin-bottom: 12px;
}

.pp-step-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 8px;
}

.pp-step-desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.7;
}

.pp-cta {
  text-align: center;
  padding: 64px 0;
  border-top: 1px solid rgba(201,169,110,0.15);
}

.pp-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 16px;
}

.pp-cta h3 em {
  color: var(--gold);
  font-style: italic;
}

.pp-cta p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.pp-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ════════════════════════════════════════════════════
   PRICE CALCULATORS
   ════════════════════════════════════════════════════ */

.price-calc {
  margin-top: 32px;
  background: rgba(201,169,110,0.04);
  border: 1px solid rgba(201,169,110,0.55);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-calc .calc-disclaimer {
  margin-top: 12px;
}

/* Equal height cards in pricing mode */
.sp-grid.pricing-mode {
  align-items: stretch;
}

.sp-grid.pricing-mode .sp-card {
  display: flex;
  flex-direction: column;
}

.sp-grid.pricing-mode .sp-card-calc {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sp-grid.pricing-mode .sp-card-calc .price-calc {
  flex: 1;
}

.price-calc-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-calc-title::before {
  content: '\2726';
  font-size: 12px;
}

.calc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.calc-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.calc-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
}

.calc-select,
.calc-input {
  background: rgba(10,10,10,0.6);
  border: 1px solid rgba(201,169,110,0.55);
  border-radius: 6px;
  padding: 10px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s;
  cursor: pointer;
  -webkit-appearance: none;
}

.calc-select:focus,
.calc-input:focus {
  border-color: var(--gold);
}

.calc-select option {
  background: var(--black-mid);
}

.calc-result {
  margin-top: 20px;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 0.3s;
}

.calc-result.visible {
  opacity: 1;
}

.calc-result-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}

.calc-result-price {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.calc-result-note {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 4px;
}

.calc-btn {
  width: 100%;
  margin-top: 16px;
  padding: 12px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.calc-btn:hover {
  background: var(--gold-light);
}

.calc-disclaimer {
  font-size: 11px;
  color: var(--text-light);
  margin-top: 12px;
  opacity: 0.7;
  line-height: 1.5;
}


/* ════════════════════════════════════════════════════
   21. ANIMATIONS & KEYFRAMES
   ════════════════════════════════════════════════════ */

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

@keyframes scrollPulse {
  0%, 100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  50% {
    opacity: 0.3;
    transform: translateX(-50%) translateY(10px);
  }
}


/* ════════════════════════════════════════════════════
   22. RESPONSIVE (media queries)
   Breakpoints: 768px (tablet) + 480px (mobile)
   ════════════════════════════════════════════════════ */

/* ── BLOG BACK BUTTON — hidden on desktop ── */
.blog-back-btn {
  display: none;
}

/* ── ABOUT PANELS & MODALS — hidden on desktop ── */
.about-panel {
  display: none;
}

.call-modal-overlay {
  display: none;
}


/* ════════════════════════════════════════════════════
   23. MOBILE NAV OVERLAY
   ════════════════════════════════════════════════════ */

.nav-mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: var(--black);
  display: flex;
  flex-direction: column;
  left: 100%;
  transition: left 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}

.nav-mobile-overlay.open {
  left: 0 !important;
}

.nmo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(201,169,110,0.15);
  flex-shrink: 0;
}

.nmo-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nmo-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}

.nmo-logo-text span {
  color: var(--cream);
  font-weight: 300;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  display: block;
  margin-top: 2px;
}

.nmo-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.3);
  background: transparent;
  color: var(--cream);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nmo-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 0;
}

.nmo-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  border-bottom: 1px solid rgba(201,169,110,0.06);
  transition: color 0.2s, background 0.2s;
}

.nmo-item:hover {
  color: var(--gold);
  background: rgba(201,169,110,0.04);
}

.nmo-arrow {
  font-size: 18px;
  color: var(--gold);
  opacity: 0.6;
  transition: transform 0.25s;
}

.nmo-toggle.active .nmo-arrow {
  transform: rotate(90deg);
}

.nmo-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: rgba(201,169,110,0.03);
}

.nmo-submenu.open {
  max-height: 400px;
}

.nmo-sub-item {
  display: block;
  padding: 12px 28px 12px 44px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,169,110,0.05);
  transition: color 0.2s;
}

.nmo-sub-item:hover {
  color: var(--gold);
}

.nmo-divider {
  height: 1px;
  background: rgba(201,169,110,0.15);
  margin: 8px 0;
}

.nmo-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(201,169,110,0.15);
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.nmo-whatsapp {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 4px;
  color: var(--cream);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}

.nmo-whatsapp:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.nmo-book {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: var(--gold);
  border-radius: 4px;
  color: var(--black);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}


/* ════════════════════════════════════════════════════
   TABLET BREAKPOINT — 768px
   ════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── NAV ── */
  .nav-links { display: none; }
  .nav-book-wrap { display: none; }
  .nav-lang { display: none; }
  nav { padding: 0 20px; }
  .nav-logo svg { width: 80px; height: 28px; }

  /* ── HERO ── */
  .hero-content {
    padding: 0 24px;
    padding-top: 72px;
    max-width: 100%;
  }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; }
  .hero-tags { flex-wrap: wrap; gap: 8px; }

  /* ── STATS ── */
  .stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 24px;
    gap: 0;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(10,10,10,0.15);
    padding: 16px 8px;
  }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid rgba(10,10,10,0.15); }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { border-bottom: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(10,10,10,0.15); }

  /* ── SECTIONS — padding ── */
  .services { padding: 72px 0; }
  .section-header { padding: 0 24px; }
  .testimonials { padding: 72px 24px; }
  .about { padding: 72px 24px; }
  .contact { padding: 72px 24px; }
  .faq { padding: 72px 24px; }

  /* ── ISLAND SELECTOR ── */
  .island-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .island-card { aspect-ratio: 2/3; }
  .island-selector-inner { padding: 80px 20px 40px; }
  .island-selector-title { font-size: clamp(28px, 8vw, 42px); }

  /* ── ABOUT ── */
  .about {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image img { height: 280px; }
  .values-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* ── OCCASIONS ── */
  .occasions-grid { grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 24px; }
  .occasion-card { padding: 24px 20px; }

  /* ── TESTIMONIALS ── */
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .clients-logos { gap: 20px; }

  /* ── CONTACT ── */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }

  /* ── FOOTER ── */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 40px 24px 24px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 40px 24px 24px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 20px 24px;
    width: 100%;
  }
  .footer-bottom-right { justify-content: center; }

  /* ── MODAL ── */
  .modal { padding: 32px 24px; margin: 16px; }

  /* ── CHATBOT + WHATSAPP ── */
  .whatsapp-float { bottom: 20px; right: 20px; }
  .chatbot-trigger { bottom: 84px; right: 20px; }

  /* ── CALENDAR ── */
  .cal-upcoming-strip, .cal-grid, .cal-filters { padding: 0 24px; }
  .cal-upcoming-event { grid-template-columns: 55px 1fr; }
  .cal-event { grid-template-columns: 60px 1fr; }
  .cp-header { padding: 24px 24px 48px; }
  .cal-tags { display: none; }

  /* ── ITINERARIES ── */
  .itin-hero { grid-template-columns: 1fr; gap: 32px; }
  .itin-panel { padding: 0 24px; }
  .itin-tabs { padding: 0 24px; }
  .itin-days { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* ── SERVICE SUBPAGES ── */
  .sp-header { padding: 24px 24px 48px; }
  .sp-grid { grid-template-columns: 1fr; }

  /* ── PARTNER PAGE ── */
  .pp-intro { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px; }
  .pp-body { padding: 40px 24px; }


  /* ════════════════════════════════════════════════════
     24. ABOUT PANELS (mobile)
     ════════════════════════════════════════════════════ */

  /* ── BLOG BACK BUTTON ── */
  .blog-back-btn {
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 400;
    width: 44px;
    height: 44px;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(201,169,110,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
  }

  .blog-back-btn svg {
    width: 18px;
    height: 18px;
    stroke: #c9a96e;
  }

  /* ── ABOUT PANELS (mobile only) ── */
  .about-panel {
    display: block !important;
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    z-index: 510;
    background: var(--black);
    overflow-y: auto;
    transition: left 0.4s cubic-bezier(0.4,0,0.2,1);
  }

  .about-panel.ap-open {
    left: 0 !important;
  }

  .about-panel-header {
    padding: 24px 24px 48px;
    border-bottom: 1px solid rgba(201,169,110,0.15);
  }

  .about-panel-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(201,169,110,0.3);
    color: var(--gold);
    padding: 10px 20px;
    border-radius: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 32px;
    transition: all 0.2s;
  }

  .about-panel-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 6vw, 40px);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.15;
  }

  .about-panel-title em {
    color: var(--gold);
    font-style: italic;
  }

  .about-panel-body {
    padding: 32px 24px 64px;
  }

  .about-panel-body p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
  }

  .about-panel-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
  }

  .about-panel-body ul li {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-light);
    padding: 10px 0;
    border-bottom: 1px solid rgba(201,169,110,0.08);
    line-height: 1.6;
  }

  .about-panel-body ul li::before {
    content: '\2726 ';
    color: var(--gold);
    margin-right: 4px;
  }

  .about-panel-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
  }

  /* ── CALL & EMAIL MODALS (mobile only) ── */
  .call-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 600;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  .call-modal-overlay.open {
    opacity: 1;
    pointer-events: all;
  }

  .call-modal {
    background: var(--black-mid);
    border: 1px solid rgba(201,169,110,0.3);
    border-radius: 20px;
    padding: 32px 24px;
    width: calc(100% - 48px);
    max-width: 360px;
    text-align: center;
  }

  .call-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--cream);
    margin-bottom: 8px;
  }

  .call-modal-number {
    font-size: 24px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 24px;
    letter-spacing: 1px;
  }

  .call-modal-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    margin-bottom: 12px;
  }

  .call-modal-cancel {
    display: block;
    width: 100%;
    padding: 14px;
    background: transparent;
    color: rgba(245,240,235,0.5);
    border: 1px solid rgba(245,240,235,0.15);
    border-radius: 8px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
  }

  /* ── SECTIONS HIDDEN ON MOBILE ── */
  .testimonials { display: none; }
  .clients-logos { display: none; }

  /* ── MOBILE SERVICES CTA ── */
  #services { display: none !important; }

  .mobile-services-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 24px;
    background: var(--black);
    text-align: center;
  }

  .mobile-services-cta p {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }

  .mobile-services-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--cream);
    line-height: 1.3;
    margin-bottom: 28px;
  }

  .mobile-services-cta h3 em {
    color: var(--gold);
    font-style: italic;
  }

  .mobile-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
    max-width: 380px;
  }

  .mobile-service-btn {
    background: rgba(201,169,110,0.08);
    border: 1px solid rgba(201,169,110,0.35);
    border-radius: 8px;
    padding: 14px 10px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cream);
    cursor: pointer;
    text-align: center;
    transition: background 0.2s, border-color 0.2s;
  }

  .mobile-service-btn:active {
    background: rgba(201,169,110,0.2);
    border-color: var(--gold);
  }

  /* ── HERO MOBILE — full viewport, centered ── */
  .hero {
    height: 100vh;
    height: 100svh;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    position: relative;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px 120px;
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    box-sizing: border-box;
  }

  .hero-eyebrow {
    font-size: 9px;
    letter-spacing: 2.5px;
    text-align: center;
    margin-bottom: 16px;
  }

  .hero-title {
    font-size: clamp(32px, 9vw, 48px) !important;
    line-height: 1.15;
    text-align: center;
    margin-bottom: 20px;
  }

  .hero-body { display: none !important; }
  .hero-tags { display: none !important; }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 320px;
  }

  .hero-ctas .btn-primary {
    width: 100%;
    max-width: 320px;
    height: 56px;
    font-size: 13px;
    letter-spacing: 2.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
  }

  .hero-ctas .btn-outline { display: none !important; }

  /* ── SCROLL INDICATOR ── */
  .hero::after {
    content: '';
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid rgba(201,169,110,0.4);
    border-radius: 12px;
    pointer-events: none;
  }

  .hero::before {
    content: '';
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollPulse 2s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
  }

  /* ── STATS HIDDEN ── */
  .stats { display: none !important; }

  /* ── NAV: HAMBURGER ONLY ── */
  .nav-links { display: none !important; }
  .nav-book-wrap { display: none !important; }
  .nav-lang { display: none !important; }
  .nav-hamburger { display: flex !important; }

  nav {
    padding: 0 20px;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .nav-logo svg { width: 80px; height: 28px; }

  /* ── ISLAND SELECTOR MOBILE ── */
  .island-selector-inner {
    padding: 60px 20px 40px;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .island-selector-title {
    font-size: clamp(28px, 8vw, 42px);
    text-align: center;
  }

  .island-selector-sub { text-align: center; }

  .island-cards {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
    max-width: 400px;
  }

  .island-card {
    aspect-ratio: 3/4;
    min-height: 160px;
    border-radius: 16px;
  }

  .island-card-name { font-size: 20px; }
  .island-card-desc { font-size: 11px; }
  .island-card-btn { font-size: 9px; }

  .island-selector-skip {
    font-size: 11px;
    padding: 14px 28px;
    margin-top: 24px;
  }

  /* ── MOBILE NAV OVERLAY ICON SUPPORT ── */
  .nmo-item {
    -webkit-tap-highlight-color: transparent;
  }

  .nmo-item:active {
    background: rgba(201,169,110,0.06);
    color: var(--gold);
  }

  .nmo-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(201,169,110,0.06);
    border: 1px solid rgba(201,169,110,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .nmo-item-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
  }

  /* ── Featured cards at bottom of menu ── */
  .nmo-featured {
    padding: 20px 24px 0;
    border-top: 1px solid rgba(201,169,110,0.12);
  }

  .nmo-featured-label {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
    margin-bottom: 12px;
  }

  .nmo-featured-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
  }

  .nmo-fcard {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/4;
    position: relative;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .nmo-fcard-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
  }

  .nmo-fcard:active .nmo-fcard-bg {
    transform: scale(1.05);
  }

  .nmo-fcard::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, transparent 60%);
  }

  .nmo-fcard-label {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cream);
    z-index: 2;
  }

  /* ── HIDDEN SECTIONS ON MOBILE ── */
  #occasions,
  #itineraries,
  #calendar,
  #about,
  #contact,
  #faq,
  #testimonials,
  .footer-upgraded,
  .mobile-itin-cta,
  .scrollTopBtn,
  #scrollTopBtn { display: none !important; }

  .hero-stats,
  .stats-grid,
  .stat-block,
  [class*="stat"] { display: none !important; }

  /* ── PERFORMANCE / TOUCH ── */
  button, a, .island-card, .nmo-item, .nmo-sub-item,
  .nmo-fcard, .nmo-book, .nmo-whatsapp,
  .btn-primary, .btn-outline {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  /* ── PARTNER PAGE MOBILE ── */
  .pp-intro, .pp-benefits, .pp-tiers { grid-template-columns: 1fr; }
  .pp-process { grid-template-columns: 1fr 1fr; }
  .pp-header { padding: 24px 24px 48px; }
  .pp-tier.featured { transform: none; }

}


/* ════════════════════════════════════════════════════
   MOBILE SECTION PANELS
   Each section slides in as full-screen panel.
   ISOLATED: only applies at <=768px -- desktop untouched.
   ════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* Each panel: fixed, slides from right */
  .msv-panel {
    position: fixed !important;
    top: 0 !important;
    left: 100% !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 490 !important;
    background: var(--black) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    transition: left 0.4s cubic-bezier(0.4,0,0.2,1) !important;
    display: block !important;
    padding: 0 !important;
  }

  .msv-panel.msv-open {
    left: 0 !important;
  }

  /* Back button injected at top of each panel */
  .msv-panel-header {
    position: sticky;
    top: 0;
    background: var(--black);
    border-bottom: 1px solid rgba(201,169,110,0.2);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 10;
  }

  .msv-panel-back {
    background: none;
    border: 1px solid rgba(201,169,110,0.4);
    color: var(--gold);
    padding: 7px 16px;
    border-radius: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    cursor: pointer;
    text-transform: uppercase;
  }

  .msv-panel-title {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(201,169,110,0.7);
  }

  /* Content area inside panel */
  .msv-panel-body {
    padding: 0;
  }

  /* Reset inner section styles for mobile panel */
  .msv-panel-body section,
  .msv-panel-body > div {
    padding: 40px 24px !important;
  }

  .msv-panel-body h2 {
    font-size: clamp(1.8rem, 7vw, 2.6rem) !important;
  }

  /* Grid adjustments inside panels */
  .msv-panel-body .about-wrap,
  .msv-panel-body .about-inner {
    flex-direction: column !important;
    gap: 28px !important;
  }

  .msv-panel-body .about-image {
    width: 100% !important;
    height: 240px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
  }

  .msv-panel-body .occ-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  .msv-panel-body .faq-item {
    border-bottom: 1px solid rgba(201,169,110,0.15);
  }
}


/* ════════════════════════════════════════════════════
   25. SMALL MOBILE (480px)
   ════════════════════════════════════════════════════ */

@media (max-width: 480px) {

  /* ── ISLAND SELECTOR ── */
  .island-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .island-card { aspect-ratio: 3/4; }
  .island-card-name { font-size: 18px; }

  /* ── HERO ── */
  .hero-content { padding: 0 20px; padding-top: 72px; }

  /* ── STATS ── */
  .stat-num { font-size: 28px; }

  /* ── SECTIONS ── */
  .section-header { padding: 0 20px; }
  .testimonials { padding: 60px 20px; }
  .about { padding: 60px 20px; }
  .contact { padding: 60px 20px; }
  .faq { padding: 60px 20px; }
  .occasions-grid { grid-template-columns: 1fr; padding: 0 20px; }

  /* ── ABOUT ── */
  .values-grid { grid-template-columns: 1fr; }

  /* ── FOOTER ── */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }

  /* ── FORM ── */
  .form-row { grid-template-columns: 1fr; }

  /* ── FLOATING BUTTONS ── */
  .whatsapp-btn { width: 48px; height: 48px; border-width: 2px; }
  .chatbot-trigger-btn { width: 48px; height: 48px; }
  .chatbot-trigger { right: 16px; bottom: 76px; }
  .whatsapp-float { right: 16px; bottom: 16px; }

  /* ── MODAL ── */
  .modal { padding: 24px 20px; }
  .modal-title { font-size: 28px; }

  /* ── SC MODAL ── */
  .sc-modal { padding: 32px 20px; }
  .sc-form-row { grid-template-columns: 1fr; }

  /* ── ITINERARIES ── */
  .itin-days { grid-template-columns: 1fr; }

  /* ── PRICE CALCULATORS ── */
  .calc-row { grid-template-columns: 1fr; }

  /* ── SERVICE SUBPAGES ── */
  .sp-card { padding: 32px 24px; }
}

/* ── ITINERARIES additional breakpoints ── */
@media (max-width: 1100px) and (min-width: 769px) {
  .itin-days { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .sp-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .sp-header { padding: 24px 24px 52px; }
  .sp-grid { grid-template-columns: 1fr; }
  .sp-card { padding: 32px 24px; }
}

@media (max-width: 600px) {
  .itin-days { grid-template-columns: repeat(2, 1fr); }
}
