:root {
  --azure: #0792A6;
  --deep-azure: #096572;
  --pastel-orange: #FF9269;
  --peach-tint: #FFCBB8;
  --white: #FFFFFF;
}

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

body {
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  color: var(--deep-azure);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .logo, button {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.hidden {
  display: none !important;
}

/* ==================== NAVBAR ==================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  min-height: 72px;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 100;
  border-bottom: 1px solid #e2e8f0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--deep-azure);
}

.logo-img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  color: var(--deep-azure);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--pastel-orange);
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  width: 30px;
  height: 30px;
}

.hamburger-menu span {
  width: 100%;
  height: 3px;
  background: var(--deep-azure);
  border-radius: 2px;
  display: block;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 101, 114, 0.6);
  z-index: 1998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(2px);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--azure);
  z-index: 1999;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
}

.mobile-menu-link {
  color: var(--white);
  text-decoration: none;
  display: block;
  padding: 1rem 1.5rem;
  font-weight: 500;
  font-family: "Lato", sans-serif;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s;
}

.mobile-menu-link:hover {
  background: rgba(255, 255, 255, 0.15);
}

.mobile-menu-cta {
  background: var(--pastel-orange);
  color: var(--white);
  border: none;
  margin: 1rem 1rem 0 1rem;
  border-radius: 8px;
  text-align: center;
  padding: 0.875rem 1.5rem !important;
}

.navbar.scrolled .nav-link {
  color: var(--deep-azure);
}

.navbar.scrolled .nav-link:hover {
  color: var(--pastel-orange);
}

.navbar.scrolled.over-white .nav-link {
  color: var(--pastel-orange);
}

.navbar.scrolled.over-white .nav-link:hover {
  color: var(--deep-azure);
}

.login-link {
  display: none;
}

/* ==================== CONCIERGE NAVBAR ==================== */
.concierge-navbar {
  background: var(--white) !important;
  padding: 1rem 2rem !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 100 !important;
  border-bottom: 1px solid #e2e8f0;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

.concierge-navbar .logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--deep-azure);
}

.concierge-navbar .logo-img {
  height: 32px;
  width: auto;
}

.concierge-navbar .logo span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--deep-azure);
  font-family: "Montserrat", sans-serif;
}

.concierge-navbar .hamburger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  width: 30px;
  height: 30px;
}

.concierge-navbar .hamburger-menu span {
  width: 100%;
  height: 3px;
  background: var(--deep-azure);
  border-radius: 2px;
  display: block;
}

.concierge-navbar .nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

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

  .concierge-navbar .nav-right {
    display: none;
  }

  .concierge-navbar {
    padding: 1rem !important;
  }

  .concierge-navbar .logo-img {
    height: 28px;
  }
}

.concierge-navbar .nav-credits,
.concierge-navbar .nav-sessions-btn,
.concierge-navbar .nav-bookings-link,
.concierge-navbar .logout-link {
  color: var(--deep-azure);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
}

.concierge-navbar .nav-sessions-btn:hover,
.concierge-navbar .nav-bookings-link:hover,
.concierge-navbar .logout-link:hover {
  color: var(--pastel-orange);
}

/* Concierge page specific styles */
.concierge-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.concierge-chat-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-top: 70px;
  background: var(--white);
  position: relative;
  z-index: 10;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.message {
  max-width: 75%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  font-family: "Lato", sans-serif;
  word-wrap: break-word;
}

/* Mobile nav styling - teal background */
.mobile-nav {
  position: fixed !important;
  top: 0 !important;
  left: -100% !important;
  width: 280px !important;
  height: 100vh !important;
  background: var(--azure) !important;
  z-index: 2000 !important;
  transition: left 0.3s ease !important;
  display: flex !important;
  flex-direction: column !important;
  overflow-y: auto !important;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.15) !important;
}

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

.mobile-nav-header {
  padding: 1rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.mobile-nav-link {
  color: var(--white) !important;
  text-decoration: none !important;
  display: block !important;
  padding: 1rem 1.5rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
  background: rgba(255, 255, 255, 0.15) !important;
}

/* Sessions Drawer */
.sessions-drawer {
  position: fixed !important;
  top: 0 !important;
  left: -100% !important;
  width: 280px !important;
  height: 100vh !important;
  background: var(--white) !important;
  z-index: 2100 !important;
  transition: left 0.3s ease !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.15) !important;
}

.sessions-drawer.active {
  left: 0 !important;
}

