/* ==========================================================================
   TWINS TRAVEL TANDEM - BIOPHILIC SOFT UI DESIGN SYSTEM
   Palette: #321c4a (Deep Royal Plum), #2596be (Ocean Teal), #f3e8ff (Soft Lavender), 
            #FDFCF0 (Creamy Off-White), #222222 (Charcoal), #d4a373 (Dusty Ochre)
   ========================================================================== */

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

:root {
  --primary-plum: #321c4a;
  --plum-light: #482b68;
  --accent-teal: #2596be;
  --accent-teal-hover: #1c7da0;
  --soft-lavender: #f3e8ff;
  --lavender-glow: rgba(243, 232, 255, 0.6);
  --bg-cream: #F8F5EE;
  --bg-card: #FFFFFF;
  --text-charcoal: #222222;
  --text-muted: #555566;
  --accent-ochre: #d4a373;
  --accent-sage: #4a6b5d;
  
  --squircle-radius: 28px;
  --squircle-radius-sm: 18px;
  --squircle-radius-lg: 36px;
  
  --shadow-soft: 0 20px 45px -10px rgba(50, 28, 74, 0.14), 0 8px 24px -6px rgba(37, 150, 190, 0.08);
  --shadow-hover: 0 30px 60px -12px rgba(50, 28, 74, 0.22), 0 12px 30px -8px rgba(37, 150, 190, 0.16);
  --shadow-glass: 0 16px 40px -10px rgba(50, 28, 74, 0.15), 0 6px 18px -4px rgba(37, 150, 190, 0.1);
  --shadow-biophilic: 0 24px 60px -12px rgba(50, 28, 74, 0.16), 0 10px 28px -8px rgba(37, 150, 190, 0.12);
  
  --transition-smooth: all 400ms cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: all 700ms cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: #F8F5EE;
  background-image: 
    radial-gradient(at 10% 10%, rgba(243, 232, 255, 0.5) 0px, transparent 50%),
    radial-gradient(at 90% 20%, rgba(37, 150, 190, 0.1) 0px, transparent 50%),
    radial-gradient(at 50% 60%, rgba(212, 163, 115, 0.12) 0px, transparent 50%),
    radial-gradient(at 80% 85%, rgba(50, 28, 74, 0.08) 0px, transparent 50%);
  background-attachment: fixed;
  color: var(--text-charcoal);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Subtle Background Paper Texture (Positioned strictly BEHIND all page content) */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='paperGrain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='1 0 0 0 0  0 1 0 0 0  0 0 1 0 0  0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23paperGrain)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: -1;
  opacity: 0.7;
}

/* Typography */
h1, h2, h3, h4, .serif-font {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--primary-plum);
  line-height: 1.25;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }

p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

a {
  color: var(--accent-teal);
  text-decoration: none;
  transition: var(--transition-smooth);
}
a:hover {
  color: var(--primary-plum);
}

/* Container */
.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 15px;
}

