/* Aethera Travel Consortium — Core Stylesheet */

/* Custom Reset & Variables */
:root {
  --primary: #0066E6; /* Royal Blue */
  --secondary: #FF9E00; /* Gold Accent */
  --dark: #0F2942; /* Deep Navy Blue */
  --muted: #707C90; /* Slate Muted Gray */
  --bg: #F5F7FA; /* Light Gray Background */
  --card-bg: #FFFFFF; /* White Card Background */
  --border: #DDE2EC; /* Light Gray Border */
  --glow-gold: rgba(255, 158, 0, 0.2);
  --glow-blue: rgba(0, 102, 230, 0.08);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--dark);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Ambient glow spheres */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -2;
  pointer-events: none;
  opacity: 0.4;
}

.bg-glow-1 {
  background-color: var(--primary);
  width: 500px;
  height: 500px;
  top: -100px;
  left: -200px;
}

.bg-glow-2 {
  background-color: var(--secondary);
  width: 400px;
  height: 400px;
  top: 600px;
  right: -100px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: var(--radius-md);
  border: 2px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--muted);
}

/* Typography elements */
h1, h2, h3, h4 {
  font-family: var(--font-display);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Base Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
  border-radius: var(--radius-md);
}

.btn-block {
  width: 100%;
}

.btn-gold {
  background-color: var(--secondary);
  color: var(--dark);
  box-shadow: 0 4px 14px var(--glow-gold);
}

.btn-gold:hover {
  background-color: #ffc43d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 169, 0, 0.5);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--secondary);
  color: var(--secondary);
}

.btn-outline:hover {
  background: var(--secondary);
  color: var(--dark);
  box-shadow: 0 4px 14px var(--glow-gold);
}

.btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: none;
}

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

/* Header & Navigation */
.app-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 17, 43, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(228, 223, 235, 0.1);
  transition: var(--transition);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -1.5px;
  color: #fff;
}

.brand-logo span {
  color: var(--secondary);
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--secondary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: #fff;
}

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Mobile Toggle Hamburger */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: var(--transition);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 40px 24px;
  transform: translateY(-100%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.drawer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
  margin-bottom: 40px;
}

.drawer-nav ul a {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.drawer-nav .btn {
  width: 100%;
}

/* Hero Section */
.hero-section {
  padding: 100px 24px 170px;
  background: linear-gradient(rgba(10, 25, 49, 0.45), rgba(15, 41, 66, 0.75)), url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1600&q=80') no-repeat center center;
  background-size: cover;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(242, 169, 0, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-container {
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary);
  border: 1px solid rgba(242, 169, 0, 0.3);
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(15px);
  animation: heroFadeIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.1s forwards;
}

.hero-title {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.25s forwards;
}

.hero-title span {
  color: var(--secondary);
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.4s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.55s forwards;
}

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

/* Search widget section */
.search-section {
  margin-top: -135px;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

.section-container {
  max-width: 1000px;
  margin: 0 auto;
}

.search-widget {
  background: var(--card-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 40px rgba(45, 27, 78, 0.08);
  overflow: visible;
  opacity: 0;
  transform: translateY(25px);
  animation: heroFadeIn 1s cubic-bezier(0.25, 1, 0.5, 1) 0.7s forwards;
}

.search-tabs {
  display: inline-flex;
  align-items: center;
  background: #2a3547; /* Dark slate/navy pill background */
  border-radius: 30px;
  padding: 4px;
  border: none;
  position: absolute;
  top: -22px; /* Float half-in, half-out of the top border */
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  max-width: 90%;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none; /* Hide scrollbar for clean pill look */
}

.search-tabs::-webkit-scrollbar {
  display: none;
}

.search-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: none;
  background: transparent;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  border-radius: 20px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  height: 36px;
  white-space: nowrap;
}

.search-tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.search-tab.active {
  background: #ffffff;
  color: #1f2c3f;
  box-shadow: 0 0 0 2px #0066e6; /* Vibrant blue outline around the active white pill! */
}

.search-content {
  padding: 32px;
}

.search-panel {
  display: none;
  opacity: 0;
  transform: translateY(8px);
}

.search-panel.active {
  display: block;
  animation: tabFadeIn 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

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

.input-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

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

.input-group label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
}

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

.field-icon {
  position: absolute;
  left: 14px;
  font-size: 16px;
  pointer-events: none;
}

.input-wrapper input, .input-wrapper select {
  width: 100%;
  padding: 14px 14px 14px 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--dark);
  outline: none;
  transition: var(--transition);
}

.input-wrapper input:focus, .input-wrapper select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 102, 230, 0.1);
}