.sessions-header {
  padding: 1.5rem !important;
  border-bottom: 1px solid #e2e8f0 !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

.sessions-header h3 {
  font-size: 1.125rem !important;
  color: var(--deep-azure) !important;
  margin: 0 !important;
}

.close-sessions {
  background: none !important;
  border: none !important;
  color: var(--deep-azure) !important;
  font-size: 1.5rem !important;
  cursor: pointer !important;
  padding: 0 !important;
}

/* White hamburger menu for closing */
.hamburger-close {
  display: flex !important;
  flex-direction: column !important;
  gap: 5px !important;
  cursor: pointer !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  width: 30px !important;
  height: 30px !important;
}

.hamburger-close span {
  width: 100% !important;
  height: 3px !important;
  background: var(--white) !important;
  border-radius: 2px !important;
  display: block !important;
}

.sessions-list {
  flex: 1 !important;
  overflow-y: auto !important;
  padding: 1rem 0 !important;
}

.session-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
}

.session-item:hover {
  background-color: #f8f9fa;
}

.session-item.active {
  background-color: rgba(7, 146, 166, 0.08);
  border-left: 3px solid var(--azure);
}

.session-item.new-chat-btn {
  background: var(--azure);
  color: white;
  border: none;
  border-radius: 8px;
  margin: 0 16px 12px 16px;
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 500;
  gap: 8px;
  justify-content: center;
}

.session-item.new-chat-btn:hover {
  background: var(--deep-azure);
}

.session-icon {
  font-size: 18px;
  font-weight: 600;
}

.session-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.session-preview {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.session-meta {
  font-size: 12px;
  color: #888;
}

/* ==================== SECTION 1: HERO ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--azure);
  padding: 140px 2rem 100px;
  overflow: hidden;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 3px, transparent 3px);
  background-size: 50px 50px;
  background-position: 0 0;
}

.hero-accent-image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: auto;
  height: 70%;
  max-height: 500px;
  z-index: 3;
  pointer-events: none;
  object-fit: contain;
}

.hero-accent-image-left {
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  height: 60%;
  max-height: 400px;
  z-index: 3;
  pointer-events: none;
  object-fit: contain;
}

.hero-content {
  max-width: 680px;
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-micro-headline {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  opacity: 0.85;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  font-family: var(--body-font);
}

.hero h1 {
  font-size: 49px;
  line-height: 1.18;
  margin: 0 0 28px 0;
  color: var(--white);
  font-weight: 700;
}

.hero h1 .headline-line-1 {
  font-weight: 700;
}

.hero h1 .headline-line-2 {
  font-weight: 600;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: var(--white);
  max-width: 540px;
  margin: 0 auto 32px;
  font-weight: 400;
  opacity: 0.92;
}

.hero-trust-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 24px auto 28px;
}

.hero-trust-row span {
  font-size: 13px;
  color: var(--white);
  opacity: 0.6;
  font-weight: 400;
  font-family: var(--body-font);
  letter-spacing: 0.3px;
}

.cta-micro-label {
  font-size: 13px;
  color: var(--white);
  opacity: 0.75;
  margin-bottom: 10px;
  font-weight: 400;
  font-family: var(--body-font);
}

#waitlistContainer {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 40px;
  text-align: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0.7;
  text-decoration: none;
  animation: scrollBounce 2s ease-in-out infinite;
  transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
  opacity: 1;
}

.scroll-indicator svg {
  width: 28px;
  height: 28px;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Fade-in animation for sections */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Back to top button */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--azure);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
  z-index: 900;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--deep-azure);
}

.back-to-top:active {
  transform: scale(0.95);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* Button press states for mobile */
.waitlist-btn:active,
.mobile-menu-cta:active {
  transform: scale(0.97);
}

#emailForm {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

#emailForm input {
  flex: 1;
  min-width: 260px;
  width: 100%;
  max-width: 480px;
  height: 56px;
  padding: 16px 24px;
  border: 2px solid var(--white);
  border-radius: 10px;
  font-family: "Lato", sans-serif;
  font-size: 17px;
  background: var(--white);
  color: var(--deep-azure);
  box-shadow: 0 4px 12px rgba(9, 101, 114, 0.08);
  transition: all 0.3s ease;
}

#emailForm input::placeholder {
  color: rgba(9, 101, 114, 0.5);
}

#emailForm input:focus {
  outline: none;
  border-color: var(--deep-azure);
  box-shadow: 0 6px 16px rgba(9, 101, 114, 0.12);
}

#emailForm button {
  height: 56px;
  padding: 0 32px;
  background: var(--pastel-orange);
  color: var(--deep-azure);
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  box-shadow: 0 4px 12px rgba(9, 101, 114, 0.08);
}

#emailForm button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(9, 101, 114, 0.15);
}

.demo-cta {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 28px;
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}

.demo-cta:hover {
  background: var(--white);
  color: var(--azure);
}

.success-message {
  background: rgba(7, 146, 166, 0.1);
  color: var(--deep-azure);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  margin-top: 1.5rem;
}