/* --- Squircle Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
  box-shadow: 0 12px 24px -5px rgba(37, 150, 190, 0.35);
}

.btn-primary {
  background: linear-gradient(135deg, #2596be, #187293);
  color: #ffffff !important;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #187293, #115670) !important;
  color: #ffffff !important;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px -8px rgba(37, 150, 190, 0.5);
}

.btn-plum {
  background: linear-gradient(135deg, #321c4a, #48296a);
  color: #ffffff !important;
  box-shadow: 0 12px 24px -5px rgba(50, 28, 74, 0.35);
}
.btn-plum:hover {
  background: linear-gradient(135deg, #211133, #321c4a) !important;
  color: #ffffff !important;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px -8px rgba(50, 28, 74, 0.5);
}

.btn-outline {
  background: #ffffff;
  color: var(--primary-plum) !important;
  border: 1.5px solid var(--primary-plum);
  box-shadow: 0 4px 12px rgba(50, 28, 74, 0.06);
  transition: all 0.25s ease;
}
.btn-outline:hover {
  background: var(--primary-plum) !important;
  color: #ffffff !important;
  border-color: var(--primary-plum) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -4px rgba(50, 28, 74, 0.25);
}

/* Glass Outline Button for Dark Plum Navbars (Flips to Dark Plum Text on White Hover) */
.btn-outline-light {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-outline-light:hover {
  background: #ffffff !important;
  color: var(--primary-plum) !important;
  border-color: #ffffff !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 9px 22px;
  font-size: 0.88rem;
}

/* --- Full Width Sticky Dark Luxury Header --- */
header.navbar {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
  margin: 0 0 30px 0;
  width: 100%;
  max-width: 100%;
  background: rgba(50, 28, 74, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(243, 232, 255, 0.15);
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(26, 12, 40, 0.35);
  padding: 16px 40px;
  transition: all 400ms cubic-bezier(0.25, 1, 0.5, 1);
}

/* Scroll Animation State */
header.navbar.scrolled {
  background: rgba(32, 17, 48, 0.98);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 10px 40px;
  box-shadow: 0 16px 45px -5px rgba(20, 9, 32, 0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  padding: 8px 16px;
  border-radius: 16px;
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: #ffffff !important;
  background: #2596be !important;
  box-shadow: 0 8px 20px rgba(37, 150, 190, 0.4);
  transform: translateY(-1px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Ambient Sound Controller */
.sound-toggle-btn {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  padding: 9px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
}
.sound-toggle-btn:hover, .sound-toggle-btn.active {
  background: #2596be !important;
  border-color: #2596be !important;
  color: #ffffff !important;
  box-shadow: 0 10px 22px rgba(37, 150, 190, 0.4);
}
.sound-icon-pulse {
  width: 10px;
  height: 10px;
  background: var(--accent-teal);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-teal);
}
.sound-toggle-btn.active .sound-icon-pulse {
  animation: pulseGlow 1.5s infinite alternate;
}

@keyframes pulseGlow {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(1.3); opacity: 1; }
}

/* Mobile Nav Toggle */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-plum);
  cursor: pointer;
}

/* --- Organic Waves & Hero Section --- */
.hero-section {
  position: relative;
  padding: 60px 0 100px 0;
  border-radius: var(--squircle-radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(50, 28, 74, 0.03), rgba(243, 232, 255, 0.4));
  border: 1px solid rgba(220, 205, 240, 0.7);
  box-shadow: 0 18px 40px -5px rgba(50, 28, 74, 0.16), 0 6px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--soft-lavender);
  color: var(--primary-plum);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(50, 28, 74, 0.1);
}

.hero-content h1 {
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  max-width: 90%;
  margin-bottom: 30px;
}

.hero-image-wrapper {
  position: relative;
}

.hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--squircle-radius-lg);
  box-shadow: var(--shadow-hover);
  transition: var(--transition-slow);
}
.hero-img:hover {
  transform: scale(1.015);
}

.wave-divider {
  display: none !important;
}

/* --- Search & Intent Quick Card --- */
.quick-intent-card {
  background: var(--bg-card);
  padding: 32px;
  border-radius: var(--squircle-radius);
  box-shadow: 0 18px 40px -5px rgba(50, 28, 74, 0.18), 0 6px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(210, 195, 235, 0.7);
  margin-top: -60px;
  position: relative;
  z-index: 10;
  transition: var(--transition-smooth);
}

.quick-intent-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px -8px rgba(50, 28, 74, 0.25), 0 10px 25px rgba(0, 0, 0, 0.08);
}

.quick-intent-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) auto;
  gap: 16px;
  align-items: end;
}

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-plum);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 12px 18px;
  border-radius: 16px;
  border: 1px solid #d8cbeb;
  background: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--text-charcoal);
  box-shadow: 0 2px 8px rgba(50, 28, 74, 0.04);
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-teal);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 150, 190, 0.18), 0 6px 16px rgba(37, 150, 190, 0.12);
}

/* --- Our Philosophy Elevated 3D Biophilic Card --- */
.philosophy-card {
  background: #ffffff;
  padding: 50px;
  border-radius: var(--squircle-radius-lg);
  box-shadow: var(--shadow-biophilic);
  border: 1px solid rgba(220, 205, 240, 0.85);
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.philosophy-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(37, 150, 190, 0.35);
}