.input-group.input-error input, .input-group.input-error select {
  border-color: #ff4d4d !important;
  box-shadow: 0 0 0 4px rgba(255, 77, 77, 0.15) !important;
}

.input-error-msg {
  display: block;
  font-size: 11px;
  color: #ff4d4d;
  margin-top: 6px;
  font-weight: 500;
  animation: fadeInError 0.2s ease-out;
}

@keyframes fadeInError {
  from { opacity: 0; transform: translateY(-3px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Results section styling */
.results-section {
  padding: 60px 24px 20px;
}

.results-section.hidden {
  display: none;
}

.results-loading {
  text-align: center;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.results-loading.hidden {
  display: none;
}

/* Luxury loading animation spinner */
.spinner-container {
  position: relative;
  width: 80px;
  height: 80px;
}

.spinner-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--secondary);
  border-bottom-color: var(--secondary);
  animation: spin 1.5s linear infinite;
}

.spinner-inner {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-left-color: var(--primary);
  border-right-color: var(--primary);
  animation: spin-reverse 1.2s linear infinite;
}

.spinner-core {
  position: absolute;
  inset: 18px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--secondary);
  box-shadow: 0 4px 10px rgba(18, 12, 31, 0.2);
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes spin-reverse {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

.results-container.hidden {
  display: none;
}

.results-header {
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}

.section-subtitle-small {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
}

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

/* Sanctuary Directory Cards */
.sanctuary-section {
  padding: 80px 24px;
}

.section-container-wide {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 52px;
}

.eyebrow {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 12px;
}

.section-h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-h2.text-white {
  color: #fff;
}

.section-desc {
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
}

.section-desc.text-muted {
  color: rgba(255, 255, 255, 0.5);
}

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

.sanc-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(45, 27, 78, 0.03);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.sanc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(45, 27, 78, 0.08);
}

.sanc-image-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.sanc-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.sanc-card:hover .sanc-image-wrapper img {
  transform: scale(1.08);
}

.sanc-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(18, 12, 31, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}

.sanc-details {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.sanc-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.sanc-rating {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
}

.sanc-location {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

.sanc-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.sanc-text {
  font-size: 13px;
  color: rgba(18, 12, 31, 0.7);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.sanc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.sanc-price {
  font-size: 11px;
  color: var(--muted);
}

.sanc-price span {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
}

/* Service Ecosystem cards */
.services-section {
  background-color: var(--dark);
  color: #fff;
  padding: 80px 24px;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}

.services-section .section-h2 {
  color: #fff;
}

.services-grid-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}

.service-panel-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(228, 223, 235, 0.08);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: var(--transition);
}

.service-panel-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(242, 169, 0, 0.2);
  transform: translateY(-4px);
}

.card-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

/* Aethera AI Concierge Section */
.concierge-section {
  padding: 80px 24px;
  background-color: #FAF8FC;
}

.concierge-wrapper {
  background: linear-gradient(135deg, #120C1F 0%, #2D1B4E 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(18, 12, 31, 0.15);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 500px;
}

.concierge-intro-panel {
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.concierge-intro-panel::before {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(242, 169, 0, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.mascot-avatar-container {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.mascot-svg {
  filter: drop-shadow(0 4px 10px rgba(18, 12, 31, 0.3));
}

.assistant-badge {
  background: #10B981;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.concierge-chat-panel {
  background: rgba(255, 255, 255, 0.03);
  border-left: 1px solid rgba(228, 223, 235, 0.08);
  display: flex;
  flex-direction: column;
}

.chat-header {
  padding: 20px 24px;
  background: rgba(18, 12, 31, 0.3);
  border-bottom: 1px solid rgba(228, 223, 235, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-status-dot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.chat-header-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}

.chat-messages {
  flex-grow: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
  max-height: 320px;
}

.chat-msg {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: var(--radius-lg);
  font-size: 13px;
  position: relative;
}

.chat-msg.bot {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(228, 223, 235, 0.08);
  color: #fff;
  border-top-left-radius: var(--radius-sm);
  align-self: flex-start;
}

.chat-msg.user {
  background: var(--secondary);
  color: var(--dark);
  border-top-right-radius: var(--radius-sm);
  align-self: flex-end;
  font-weight: 500;
}

.msg-time {
  display: block;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 6px;
  text-align: right;
}

.chat-msg.user .msg-time {
  color: rgba(18, 12, 31, 0.5);
}

.chat-options-panel {
  padding: 20px 24px;
  border-top: 1px solid rgba(228, 223, 235, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chat-opt-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(228, 223, 235, 0.1);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.chat-opt-btn:hover {
  background: var(--secondary);
  color: var(--dark);
  border-color: var(--secondary);
}

.chat-lead-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 320px;
}

.chat-lead-form input {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(228, 223, 235, 0.15);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 13px;
  width: 100%;
  transition: var(--transition);
}

.chat-lead-form input:focus {
  outline: none;
  border-color: var(--secondary);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 2px rgba(242, 169, 0, 0.15);
}

.chat-locked-msg {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  width: 100%;
}

.chat-success-msg {
  font-size: 13px;
  color: var(--secondary);
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: var(--radius-md);
  background: rgba(242, 169, 0, 0.05);
  border: 1px solid rgba(242, 169, 0, 0.2);
  width: 100%;
}

/* Footer Section */
.app-footer {
  background-color: var(--dark);
  color: #fff;
  padding: 60px 24px 30px;
  border-top: 1px solid rgba(228, 223, 235, 0.08);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

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

.footer-brand-info .brand-logo {
  font-size: 32px;
}

.font-24 {
  font-size: 24px;
}

.footer-slogan {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.footer-links h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links ul a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

.footer-links ul a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--dark);
  border-left: 3px solid var(--secondary);
  border-top: 1px solid rgba(228, 223, 235, 0.08);
  border-right: 1px solid rgba(228, 223, 235, 0.08);
  border-bottom: 1px solid rgba(228, 223, 235, 0.08);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-size: 13px;
  box-shadow: 0 10px 25px rgba(18, 12, 31, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 300px;
  animation: slide-in 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: var(--transition);
}

.toast.removing {
  opacity: 0;
  transform: translateY(20px);
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries & Responsive styling */
@media (max-width: 992px) {
  .input-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sanctuary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 40px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .mobile-menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .results-grid {
    grid-template-columns: 1fr;
  }
  .sanctuary-grid {
    grid-template-columns: 1fr;
  }
  .concierge-wrapper {
    grid-template-columns: 1fr;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Inline SVG Icon Styles */
.icon-svg {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  vertical-align: -0.2em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tab-icon .icon-svg {
  width: 1.2em;
  height: 1.2em;
  vertical-align: -0.1em;
}

.field-icon .icon-svg {
  width: 1em;
  height: 1em;
  color: var(--muted);
  vertical-align: middle;
}

.card-icon .icon-svg {
  width: 2.2em;
  height: 2.2em;
  color: var(--secondary);
  stroke-width: 1.5;
}

.sanc-rating .icon-svg {
  color: var(--secondary);
  fill: var(--secondary);
  width: 14px;
  height: 14px;
  vertical-align: -0.1em;
  margin-right: 4px;
}

.chat-opt-btn .icon-svg {
  margin-right: 6px;
  vertical-align: -0.15em;
  color: var(--secondary);
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Pinned Left Sidebar Layout */
.app-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  position: relative;
}

.app-sidebar {
  background: #0F2942;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 1000;
  box-shadow: 8px 0 32px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.sidebar-logo {
  padding: 0 12px;
  margin-bottom: 32px;
}

.sidebar-section-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  padding: 0 12px;
  margin: 20px 0 10px 0;
}

.sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-nav li {
  margin-bottom: 6px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.sidebar-link:hover, .sidebar-link.active {
  color: #fff;
  background: rgba(0, 102, 230, 0.1);
  border-left: 3px solid var(--primary);
  padding-left: 13px;
}

.sidebar-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-icon .icon-svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  color: var(--primary);
}

.sidebar-link-secondary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s, background 0.3s;
}

.sidebar-link-secondary:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

.app-main-content {
  overflow-y: auto;
  padding-bottom: 0;
}

/* Mobile Top Header */
.mobile-top-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(18, 12, 31, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: sticky;
  top: 0;
  z-index: 1010;
}

.mobile-brand-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.mobile-brand-logo span {
  color: var(--secondary);
}

.mobile-sidebar-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.mobile-sidebar-toggle span {
  width: 20px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

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

.mobile-sidebar-toggle.open span:nth-child(2) {
  opacity: 0;
}

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

/* Travel Inspiration Section */
.inspiration-section {
  padding: 60px 0;
  background: #EAEFF6;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.section-h2-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

.inspiration-row {
  margin-bottom: 60px;
}

.inspiration-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 4px 20px 4px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.inspiration-slider::-webkit-scrollbar {
  display: none;
}

.slider-card {
  flex: 0 0 200px;
  height: 120px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s;
}

.slider-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(242, 169, 0, 0.2);
}

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

.slider-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(18, 12, 31, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.slider-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(to top, rgba(15, 41, 66, 0.9) 0%, rgba(15, 41, 66, 0) 100%);
}

.slider-card-info h3 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.any-destination {
  background: var(--primary);
  border: 1.5px solid var(--secondary);
}

.slider-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.slider-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(15, 41, 66, 0.4) 0%, rgba(15, 41, 66, 0.95) 100%);
}

.slider-card-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  gap: 8px;
}

.globe-icon {
  font-size: 32px;
  animation: floatGlobe 6s ease-in-out infinite;
}

.slider-card-content h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

@keyframes floatGlobe {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(15deg); }
}

/* Attraction Recommendations */
.recommendations-row {
  margin-top: 20px;
}

.recommendations-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.view-more-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.2s;
}

.view-more-link:hover {
  opacity: 0.8;
}

.recommendations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.rec-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
}

.rec-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 12px 36px rgba(15, 41, 66, 0.12);
}

.rec-image-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.rec-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.rec-card:hover .rec-image-wrapper img {
  transform: scale(1.06);
}

.trip-best-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #F2A900 0%, #B8860B 100%);
  color: #120C1F;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.favorite-heart-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(18, 12, 31, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #fff;
}

.favorite-heart-btn:hover {
  transform: scale(1.1);
  background: rgba(18, 12, 31, 0.85);
}

.favorite-heart-btn.active {
  background: rgba(255, 255, 255, 0.95);
  color: #e23e3e;
  border-color: #e23e3e;
}

.favorite-heart-btn.active svg {
  fill: #e23e3e;
}

.favorite-heart-btn svg {
  width: 16px;
  height: 16px;
}

.rec-details {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.rec-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.rec-tag {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.rec-hot-tag {
  font-size: 11px;
  font-weight: 600;
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

.rec-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 12px 0;
  line-height: 1.4;
  flex: 1;
}

.rec-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-badge {
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

.reviews-count {
  font-size: 11px;
  color: var(--muted);
}

/* Autocomplete suggestions dropdown styling */
.search-input-group {
  position: relative;
}

.suggestions-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 360px;
  max-width: calc(100vw - 48px);
  max-height: 380px;
  background: rgba(18, 12, 31, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  margin-top: 8px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.2s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.2s;
  overflow-y: auto;
  padding: 8px 0;
}

.suggestions-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.suggest-section-title {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 16px 4px 16px;
}

.suggest-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.suggest-item:hover, .suggest-item.active {
  background: rgba(0, 102, 230, 0.08);
}

.suggest-icon {
  font-size: 16px;
  color: var(--secondary);
}

.suggest-label-wrapper {
  display: flex;
  flex-direction: column;
}

.suggest-primary-label {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.suggest-sub-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

.suggest-popular-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px 16px 12px 16px;
}

.popular-city-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 500;
  padding: 8px;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}

.popular-city-btn:hover {
  background: rgba(242, 169, 0, 0.1);
  color: #fff;
  border-color: rgba(242, 169, 0, 0.25);
}

/* Custom double-month calendar popover styling */
.calendar-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 580px;
  background: rgba(18, 12, 31, 0.98);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  margin-top: 8px;
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.6);
  z-index: 998;
  display: none;
  padding: 24px;
}

.calendar-dropdown.open {
  display: block;
}

.calendar-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.calendar-nav-btn {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 4px 8px;
  font-size: 16px;
  transition: opacity 0.2s;
}

.calendar-nav-btn:hover {
  opacity: 0.7;
}

.calendar-months-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.calendar-month {
  display: flex;
  flex-direction: column;
}

.month-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
}

.weekdays-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 8px;
}

.weekday {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
}

.days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  row-gap: 4px;
}

.day-cell {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.day-cell:hover {
  background: rgba(255, 255, 255, 0.05);
}

.day-cell.empty {
  cursor: default;
  pointer-events: none;
}

.day-cell.selected {
  background: var(--secondary) !important;
  color: #120C1F !important;
  font-weight: 700;
}

.day-price {
  font-size: 8px;
  color: var(--secondary);
  margin-top: 1px;
  font-weight: 600;
}

.day-cell.selected .day-price {
  color: #120C1F !important;
}

/* Responsive side-by-side grids */
@media (max-width: 1024px) {
  .app-layout {
    grid-template-columns: 1fr;
  }
  
  .app-sidebar {
    display: none;
  }
  
  .app-sidebar.open {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100vh;
    z-index: 1050;
  }
  
  .mobile-top-header {
    display: flex;
  }
  
  .recommendations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .recommendations-grid {
    grid-template-columns: 1fr;
  }
  
  .calendar-dropdown {
    width: 100%;
    left: 0;
    right: 0;
    padding: 16px;
  }
  
  .calendar-months-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Checkout Modal Overlay styling */
.checkout-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 12, 31, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.checkout-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Modal Card */
.checkout-modal-card {
  background: #fff;
  width: 500px;
  max-width: calc(100vw - 32px);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  padding: 30px;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.checkout-modal-overlay.open .checkout-modal-card {
  transform: scale(1);
}

/* Close Button */
.checkout-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.checkout-modal-close:hover {
  color: var(--dark);
}

/* Title and Subtitle */
.checkout-modal-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.checkout-modal-subtitle {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

/* Payment Options Grid */
.payment-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.payment-option:hover {
  background: rgba(0, 102, 230, 0.02);
  border-color: var(--primary);
}

.payment-option input {
  margin: 0;
  width: auto;
}

.payment-option input:checked + .payment-icon + .payment-label {
  font-weight: 600;
}

.payment-option input:checked ~ span {
  color: var(--primary);
}

.payment-option:has(input:checked) {
  border-color: var(--primary);
  background: rgba(0, 102, 230, 0.04);
}

.payment-icon {
  font-size: 18px;
}

.payment-label {
  font-size: 13px;
  color: var(--dark);
  font-weight: 500;
}

/* Success Receipt Layout */
.success-receipt {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin: 24px 0;
  text-align: left;
}

.success-receipt p {
  font-size: 13px;
  color: var(--dark);
  margin: 8px 0;
}

/* Filter Buttons styling */
.filter-btn {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: rgba(0, 102, 230, 0.02);
}

.filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Collapsible Left Sidebar Layout */
.app-layout {
  transition: grid-template-columns 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-sidebar {
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.app-layout.sidebar-collapsed {
  grid-template-columns: 80px 1fr;
}

.app-layout.sidebar-collapsed .app-sidebar {
  width: 80px;
  padding: 24px 8px;
  align-items: center;
}

.app-layout.sidebar-collapsed .brand-logo {
  display: none;
}

.app-layout.sidebar-collapsed .sidebar-logo {
  justify-content: center !important;
  flex-direction: column !important;
  gap: 12px;
  align-items: center !important;
}

.app-layout.sidebar-collapsed .sidebar-logo::before {
  content: 'Av';
  font-family: var(--font-display);
  font-weight: 850;
  font-size: 24px;
  color: var(--secondary); /* Show letter 'Av' as the brand symbol! */
  text-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.app-layout.sidebar-collapsed .sidebar-section-title {
  display: none;
}

.app-layout.sidebar-collapsed .sidebar-text {
  display: none;
}

.app-layout.sidebar-collapsed .sidebar-link {
  justify-content: center;
  padding: 12px 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.app-layout.sidebar-collapsed .sidebar-link span.sidebar-icon {
  margin-right: 0;
}

/* Dual Search Row Buttons */
.btn-search-bundle {
  border: 2px solid var(--secondary);
  color: var(--secondary);
  background: transparent;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  font-size: 14px;
  box-shadow: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-search-bundle:hover {
  background: var(--secondary);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-search-main {
  background: var(--secondary);
  color: var(--dark);
  box-shadow: 0 4px 14px var(--glow-gold);
  padding: 12px 36px;
  border: none;
  font-size: 14px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-search-main:hover {
  background: #e59e00; /* Slightly darker gold */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 169, 0, 0.35);
}

/* Language Auto-Detect Banner Style */
.lang-prompt-banner {
  position: fixed;
  top: -120px; /* Hidden offscreen by default, slides down */
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: rgba(10, 25, 49, 0.88); /* Premium dark slate */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: top 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: calc(100vw - 32px);
}

.lang-prompt-banner.show {
  top: 24px; /* Slides into position 24px from top */
}

.lang-prompt-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-prompt-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-prompt-text {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-body);
}

.lang-prompt-actions {
  display: flex;
  align-items: center;
}

/* Sidebar Language Switcher Style */
.sidebar-lang-container {
  margin-top: auto;
  padding: 16px 12px 0 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lang-expanded-view {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lang-label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-globe-icon {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  display: inline-flex;
}

.lang-pills {
  display: flex;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
  padding: 2px;
  width: 100%;
}

.lang-pill {
  flex: 1;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 0;
  cursor: pointer;
  border-radius: calc(var(--radius-sm) - 1px);
  transition: all 0.25s ease;
  text-align: center;
}

.lang-pill:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.lang-pill.active {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 2px 6px rgba(0, 102, 230, 0.3);
}

.lang-collapsed-btn {
  display: none; /* Hidden in expanded view */
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 102, 230, 0.15);
  border: 1px solid rgba(0, 102, 230, 0.3);
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.lang-collapsed-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 102, 230, 0.4);
}

/* Collapsed Sidebar Layout Adjustment */
.app-layout.sidebar-collapsed .lang-expanded-view {
  display: none;
}

.app-layout.sidebar-collapsed .lang-collapsed-btn {
  display: flex;
}

.app-layout.sidebar-collapsed .sidebar-lang-container {
  padding: 16px 0 0 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Authentication & Profile Styling */
.auth-tab-btn {
  position: relative;
  transition: var(--transition);
}

.auth-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.auth-tab-btn.active {
  color: var(--primary) !important;
}

/* Collapsed Sidebar adjustments for User Profile */
.app-layout.sidebar-collapsed #profile-logged-out-view {
  padding: 0;
}
.app-layout.sidebar-collapsed #profile-logged-out-view p {
  display: none;
}
.app-layout.sidebar-collapsed #profile-logged-out-view button {
  width: 36px;
  height: 36px;
  padding: 0 !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.app-layout.sidebar-collapsed #profile-logged-out-view button span {
  display: none;
}
.app-layout.sidebar-collapsed #profile-logged-in-view {
  padding: 0;
  justify-content: center;
}
.app-layout.sidebar-collapsed #profile-logged-in-view button {
  display: none;
}
.app-layout.sidebar-collapsed .sidebar-profile-container {
  padding: 16px 0 0 0;
}