.video-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 32px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
}

.video-container video {
  width: 100%;
  display: block;
  border-radius: 16px;
}

.video-placeholder {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.video-placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.video-placeholder-content svg {
  width: 48px;
  height: 48px;
  opacity: 0.7;
}

.video-placeholder-content p {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.8;
  font-family: "Lato", sans-serif;
}

/* ==================== SECTION 2: WHY FYN STANDS OUT ==================== */
.why-stands-out {
  padding: 100px 0;
  background: var(--pastel-orange);
  position: relative;
  overflow: hidden;
}

.why-stands-out h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 16px;
  color: var(--deep-azure);
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  color: var(--deep-azure);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

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

.feature-card {
  text-align: left;
  padding: 0;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--deep-azure);
  font-weight: 600;
}

.feature-card p {
  color: var(--deep-azure);
  font-size: 16px;
  line-height: 1.6;
}

.why-fyn-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 80px;
  margin-bottom: 100px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
}

.why-fyn-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(9, 101, 114, 0.1);
  transition: transform 0.3s ease;
}

.why-fyn-image:hover {
  transform: translateY(-4px);
}

/* ==================== SECTION 2B: VISION & MISSION ==================== */
.vision-mission {
  padding: 80px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.vision-mission-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.vision-card,
.mission-card {
  padding: 0;
}

.vision-card h3,
.mission-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--azure);
  font-weight: 700;
}

.vision-card p,
.mission-card p {
  color: var(--deep-azure);
  font-size: 16px;
  line-height: 1.7;
}

.values-statement {
  max-width: 700px;
  margin: 48px auto 0;
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(9, 101, 114, 0.12);
}

.values-statement p {
  color: var(--deep-azure);
  font-size: 15px;
  line-height: 1.8;
  font-style: italic;
  opacity: 0.85;
}

/* ==================== SECTION 3: ABOUT CONCIERGE TEST ==================== */
.about-concierge {
  padding: 100px 0;
  background: var(--azure);
  position: relative;
  overflow: hidden;
}

.about-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.about-concierge h2 {
  font-size: 38px;
  margin-bottom: 24px;
  color: var(--white);
  font-weight: 700;
}

.about-concierge .about-content > p {
  color: var(--white);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-concierge .about-content > p.beta-note {
  font-size: 16px;
  font-style: italic;
  opacity: 0.9;
  margin-bottom: 50px;
}

.about-stats-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.about-stat-card {
  text-align: center;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: var(--white);
  opacity: 0.9;
}

.stats-section-title {
  font-size: 24px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 40px;
  font-family: "Montserrat", sans-serif;
}

/* ==================== SECTION 4: HOW IT WORKS ==================== */
.process-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.process-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.process-section h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 60px;
  color: var(--azure);
  font-weight: 700;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.process-step {
  text-align: center;
}

.step-indicator {
  width: 48px;
  height: 48px;
  background: var(--peach-tint);
  color: var(--deep-azure);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 20px;
  font-family: "Montserrat", sans-serif;
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--azure);
  font-weight: 600;
}

.process-step p {
  color: var(--deep-azure);
  font-size: 16px;
  line-height: 1.6;
}

/* ==================== SECTION 5: FAQ ==================== */
.faq-section {
  padding: 100px 0;
  background: var(--peach-tint);
  position: relative;
  overflow: hidden;
}

.faq-section h2 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 50px;
  color: var(--deep-azure);
  font-weight: 700;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--azure);
  border-radius: 10px;
  margin-bottom: 16px;
  overflow: hidden;
  background: transparent;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.3);
}

.faq-question span {
  font-size: 17px;
  font-weight: 600;
  color: var(--deep-azure);
  font-family: 'Montserrat', sans-serif;
}

.faq-toggle {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-toggle.open {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--deep-azure);
  font-size: 16px;
  line-height: 1.6;
}