.philosophy-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--squircle-radius);
  box-shadow: 0 20px 45px -10px rgba(50, 28, 74, 0.22), 0 8px 20px -6px rgba(37, 150, 190, 0.15);
  border: 4px solid #ffffff;
  transition: var(--transition-smooth);
}

.philosophy-card:hover .philosophy-img {
  transform: scale(1.02);
  box-shadow: 0 26px 55px -10px rgba(50, 28, 74, 0.28), 0 10px 25px -6px rgba(37, 150, 190, 0.2);
}

/* --- Squircle Package Cards & Centered Section Titles --- */
.section-title-wrapper {
  text-align: center !important;
  max-width: 720px;
  margin: 0 auto 50px auto !important;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-title-wrapper h2,
.section-title-wrapper p,
.section-title-wrapper .section-subtitle {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.section-subtitle {
  color: var(--accent-teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 8px;
  display: block;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

.package-card {
  background: var(--bg-card);
  border-radius: var(--squircle-radius);
  overflow: hidden;
  box-shadow: 0 16px 36px -5px rgba(50, 28, 74, 0.15), 0 6px 18px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(220, 205, 240, 0.7);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: 0 28px 60px -8px rgba(37, 150, 190, 0.3), 0 12px 28px rgba(50, 28, 74, 0.18);
}

.package-thumb-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.package-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.package-card:hover .package-thumb {
  transform: scale(1.06);
}

.badge-deposit {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(50, 28, 74, 0.85);
  backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 500;
}

.package-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.package-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--accent-teal);
  font-weight: 600;
  margin-bottom: 10px;
}

.package-title {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.package-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #f3ecf9;
}

.price-tag {
  display: flex;
  flex-direction: column;
}
.price-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; }
.price-amount { font-size: 1.35rem; font-weight: 700; color: var(--primary-plum); }

/* --- Travel Experiences Social Feed --- */
.experiences-section {
  background: linear-gradient(180deg, var(--bg-cream), var(--soft-lavender) 100%);
  padding: 80px 0;
  border-radius: var(--squircle-radius-lg);
  border: 1px solid rgba(220, 205, 240, 0.7);
  box-shadow: 0 18px 40px -5px rgba(50, 28, 74, 0.14), 0 6px 20px rgba(0, 0, 0, 0.05);
  margin: 60px auto !important;
  width: 100% !important;
  max-width: 1240px !important;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.experience-card {
  background: #ffffff;
  border-radius: var(--squircle-radius-sm);
  padding: 24px;
  border: 1px solid rgba(220, 205, 240, 0.7);
  box-shadow: 0 14px 32px -5px rgba(50, 28, 74, 0.14), 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.experience-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 26px 55px -8px rgba(37, 150, 190, 0.28), 0 10px 24px rgba(50, 28, 74, 0.15);
}

.traveler-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.traveler-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e1d5f5;
  color: var(--primary-plum);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 1px solid rgba(80, 45, 120, 0.18);
  overflow: hidden;
}

.rating-stars {
  color: #f4c430;
  font-size: 0.9rem;
}

.experience-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 14px;
}

.like-btn {
  background: transparent;
  border: none;
  color: #e63946;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 12px;
  transition: var(--transition-smooth);
}
.like-btn:hover { background: #ffe6e8; }

/* --- Interactive Utilities (Weather & Currency) --- */
.utility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0 80px 0;
}

.utility-card {
  background: #ffffff;
  border-radius: var(--squircle-radius);
  padding: 32px;
  box-shadow: 0 18px 40px -5px rgba(50, 28, 74, 0.16), 0 6px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(220, 205, 240, 0.7);
  transition: var(--transition-smooth);
}

