/* ============================================
   SALIDAS MIAMI — YATES CSS
   Dark luxury / smoky glass aesthetic
   ============================================ */

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

:root {
  --purple: #a855f7;
  --pink: #ec4899;
  --gold: #d4af6e;
  --gold-light: #f0d090;
  --ocean: #1e3a5f;
  --glass-bg: rgba(8, 4, 18, 0.58);
  --glass-border: rgba(255, 255, 255, 0.09);
  --card-bg: rgba(10, 5, 22, 0.55);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: #060410;
  color: #f3f4f6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ---- PAGE BG ---- */
.page-bg {
  position: fixed;
  inset: 0;
  background: linear-gradient(160deg, #060410 0%, #0a0820 40%, #06030e 100%);
  z-index: -2;
}
.page-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 20%, rgba(30,58,95,0.3) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 20% 80%, rgba(168,85,247,0.06) 0%, transparent 60%);
}

/* ---- NAVBAR ---- */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(212,175,110,0.12);
  padding: 0 1.5rem; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.navbar-logo {
  font-size: 1.3rem; font-weight: 900; text-decoration: none; letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.navbar-links { display: flex; gap: 1.5rem; list-style: none; }
.navbar-links a {
  color: #b0b8c8; text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color 0.2s;
}
.navbar-links a:hover, .navbar-links a.active { color: var(--gold-light); }
.navbar-hamburger {
  display: none; background: none; border: none; color: #fff; cursor: pointer; padding: 4px;
}
.navbar-hamburger svg { width: 24px; height: 24px; }
.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0;
  background: rgba(0,0,0,0.96); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,175,110,0.1);
  padding: 1rem 1.5rem; z-index: 99; flex-direction: column; gap: 0.75rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: #b0b8c8; text-decoration: none; font-size: 1rem; padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ---- BADGES ---- */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 12px; border-radius: 999px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
}
.badge-gold { background: rgba(212,175,110,0.12); border: 1px solid rgba(212,175,110,0.3); color: var(--gold-light); }
.badge-ocean { background: rgba(30,58,95,0.3); border: 1px solid rgba(56,130,200,0.25); color: #93c5fd; }
.badge-purple { background: rgba(168,85,247,0.12); border: 1px solid rgba(168,85,247,0.25); color: #c084fc; }
.badge-pink { background: rgba(236,72,153,0.12); border: 1px solid rgba(236,72,153,0.25); color: #f472b6; }

/* ---- HERO ---- */
.hero {
  min-height: 90vh; display: flex; align-items: center;
  padding: 5rem 1.5rem 4rem; position: relative; overflow: hidden;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.hero-content { z-index: 2; }
.hero-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 900; line-height: 1.05;
  letter-spacing: -1.5px; margin-bottom: 1rem; color: #fff;
}
.hero-title span {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--purple) 60%, var(--pink) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle { font-size: 1.1rem; color: #9ca3af; margin-bottom: 0.75rem; line-height: 1.6; max-width: 480px; }
.hero-text { font-size: 0.9rem; color: #6b7280; margin-bottom: 2rem; line-height: 1.7; max-width: 420px; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---- HERO IMAGE SIDE ---- */
.hero-image-side { position: relative; z-index: 2; }
.hero-img-main {
  width: 100%; height: 480px; object-fit: cover; border-radius: 20px;
  display: block;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(212,175,110,0.12);
}
.hero-img-overlay {
  position: absolute; inset: 0; border-radius: 20px;
  background: linear-gradient(180deg, transparent 40%, rgba(6,4,16,0.6) 100%);
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.8rem 1.75rem;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff; font-weight: 700; font-size: 0.9rem;
  border: none; border-radius: 999px; cursor: pointer; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(168,85,247,0.3);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 8px 30px rgba(236,72,153,0.4); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.8rem 1.75rem;
  background: rgba(255,255,255,0.06);
  color: #e5e7eb; font-weight: 600; font-size: 0.9rem;
  border: 1px solid rgba(255,255,255,0.14); border-radius: 999px; cursor: pointer;
  text-decoration: none; transition: all 0.2s; backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: var(--gold); color: var(--gold-light); }
.btn-full { width: 100%; justify-content: center; border-radius: 12px; }

/* ---- SECTIONS ---- */
.section { padding: 6rem 1.5rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-title {
  font-size: clamp(1.8rem, 4.5vw, 2.6rem); font-weight: 900; margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--purple) 70%, var(--pink) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.section-subtitle { color: #6b7280; font-size: 1rem; max-width: 540px; margin: 0 auto; line-height: 1.6; }
.divider { border: none; border-top: 1px solid rgba(212,175,110,0.1); margin: 0; }

/* ---- EXPERIENCE SECTION ---- */
.experience-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start;
}
.gallery { display: flex; flex-direction: column; gap: 0.75rem; }
.gallery-main {
  width: 100%; height: 340px; object-fit: cover; border-radius: 16px; cursor: pointer;
  display: block; transition: opacity 0.3s;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(212,175,110,0.1);
}
.gallery-thumbs { display: flex; gap: 0.75rem; }
.gallery-thumb {
  flex: 1; height: 90px; object-fit: cover; border-radius: 10px; cursor: pointer;
  border: 2px solid transparent; transition: border-color 0.2s, opacity 0.2s; opacity: 0.65;
}
.gallery-thumb:hover, .gallery-thumb.active { border-color: var(--gold); opacity: 1; }

.experience-content { display: flex; flex-direction: column; gap: 1.5rem; }
.exp-title { font-size: 1.5rem; font-weight: 800; color: #fff; line-height: 1.2; letter-spacing: -0.5px; }
.exp-text { font-size: 0.95rem; color: #9ca3af; line-height: 1.7; }
.exp-specs { display: flex; flex-direction: column; gap: 0.75rem; }
.exp-spec {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
}
.exp-spec-icon { font-size: 1.1rem; flex-shrink: 0; }
.exp-spec-label { font-size: 0.78rem; color: #6b7280; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1px; }
.exp-spec-value { font-size: 0.92rem; color: #e5e7eb; font-weight: 600; }

/* ---- INCLUDES SECTION ---- */
.includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.includes-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 18px; padding: 2rem;
  backdrop-filter: blur(14px) saturate(120%); -webkit-backdrop-filter: blur(14px) saturate(120%);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04);
}
.includes-card.card-yes { border-color: rgba(52,211,153,0.15); }
.includes-card.card-no { border-color: rgba(239,68,68,0.12); }
.includes-card-title {
  font-size: 1rem; font-weight: 800; letter-spacing: 0.03em;
  text-transform: uppercase; margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.card-yes .includes-card-title { color: #34d399; }
.card-no .includes-card-title { color: #f87171; }
.includes-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.includes-list li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.9rem; color: #d1d5db;
}
.includes-list li .bullet { font-size: 0.75rem; flex-shrink: 0; }
.card-yes .bullet { color: #34d399; }
.card-no .bullet { color: #f87171; }
.includes-note {
  margin-top: 1.5rem; padding: 1rem;
  background: rgba(212,175,110,0.06); border: 1px solid rgba(212,175,110,0.15); border-radius: 10px;
  font-size: 0.82rem; color: #b0956a; line-height: 1.5; text-align: center;
}

/* ---- CALENDAR SECTION ---- */
.calendar-section { padding: 6rem 1.5rem; }
.calendar-wrapper {
  max-width: 640px; margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px; overflow: hidden;
  backdrop-filter: blur(14px) saturate(120%); -webkit-backdrop-filter: blur(14px) saturate(120%);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.calendar-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.calendar-nav-btn {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: #9ca3af; border-radius: 8px; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s;
}
.calendar-nav-btn:hover { background: rgba(168,85,247,0.15); border-color: var(--purple); color: #fff; }
.calendar-nav-btn svg { width: 16px; height: 16px; }
.calendar-month-label { font-size: 1rem; font-weight: 800; color: #f3f4f6; letter-spacing: -0.2px; }
.calendar-weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr);
  padding: 0.75rem 1rem 0.25rem;
}
.calendar-weekday { text-align: center; font-size: 0.65rem; font-weight: 700; color: #4b5563; text-transform: uppercase; letter-spacing: 0.08em; }
.calendar-grid {
  display: grid; grid-template-columns: repeat(7, 1fr);
  padding: 0.25rem 1rem 1.25rem; gap: 2px;
}
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 600; color: #9ca3af;
  border-radius: 8px; cursor: pointer; transition: all 0.18s; position: relative;
}
.cal-day:not(.disabled):not(.empty):hover { background: rgba(168,85,247,0.15); color: #e9d5ff; }
.cal-day.today { color: var(--gold-light); }
.cal-day.today::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: var(--gold);
}
.cal-day.selected {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff; font-weight: 800; box-shadow: 0 2px 12px rgba(168,85,247,0.4);
}
.cal-day.disabled { color: #1f2937; cursor: not-allowed; }
.cal-day.blocked { color: #374151; cursor: not-allowed; text-decoration: line-through; }
.cal-day.pending { color: #fbbf24; }
.cal-day.pending::after {
  content: ''; position: absolute; top: 4px; right: 4px;
  width: 5px; height: 5px; border-radius: 50%; background: #fbbf24;
}
.cal-day.empty { cursor: default; }
.calendar-selected-info {
  padding: 0.75rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.82rem; color: #9ca3af; min-height: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; text-align: center;
}
.calendar-selected-info .sel-date { color: #e9d5ff; font-weight: 700; }
.calendar-selected-info .sel-note { color: #6b7280; }
.calendar-legend { display: flex; gap: 1rem; padding: 0 1.5rem 1rem; flex-wrap: wrap; }
.legend-item {
  display: flex; align-items: center; gap: 5px; font-size: 0.68rem; color: #6b7280;
}
.legend-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* ---- CONTACT FORM ---- */
.form-glass {
  background: rgba(8, 4, 18, 0.65);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px; padding: 2.5rem;
  backdrop-filter: blur(18px) saturate(110%); -webkit-backdrop-filter: blur(18px) saturate(110%);
  max-width: 680px; margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.form-group { margin-bottom: 1.1rem; }
.form-label {
  display: block; font-size: 0.75rem; font-weight: 700; color: #6b7280;
  margin-bottom: 0.45rem; text-transform: uppercase; letter-spacing: 0.06em;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px; padding: 0.8rem 1rem;
  color: #f3f4f6; font-size: 0.9rem; font-family: inherit; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s; -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: #374151; }
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--purple); box-shadow: 0 0 0 3px rgba(168,85,247,0.12);
}
.form-select { cursor: pointer; }
.form-select option { background: #0a0416; color: #f3f4f6; }
.form-textarea { resize: vertical; min-height: 100px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-status { font-size: 0.85rem; margin-top: 0.75rem; min-height: 1.2em; }
.form-status.success { color: #34d399; }
.form-status.error { color: #f87171; }
.form-status.loading { color: #9ca3af; }
.form-validation-note {
  font-size: 0.75rem; color: #4b5563; margin-top: 0.3rem; line-height: 1.4;
}

/* ---- TRUST SECTION ---- */
.trust-section {
  padding: 5rem 1.5rem 6rem; text-align: center;
}
.trust-glass {
  background: var(--card-bg);
  border: 1px solid rgba(212,175,110,0.12);
  border-radius: 20px; padding: 3rem 2rem;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  max-width: 700px; margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(212,175,110,0.06);
}
.trust-title { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 1rem; line-height: 1.3; }
.trust-text { font-size: 0.95rem; color: #6b7280; line-height: 1.7; margin-bottom: 1.5rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.trust-badges { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2rem; }

/* ---- FOOTER ---- */
footer {
  border-top: 1px solid rgba(212,175,110,0.08);
  padding: 2.5rem 1.5rem; text-align: center;
  background: rgba(0,0,0,0.4); backdrop-filter: blur(10px);
}
.footer-logo {
  font-size: 1.2rem; font-weight: 900; margin-bottom: 0.25rem;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.footer-tagline { font-size: 0.8rem; color: #4b5563; margin-bottom: 1.25rem; }
.footer-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.footer-links a { font-size: 0.82rem; color: #6b7280; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-copy { font-size: 0.72rem; color: #1f2937; margin-top: 1rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image-side { order: -1; }
  .hero-img-main { height: 300px; }
  .experience-grid { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .navbar-links { display: none; }
  .navbar-hamburger { display: flex; }
  .hero { padding: 4rem 1rem 3rem; }
  .hero-title { font-size: 2.2rem; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .form-glass { padding: 1.5rem; }
  .trust-glass { padding: 2rem 1.25rem; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 320px; justify-content: center; }
}
@media (max-width: 480px) {
  .section, .calendar-section, .trust-section { padding: 3.5rem 1rem; }
  .gallery-thumbs { gap: 0.5rem; }
}