/* ==================== SECTION 6: FINAL CTA ==================== */
.early-access {
  padding: 100px 0;
  background: var(--azure);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.early-access h2 {
  font-size: 38px;
  margin-bottom: 16px;
  color: var(--white);
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.early-access > .container > p {
  font-size: 18px;
  margin-bottom: 40px;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.early-access-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.early-access-form input {
  flex: 1;
  min-width: 260px;
  width: 100%;
  max-width: 480px;
  height: 56px;
  padding: 16px 24px;
  border: 2px solid var(--white);
  border-radius: 10px;
  font-family: "Lato", sans-serif;
  font-size: 17px;
  background: var(--white);
  color: var(--deep-azure);
  box-shadow: 0 4px 12px rgba(9, 101, 114, 0.08);
  transition: all 0.3s ease;
}

.early-access-form input::placeholder {
  color: rgba(9, 101, 114, 0.5);
}

.early-access-form input:focus {
  outline: none;
  border-color: var(--deep-azure);
  box-shadow: 0 6px 16px rgba(9, 101, 114, 0.12);
}

.early-access-form button {
  height: 56px;
  padding: 0 32px;
  background: var(--pastel-orange);
  color: var(--deep-azure);
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  box-shadow: 0 4px 12px rgba(9, 101, 114, 0.08);
}

.early-access-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(9, 101, 114, 0.15);
}

/* ==================== FOOTER ==================== */
.footer {
  padding: 60px 0 40px;
  background: var(--deep-azure);
  text-align: center;
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
}

.footer-logo {
  margin-bottom: 16px;
}

.logo-img-white {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 12px;
  opacity: 0.9;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.footer-subline {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 24px;
  opacity: 0.8;
  font-style: italic;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

.footer-social a {
  color: var(--white);
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  opacity: 1;
  transform: scale(1.1);
}

.footer-social svg {
  width: 24px;
  height: 24px;
}

.footer-copyright {
  color: var(--white);
  font-size: 14px;
  opacity: 0.7;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
  .hero h1 {
    font-size: 38px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-card {
    text-align: center;
  }

  .feature-arc {
    margin: 0 auto 20px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-stats-row {
    gap: 40px;
  }

  .dotted-grid {
    display: none;
  }

  .shape-arc {
    opacity: 0.5;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 2rem 50px;
  }

  .hero-accent-image {
    height: 50%;
    max-height: 350px;
    opacity: 0.63;
    bottom: -5%;
  }

  .hero-accent-image-left {
    height: 45%;
    max-height: 300px;
    opacity: 0.63;
  }

  .hero-micro-headline {
    font-size: 12px;
    margin-top: 14px;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.22;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.55;
    max-width: 85%;
    margin: 0 auto 20px;
  }

  .video-container {
    max-width: 85%;
    margin-bottom: 12px;
  }

  .video-placeholder {
    max-width: 85%;
    aspect-ratio: 16 / 8;
    margin-bottom: 12px;
  }

  .hero-trust-row {
    gap: 5px;
    margin-top: 12px;
    margin-bottom: 10px;
  }

  .hero-trust-row span {
    font-size: 11px;
  }

  .cta-micro-label {
    margin-top: 0;
    margin-bottom: 10px;
  }

  #waitlistContainer {
    margin-top: 0;
  }

  .waitlist-btn {
    width: 80%;
    max-width: 320px;
  }

  .why-stands-out {
    padding: 50px 0;
  }

  .vision-mission {
    padding: 50px 0;
  }

  .vision-mission-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-concierge {
    padding: 50px 0;
  }

  .process-section {
    padding: 50px 0;
  }

  .process-section h2 {
    margin-bottom: 40px;
  }

  .process-steps {
    gap: 30px;
  }

  .faq-section {
    padding: 50px 0;
  }

  .early-access {
    padding: 50px 0;
  }

  .container {
    padding: 0 1.5rem;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-link {
    font-size: 0.875rem;
  }
}

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

  .hamburger-menu {
    display: flex;
  }

  .navbar {
    padding: 1rem 1.5rem;
    min-height: 60px;
  }

  .logo-img {
    height: 28px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 70px 1.5rem 40px;
    min-height: 80vh;
    background-image: none;
    background-color: var(--azure);
  }

  .hero-accent-image {
    height: 40%;
    max-height: 250px;
    opacity: 0.45;
    bottom: -6%;
  }

  .hero-accent-image-left {
    height: 35%;
    max-height: 200px;
    opacity: 0.45;
  }

  .hero-micro-headline {
    font-size: 11px;
    margin-top: 16px;
    margin-bottom: 10px;
  }

  .hero h1 {
    font-size: 25px;
    line-height: 1.28;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 13px;
    line-height: 1.55;
    max-width: 85%;
    margin: 0 auto 16px;
  }

  .hero-content {
    max-width: 100%;
    padding-top: 10px;
  }

  .video-container {
    max-width: 90%;
    margin-bottom: 12px;
  }

  .video-placeholder {
    max-width: 90%;
    aspect-ratio: 16 / 8;
    margin-bottom: 12px;
  }

  .hero-trust-row {
    flex-direction: column;
    gap: 4px;
    margin: 12px auto 12px;
    text-align: center;
  }

  .hero-trust-row span {
    font-size: 11px;
  }

  .cta-micro-label {
    font-size: 11px;
    margin-top: 0;
    margin-bottom: 10px;
  }

  #waitlistContainer {
    margin-top: 0;
  }

  .waitlist-btn {
    width: 80%;
    max-width: 280px;
    padding: 14px 28px;
    font-size: 15px;
  }

  .why-stands-out {
    padding: 40px 0;
  }

  .why-stands-out h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .section-subtitle {
    font-size: 14px;
    margin: 0 auto 30px;
  }

  .features-grid {
    gap: 24px;
    padding: 0 1.5rem;
  }

  .feature-card {
    text-align: center;
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
  }

  .feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .feature-card p {
    font-size: 14px;
    line-height: 1.6;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .scroll-indicator {
    bottom: 16px;
  }

  .scroll-indicator svg {
    width: 24px;
    height: 24px;
  }

  .why-fyn-images {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 50px;
  }

  .vision-mission {
    padding: 40px 0;
  }

  .vision-mission-content {
    gap: 30px;
    padding: 0 1.5rem;
  }

  .vision-card h3,
  .mission-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .vision-card p,
  .mission-card p {
    font-size: 14px;
    line-height: 1.6;
  }

  .values-statement {
    margin-top: 32px;
    padding-top: 28px;
  }

  .values-statement p {
    font-size: 13px;
    line-height: 1.7;
  }

  .about-concierge {
    padding: 40px 0;
  }

  .about-concierge h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .about-concierge .about-content > p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .about-concierge .about-content > p.beta-note {
    font-size: 13px;
    margin-bottom: 30px;
  }

  .container {
    padding: 0 1.5rem;
  }

  .process-section {
    padding: 40px 0;
  }

  .process-section h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .process-steps {
    gap: 24px;
  }

  .process-step {
    text-align: center;
  }

  .step-indicator {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin: 0 auto 12px;
  }

  .process-step h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .process-step p {
    font-size: 14px;
  }

  .faq-section {
    padding: 40px 0;
  }

  .faq-section h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .faq-question {
    padding: 14px;
    font-size: 14px;
  }

  .faq-answer {
    padding: 14px !important;
  }

  .faq-answer p {
    font-size: 13px;
    line-height: 1.5;
  }

  .early-access {
    padding: 40px 0;
  }

  .early-access h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .early-access p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .early-access-form {
    flex-direction: column;
    gap: 12px;
  }

  .early-access-form input {
    width: 100%;
    max-width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    height: auto;
  }

  .early-access-form button {
    height: auto;
    padding: 15px 20px;
    font-size: 16px;
  }

  #emailForm {
    flex-direction: column;
    gap: 12px;
  }

  #emailForm input {
    width: 100%;
    max-width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    height: auto;
  }

  #emailForm button {
    height: auto;
    padding: 15px 20px;
    font-size: 16px;
  }

  .navbar {
    padding: 0.75rem 1rem;
    min-height: 52px;
  }

  .logo-img {
    height: 28px;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-link {
    font-size: 0.75rem;
  }

  .section-shapes {
    display: none;
  }

  .footer {
    padding: 40px 0 30px;
  }

  .footer-tagline {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .footer-subline {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .footer-copyright {
    font-size: 12px;
  }
}

/* ==================== CHAT MODAL (existing functionality) ==================== */
#chatSection {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  padding: 1rem;
}

#chatSection.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-container {
  background: var(--white);
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chat-header {
  padding: 1.25rem;
  background: var(--azure);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
}

.chat-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.message {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  max-width: 85%;
  padding: 0.875rem 1rem;
  border-radius: 12px;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.message-avatar {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
}

.message.assistant {
  background: #e6f7f9;
  color: var(--deep-azure);
  align-self: flex-start;
  border-radius: 12px;
}

.message.user {
  background: #ffcbb8;
  color: var(--deep-azure);
  align-self: flex-end;
  border-radius: 12px;
}

.chat-input-container {
  padding: 1rem;
  border-top: 1px solid rgba(7, 146, 166, 0.1);
  display: flex;
  gap: 0.75rem;
}

.chat-input-container input {
  flex: 1;
  padding: 0.875rem 1rem;
  border: 2px solid rgba(7, 146, 166, 0.2);
  border-radius: 10px;
  font-size: 0.9375rem;
  font-family: "Lato", sans-serif;
}

.chat-input-container input:focus {
  outline: none;
  border-color: var(--azure);
}

.chat-input-container button {
  padding: 0 1.25rem;
  background: var(--pastel-orange);
  color: var(--azure);
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
}

/* Typing Indicator */
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--azure);
  opacity: 0.4;
  animation: typingDot 1.4s infinite;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingDot {
  0%, 60%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  30% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* ==================== DECORATIVE DOTS ==================== */
.decorative-dots {
  position: absolute;
  pointer-events: none;
  background-image: url('decorative-dots.png');
  background-repeat: no-repeat;
  opacity: 0.6;
  z-index: 1;
}

.dots-top-left {
  top: 0;
  left: 0;
  width: 350px;
  height: 250px;
  background-position: top left;
}

.dots-top-right {
  top: 0;
  right: 0;
  width: 350px;
  height: 250px;
  background-position: top right;
}

.dots-bottom-left {
  bottom: 0;
  left: 0;
  width: 350px;
  height: 250px;
  background-position: bottom left;
}

.dots-bottom-right {
  bottom: 0;
  right: 0;
  width: 350px;
  height: 250px;
  background-position: bottom right;
}

/* ==================== WAITLIST MODAL ==================== */
.waitlist-btn {
  background: var(--pastel-orange);
  color: var(--white);
  border: none;
  padding: 17px 42px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

.waitlist-btn:hover {
  transform: translateY(-2px);
  background: #e8845e;
}

.waitlist-btn-footer {
  background: var(--peach-tint);
  color: var(--deep-azure);
}

.waitlist-btn-footer:hover {
  background: #ffd9ca;
}

.waitlist-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(9, 101, 114, 0.85);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow-y: auto;
}

.waitlist-modal-overlay.active {
  display: flex;
}

.waitlist-modal {
  background: var(--white);
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px 32px;
  position: relative;
  animation: modalSlideIn 0.3s ease;
}

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

.waitlist-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--deep-azure);
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
}

.waitlist-modal h2 {
  font-size: 26px;
  color: var(--deep-azure);
  margin-bottom: 6px;
  text-align: center;
}

.waitlist-modal-subtitle {
  text-align: center;
  color: var(--deep-azure);
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.4;
}

.waitlist-modal-subtitle span {
  font-style: italic;
  opacity: 0.8;
}

.service-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.service-checkbox {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  padding: 14px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s;
}


.service-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-desc {
  font-size: 12px;
  color: var(--deep-azure);
  opacity: 0.6;
  font-family: var(--body-font);
  line-height: 1.4;
}

.service-checkbox:hover {
  border-color: var(--azure);
  background: rgba(7, 146, 166, 0.05);
}

.service-checkbox input {
  display: none;
}

.service-checkbox .checkmark {
  width: 22px;
  height: 22px;
  border: 2px solid #cbd5e1;
  border-radius: 4px;
  margin-right: 12px;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.service-checkbox input:checked + .checkmark {
  background: var(--azure);
  border-color: var(--azure);
}

.service-checkbox input:checked + .checkmark::after {
  content: "✓";
  color: white;
  font-size: 14px;
  font-weight: bold;
}

.service-checkbox .service-label {
  font-size: 15px;
  color: var(--deep-azure);
}

.something-else-input {
  margin-bottom: 16px;
}

.something-else-input input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--azure);
  border-radius: 8px;
  font-size: 15px;
  font-family: "Lato", sans-serif;
}

.something-else-input input:focus {
  outline: none;
  border-color: var(--deep-azure);
}

.waitlist-email-section {
  margin: 16px 0;
}

.waitlist-email-section label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--deep-azure);
  margin-bottom: 8px;
}