.utility-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px -8px rgba(50, 28, 74, 0.25), 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* --- Floating Concierge Widget --- */
.concierge-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.concierge-btn {
  background: linear-gradient(135deg, var(--primary-plum), #49286d);
  color: #ffffff;
  padding: 14px 24px;
  border-radius: 40px;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(50, 28, 74, 0.35);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.concierge-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 35px rgba(50, 28, 74, 0.5);
}
.concierge-glow {
  width: 10px;
  height: 10px;
  background: #4ef0c9;
  border-radius: 50%;
  box-shadow: 0 0 12px #4ef0c9;
}

/* --- Modal styling --- */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34, 34, 34, 0.5);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: #ffffff;
  width: 90%;
  max-width: 620px;
  padding: 36px;
  border-radius: var(--squircle-radius);
  border: 1px solid rgba(220, 205, 240, 0.8);
  box-shadow: 0 25px 65px -10px rgba(50, 28, 74, 0.3), 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 20px; right: 24px;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
}

/* --- Slide-Over Side Member Portal Drawer --- */
.drawer-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30, 16, 45, 0.55);
  backdrop-filter: blur(8px);
  z-index: 2500;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.drawer-content {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  box-shadow: -15px 0 45px rgba(50, 28, 74, 0.25);
  z-index: 2600;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.drawer-overlay.active .drawer-content {
  transform: translateX(0);
}

.drawer-header {
  background: linear-gradient(135deg, var(--primary-plum), #49286d);
  color: #ffffff;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-body {
  padding: 28px;
  flex: 1;
}

.drawer-tab-btn {
  flex: 1;
  padding: 10px;
  border: none;
  background: transparent;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.drawer-tab-btn.active {
  color: var(--primary-plum);
  border-bottom-color: var(--accent-teal);
}

/* --- Footer --- */
footer.site-footer {
  background: var(--primary-plum);
  color: #ffffff;
  padding: 80px 0 30px 0;
  border-top-left-radius: var(--squircle-radius-lg);
  border-top-right-radius: var(--squircle-radius-lg);
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.footer-col p, .footer-col a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--accent-teal);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Skeleton Loading */
.skeleton-pulse {
  background: linear-gradient(90deg, #f0e6fa 25%, #e4d5f7 50%, #f0e6fa 75%);
  background-size: 200% 100%;
  animation: skeletonLoading 1.5s infinite;
  border-radius: 12px;
}
@keyframes skeletonLoading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===================================================
   UNIVERSAL 3D ELEVATED BLOCKS & CARDS SYSTEM
   Applied across ALL pages (Home, About, Packages,
   Experiences, Weather, Currency, Blog, Contact, Admin)
   =================================================== */
.quick-intent-card,
.package-card,
.experience-card,
.utility-card,
.blog-card,
.contact-card,
.about-card,
.lounge-card,
.weather-card,
.admin-card,
.table-container,
.package-detail-card,
.inclusions-box,
.booking-step-card,
.block-elevated {
  box-shadow: 0 16px 36px -5px rgba(50, 28, 74, 0.15), 0 6px 18px rgba(0, 0, 0, 0.05) !important;
  border: 1px solid rgba(220, 205, 240, 0.75) !important;
  transition: all 400ms cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.quick-intent-card:hover,
.package-card:hover,
.experience-card:hover,
.utility-card:hover,
.blog-card:hover,
.contact-card:hover,
.about-card:hover,
.lounge-card:hover,
.weather-card:hover,
.admin-card:hover,
.package-detail-card:hover,
.block-elevated:hover {
  transform: translateY(-8px) scale(1.012) !important;
  box-shadow: 0 28px 60px -8px rgba(37, 150, 190, 0.28), 0 12px 28px rgba(50, 28, 74, 0.18) !important;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; }
  .utility-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-menu { display: none; }
  .mobile-menu-btn { display: block; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .quick-intent-form { grid-template-columns: 1fr; }
}

/* ==========================================================================
   CONCIERGE DESK & ZEN LOUNGE SUITE STYLES
   ========================================================================== */

/* Frosted Glassmorphism Containers */
.glass-card {
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.75) !important;
  box-shadow: 0 20px 50px -12px rgba(50, 28, 74, 0.12), 0 8px 24px -6px rgba(37, 150, 190, 0.08) !important;
  border-radius: var(--squircle-radius) !important;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  box-shadow: 0 28px 65px -14px rgba(50, 28, 74, 0.18), 0 12px 30px -8px rgba(37, 150, 190, 0.14) !important;
}

/* Live Pulsing Rate Glow */
.rate-glow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 125, 50, 0.08);
  color: #1b5e20;
  border: 1px solid rgba(76, 175, 80, 0.3);
  padding: 4px 14px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
}

.rate-glow-dot {
  width: 8px;
  height: 8px;
  background: #2e7d32;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
  animation: liveGlowPulse 2s infinite;
}

@keyframes liveGlowPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(76, 175, 80, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

/* Amenity Icons that Breathe (Hover Micro-Animations) */
.amenity-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f6f2fb;
  color: var(--primary-plum);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid #e8e0f2;
  transition: var(--transition-smooth);
  cursor: default;
}

.amenity-badge:hover {
  background: var(--soft-lavender);
  border-color: var(--accent-teal);
  transform: translateY(-2px);
}

.amenity-badge:hover .icon-shower {
  animation: dropletFall 1s ease-in-out infinite;
}

.amenity-badge:hover .icon-coffee {
  animation: steamRise 1.2s ease-in-out infinite;
}

.amenity-badge:hover .icon-wifi {
  animation: wifiPulse 1.4s ease-in-out infinite;
}

@keyframes dropletFall {
  0% { transform: translateY(-2px); opacity: 0.7; }
  50% { transform: translateY(3px); opacity: 1; }
  100% { transform: translateY(-2px); opacity: 0.7; }
}

@keyframes steamRise {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
  50% { transform: translateY(-4px) rotate(-6deg); opacity: 1; }
  100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
}

@keyframes wifiPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); color: var(--accent-teal); }
  100% { transform: scale(1); }
}