.waitlist-email-section input {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 15px;
  font-family: "Lato", sans-serif;
  transition: border-color 0.2s;
}

.waitlist-email-section input:focus {
  outline: none;
  border-color: var(--azure);
}

.waitlist-submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--azure);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.waitlist-submit-btn:hover {
  background: var(--deep-azure);
  transform: translateY(-1px);
}

.waitlist-success {
  text-align: center;
  padding: 40px 20px;
}

.waitlist-success .success-icon {
  width: 64px;
  height: 64px;
  background: var(--azure);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}

.waitlist-success h3 {
  font-size: 24px;
  color: var(--deep-azure);
  margin-bottom: 8px;
}

.waitlist-success p {
  color: var(--deep-azure);
  opacity: 0.8;
}

@media (max-width: 600px) {
  .waitlist-modal-overlay {
    padding: 10px;
    align-items: flex-start;
    padding-top: 20px;
  }

  .waitlist-modal {
    padding: 20px 16px;
    margin: 0;
    max-height: 85vh;
    overflow-y: auto;
  }

  .waitlist-modal h2 {
    font-size: 22px;
    margin-bottom: 4px;
  }

  .waitlist-modal-subtitle {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .service-checkboxes {
    gap: 8px;
    margin-bottom: 10px;
  }

  .service-checkbox {
    padding: 10px 12px;
  }

  .service-checkbox .service-label {
    font-size: 14px;
  }
  
  .service-desc {
    font-size: 11px;
  }

  .waitlist-email-section {
    margin-top: 12px;
  }

  .waitlist-submit-btn {
    padding: 14px 24px;
    font-size: 15px;
  }

  .waitlist-btn {
    padding: 14px 32px;
    font-size: 16px;
  }
}

/* ==================== RECOMMENDATION CARDS ==================== */
.cards-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
  width: 100%;
}

.recommendation-card {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s ease;
}

.recommendation-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-image {
  width: 100px;
  min-width: 100px;
  height: auto;
  min-height: 120px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.card-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.card-title {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--deep-azure);
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.card-tag-location {
  background: rgba(7, 146, 166, 0.1);
  color: var(--azure);
  border: 1px solid var(--azure);
}

.card-tag-time {
  background: rgba(7, 146, 166, 0.1);
  color: var(--azure);
  border: 1px solid var(--azure);
}

.card-tag-cuisine,
.card-tag-type {
  background: rgba(255, 146, 105, 0.15);
  color: var(--pastel-orange);
  border: 1px solid var(--pastel-orange);
}

.card-tag-price {
  background: rgba(7, 146, 166, 0.1);
  color: var(--azure);
  border: 1px solid var(--azure);
}

.card-tag-feature {
  background: rgba(255, 146, 105, 0.15);
  color: #e07850;
  border: 1px solid var(--pastel-orange);
}

.card-rating {
  margin-bottom: 8px;
}

.card-rating .card-tag {
  background: transparent;
  border: none;
  padding: 0;
  color: var(--deep-azure);
}

.card-description {
  font-size: 13px;
  color: var(--azure);
  margin: 0 0 12px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--deep-azure);
  margin: 0 0 12px 0;
}