/* Vibe Filter Buttons */
.vibe-filter-btn {
  background: #ffffff;
  color: var(--text-charcoal);
  border: 1px solid #e0d7ec;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.vibe-filter-btn:hover,
.vibe-filter-btn.active {
  background: var(--primary-plum);
  color: #ffffff;
  border-color: var(--primary-plum);
  box-shadow: 0 8px 20px -4px rgba(50, 28, 74, 0.3);
}

/* FICA Soft Disclosure Accordion */
.fica-accordion-header {
  background: #faf7fc;
  border: 1px solid #e8e0f2;
  padding: 18px 24px;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.fica-accordion-header:hover {
  background: var(--soft-lavender);
  border-color: var(--accent-teal);
}

.fica-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 450ms cubic-bezier(0.25, 1, 0.5, 1), padding 450ms ease;
  background: #ffffff;
  border-radius: 0 0 20px 20px;
}

.fica-accordion-body.open {
  max-height: 800px;
  padding: 24px;
  border: 1px solid #e8e0f2;
  border-top: none;
}

/* Stress Meter Slider */
.stress-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 10px;
  background: linear-gradient(90deg, #2596be 0%, #d4a373 50%, #321c4a 100%);
  outline: none;
  transition: opacity .2s;
}

.stress-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--primary-plum);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.stress-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  border-color: var(--accent-teal);
}

/* --- Premium Member Portal Table Styles --- */
.dashboard-table-container {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid rgba(220, 205, 240, 0.85);
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  margin-top: 15px;
}

.dashboard-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  text-align: left;
}

.dashboard-table th {
  background: #fcfbfe;
  color: var(--primary-plum);
  font-weight: 600;
  padding: 18px 24px;
  border-bottom: 2px solid rgba(220, 205, 240, 0.6);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.dashboard-table td {
  padding: 18px 24px;
  border-bottom: 1px solid #f6f3fa;
  color: var(--text-charcoal);
  vertical-align: middle;
}

.dashboard-table tr:last-child td {
  border-bottom: none;
}

.dashboard-table tr:hover td {
  background-color: #faf9fc;
}

/* Status Badges */
.status-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge-new {
  background: #fff8e1;
  color: #b78103;
}

.status-badge-info {
  background: #e8f4fd;
  color: #1976d2;
}

.status-badge-active {
  background: #e8f5e9;
  color: #2e7d32;
}

.status-badge-archived {
  background: #f5f5f5;
  color: #616161;
}