.card-book-btn {
  background: var(--azure);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  text-align: center;
  width: 100%;
  margin-top: auto;
}

.card-book-btn:hover {
  background: var(--deep-azure);
}

.card-book-btn:active {
  transform: scale(0.98);
}

.card-book-btn.booked {
  background: #28a745;
  cursor: default;
}

.card-book-btn.booked:hover {
  background: #28a745;
}

.card-book-btn:disabled {
  opacity: 0.8;
  cursor: not-allowed;
}

/* Typing indicator for concierge */
.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 8px 0;
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  background: var(--azure);
  border-radius: 50%;
  animation: typing-bounce 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1) {
  animation-delay: -0.32s;
}

.typing-indicator span:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes typing-bounce {
  0%, 80%, 100% {
    transform: scale(0.6);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Mobile card adjustments */
@media (max-width: 600px) {
  .recommendation-card {
    flex-direction: column;
  }
  
  .card-image {
    width: 100%;
    height: 140px;
    min-height: 140px;
  }
  
  .card-content {
    padding: 14px;
  }
  
  .card-title {
    font-size: 15px;
  }
  
  .card-tag {
    font-size: 11px;
    padding: 3px 8px;
  }
  
  .card-book-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* ===== BOOKINGS PAGE STYLES ===== */
.bookings-page {
  background: #f8f9fa;
  min-height: 100vh;
}

.bookings-main {
  padding-top: 80px;
  min-height: calc(100vh - 80px);
}

.bookings-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 24px 20px;
}

.bookings-header {
  margin-bottom: 24px;
}

.bookings-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 8px 0;
}

.bookings-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: #6b7280;
  margin: 0;
}

.bookings-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bookings-loading {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-skeleton {
  background: white;
  border-radius: 16px;
  height: 120px;
  animation: skeleton-pulse 1.5s infinite;
}

@keyframes skeleton-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Booking Card */
.booking-card {
  background: white;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  position: relative;
  overflow: hidden;
}

/* Curved teal accent line on left */
.booking-accent {
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 4px;
  background: var(--primary);
  border-radius: 0 4px 4px 0;
}

.booking-content {
  display: flex;
  gap: 16px;
  width: 100%;
  padding-left: 12px;
}

.booking-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
}

.booking-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.booking-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
  line-height: 1.3;
}

.booking-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.booking-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 20px;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.booking-tag-location {
  background: #e6f7f9;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.booking-tag-time {
  background: #e6f7f9;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.booking-tag-service {
  background: #e6f7f9;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.booking-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 500;
  width: fit-content;
}

.status-confirmed {
  background: var(--accent);
  color: var(--secondary);
}

.status-pending {
  background: #fef3c7;
  color: #92400e;
}

.status-cancelled {
  background: #fee2e2;
  color: #991b1b;
}

.status-requested {
  background: #fef3c7;
  color: #92400e;
}

.status-in-progress {
  background: #dbeafe;
  color: #1e40af;
}

.status-booked {
  background: #d1fae5;
  color: #065f46;
}

.status-not-booked {
  background: #fee2e2;
  color: #991b1b;
}

/* Empty state */
.bookings-empty {
  text-align: center;
  padding: 48px 24px;
  background: white;
  border-radius: 16px;
}

.bookings-empty .empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.bookings-empty h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 8px 0;
}

.bookings-empty p {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: #6b7280;
  margin: 0 0 24px 0;
}

.bookings-empty .btn-primary {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s;
}

.bookings-empty .btn-primary:hover {
  background: var(--deep);
}

.bookings-error {
  text-align: center;
  padding: 32px;
  background: white;
  border-radius: 16px;
}

.bookings-error p {
  font-family: 'Lato', sans-serif;
  color: #6b7280;
  margin-bottom: 16px;
}

.btn-retry {
  background: var(--primary);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  cursor: pointer;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .bookings-container {
    padding: 20px 16px;
  }
  
  .bookings-header h1 {
    font-size: 24px;
  }
  
  .booking-image {
    width: 70px;
    height: 70px;
  }
  
  .booking-name {
    font-size: 15px;
  }
  
  .booking-tag {
    font-size: 11px;
    padding: 3px 8px;
  }
}

/* ===== EDIT BOOKING MODAL ===== */
.edit-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  padding: 20px;
}

.edit-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.edit-modal {
  background: white;
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  max-height: 85vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.2s;
  margin: 20px;
}

.edit-modal-overlay.active .edit-modal {
  transform: translateY(0);
}

.edit-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e5e7eb;
}

.edit-modal-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
}

.edit-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #6b7280;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.2s;
}

.edit-modal-close:hover {
  background: #f3f4f6;
}

.edit-modal-form {
  padding: 24px;
  padding-bottom: 30px;
}

.edit-modal-form .form-actions {
  display: flex;
  flex-direction: row !important;
  gap: 12px;
  margin-top: 24px;
  padding: 20px 0;
  border-top: 1px solid #e5e7eb;
  background: white;
}

.edit-modal-form .form-actions .btn-secondary,
.edit-modal-form .form-actions .btn-primary {
  flex: 1;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.edit-modal-form .form-actions .btn-secondary {
  background: white;
  color: #374151;
  border: 1px solid #d1d5db;
}

.edit-modal-form .form-actions .btn-primary {
  background: #0792a6;
  color: white;
  border: none;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: var(--dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(7, 146, 166, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

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

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  padding-bottom: 10px;
  border-top: 1px solid #e5e7eb;
}

.form-actions .btn-secondary {
  flex: 1;
  padding: 12px 20px;
  background: white;
  color: var(--dark);
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.form-actions .btn-secondary:hover {
  background: #f3f4f6;
}

.form-actions .btn-primary {
  flex: 1;
  padding: 12px 20px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}

.form-actions .btn-primary:hover {
  background: var(--deep);
}

.form-actions .btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Booking card edit button */
.booking-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.booking-edit-btn {
  flex-shrink: 0;
  background: none;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 6px;
  cursor: pointer;
  color: #6b7280;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-edit-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #e6f7f9;
}

/* Mobile adjustments for edit modal */
@media (max-width: 600px) {
  .edit-modal-overlay {
    padding: 0;
    align-items: flex-end;
  }
  
  .edit-modal {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 16px 16px 0 0;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Booking Modal Styles */
.booking-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  padding: 20px;
}

.booking-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.booking-modal {
  background: white;
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.2s;
}

.booking-modal-overlay.active .booking-modal {
  transform: translateY(0);
}

.booking-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e5e7eb;
}

.booking-modal-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
}

.booking-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #6b7280;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.2s;
}

.booking-modal-close:hover {
  background: #f3f4f6;
}

.booking-modal-form {
  padding: 24px;
}

.booking-modal-form .form-group {
  margin-bottom: 20px;
}

.booking-modal-form label {
  display: block;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
  font-size: 14px;
}

.booking-modal-form label .required {
  color: #ef4444;
}

.booking-modal-form input[type="text"],
.booking-modal-form input[type="tel"],
.booking-modal-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Lato', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.booking-modal-form input:focus,
.booking-modal-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(7, 146, 166, 0.1);
}

.booking-modal-form .form-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.booking-modal-form .btn-secondary {
  flex: 1;
  padding: 12px 20px;
  border: 1px solid #d1d5db;
  background: white;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #374151;
  cursor: pointer;
  transition: background 0.2s;
}

.booking-modal-form .btn-secondary:hover {
  background: #f3f4f6;
}

.booking-modal-form .btn-primary {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background: var(--primary);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: white;
  cursor: pointer;
  transition: background 0.2s;
}

.booking-modal-form .btn-primary:hover {
  background: var(--accent);
}

.booking-modal-form .btn-primary:disabled {
  background: #9ca3af;
  cursor: not-allowed;
}

@media (max-width: 600px) {
  .booking-modal-overlay {
    padding: 0;
    align-items: flex-end;
  }
  
  .booking-modal {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 16px 16px 0 0;
  }
  
  .booking-modal-form .form-actions {
    flex-direction: column-reverse;
  }
}
