/* Event Stuffer - Airbnb-Inspired Clean Theme */

:root {
  /* Primary Colors — Light shiny gold */
  --color-primary: #F0C14B;
  --color-primary-dark: #D4A827;
  --color-primary-light: #F7D76F;

  /* Background Colors — pure white palette */
  --bg-main: #FFFFFF;
  --bg-secondary: #F7F7F7;
  --bg-card: #FFFFFF;
  --bg-dark: #222222;

  /* Text Colors — Airbnb "Hof" & "Foggy" */
  --text-dark: #222222;
  --text-medium: #484848;
  --text-muted: #767676;

  /* Borders */
  --border-color: #EBEBEB;
  --border-soft: #DDDDDD;

  /* Neutrals */
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F7F7F7;
  --gray-200: #EBEBEB;
  --gray-300: #DDDDDD;
  --gray-400: #B0B0B0;
  --gray-500: #767676;
  --gray-600: #484848;
  --gray-700: #333333;
  --gray-800: #222222;
  --gray-900: #111111;

  /* Status Colors */
  --success: #008A05;
  --warning: #E07912;
  --danger: #C13515;

  /* Shadows — lighter, airier */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.18);
  --shadow-elevated: 0 4px 16px rgba(0, 0, 0, 0.12);

  /* Legacy aliases */
  --shadow-neumorphic: var(--shadow-card);
  --shadow-neumorphic-sm: var(--shadow-sm);
  --shadow-neumorphic-inset: inset 0 1px 3px rgba(0, 0, 0, 0.06);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Border Radius — Airbnb style */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;

  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1, h2 {
  font-weight: 800;
}

.text-gradient {
  color: var(--color-primary);
}

/* Navbar - Solid White */
.navbar {
  background: var(--white);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  overflow: visible;
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 0.5rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark) !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand img,
.navbar-logo {
  height: 70px;
  max-height: 70px;
  width: auto;
}

.navbar-brand .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.navbar .nav-link {
  color: var(--text-medium) !important;
  font-weight: 600;
  padding: 0.6rem 1rem !important;
  transition: color 0.2s ease;
  font-size: 0.875rem;
  position: relative;
  border-radius: var(--radius-sm);
}

.navbar .nav-link:hover {
  color: var(--text-dark) !important;
}

.navbar .nav-link.active {
  color: var(--text-dark) !important;
}

/* Navbar button styling */
.navbar .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
}

/* Nav profile avatar */
.navbar .nav-link img.rounded-circle {
  width: 28px !important;
  height: 28px !important;
  max-width: 28px;
  max-height: 28px;
  object-fit: cover;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
  flex-shrink: 0;
}

.navbar .nav-link:hover img.rounded-circle {
  border-color: var(--color-primary);
}

/* Mobile navbar toggle */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.navbar-toggler:focus {
  box-shadow: none;
  background: var(--gray-100);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23484848' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero {
  background: var(--bg-main);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 0;
  overflow: hidden;
}

.hero-banner-img {
  width: 100%;
  max-width: 1024px;
  height: auto;
  display: block;
}

.hero::before {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2.5rem 1rem 3rem;
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Navbar Search Bar — compact pill in top bar */
.navbar-search {
  flex: 1;
  max-width: 420px;
  margin: 0 1.5rem;
}

.navbar-search-bar {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 40px;
  padding: 0.3rem 0.3rem 0.3rem 1rem;
  border: 1px solid var(--border-color);
  gap: 0.5rem;
  transition: box-shadow 0.2s ease;
}

.navbar-search-bar:hover,
.navbar-search-bar:focus-within {
  box-shadow: var(--shadow-card);
}

.navbar-search-bar > i {
  color: var(--text-muted);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.navbar-search-bar input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.85rem;
  color: var(--text-dark);
  padding: 0.35rem 0;
  font-family: 'Nunito', sans-serif;
  min-width: 0;
}

.navbar-search-bar input::placeholder {
  color: var(--text-muted);
}

.navbar-search-btn {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  border: none;
  background: var(--color-primary);
  color: #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  flex-shrink: 0;
}

.navbar-search-btn:hover {
  background: var(--color-primary-dark);
}

.navbar-search-btn:active {
  transform: scale(0.95);
}

/* Hero buttons */
.hero .btn-outline-primary {
  border-color: var(--text-dark);
  color: var(--text-dark);
}

.hero .btn-outline-primary:hover {
  background: var(--gray-100);
  border-color: var(--text-dark);
  color: var(--text-dark);
}

.hero-logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 2.25rem;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  margin: 1rem 0 2rem;
}

.hero-logo-card img {
  max-width: 220px;
  height: auto;
}

.hero-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.feature-tile {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.feature-tile:hover {
  box-shadow: var(--shadow-card-hover);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--gray-100);
  color: var(--color-primary);
  font-size: 1.5rem;
}

/* Buttons - Airbnb Style */
.btn {
  padding: 0.8rem 1.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  border: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Nunito', sans-serif;
}

.btn i, .btn .bi {
  font-size: 1.1em;
}

.btn::before {
  display: none;
}

/* Primary Button — Shiny Gold */
.btn-primary {
  background: var(--color-primary);
  color: #1A1A1A;
  border: none;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: #1A1A1A;
}

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

.btn-primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(240, 193, 75, 0.4);
}

/* Secondary Button — Clean outline */
.btn-secondary {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--text-dark);
  color: var(--text-dark);
  background: var(--gray-100);
}

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

/* Outline Primary — Dark border, Airbnb style */
.btn-outline-primary {
  border: 1px solid var(--text-dark);
  color: var(--text-dark);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--gray-100);
  border-color: var(--text-dark);
  color: var(--text-dark);
}

.btn-outline-primary:active {
  transform: scale(0.98);
}

/* Ghost Button */
.btn-ghost {
  background: transparent;
  border: none;
  color: var(--text-medium);
  padding: 0.5rem 1rem;
}

.btn-ghost:hover {
  background: var(--gray-100);
  color: var(--text-dark);
}

/* Outline Secondary */
.btn-outline-secondary {
  border: 1px solid var(--border-soft);
  color: var(--text-medium);
  background: transparent;
}

.btn-outline-secondary:hover {
  border-color: var(--text-dark);
  color: var(--text-dark);
  background: var(--gray-100);
}

/* Dark Button */
.btn-dark {
  background: var(--text-dark);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--gray-900);
  color: var(--white);
}

/* Light Button */
.btn-light {
  background: var(--white);
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.btn-light:hover {
  box-shadow: var(--shadow-card);
  color: var(--text-dark);
}

/* Success Button */
.btn-success {
  background: var(--success);
  color: var(--white);
}

.btn-success:hover {
  background: #006B04;
  color: var(--white);
}

/* Danger Button */
.btn-danger {
  background: var(--danger);
  color: var(--white);
}

.btn-danger:hover {
  background: #A02B10;
  color: var(--white);
}

/* Warning Button */
.btn-warning {
  background: var(--warning);
  color: var(--white);
}

.btn-warning:hover {
  background: #C56A0E;
  color: var(--white);
}

/* Button Sizes */
.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
}

.btn-xs {
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  border-radius: 8px;
}

/* Icon-only Button */
.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
}

.btn-icon.btn-sm {
  width: 36px;
  height: 36px;
}

.btn-icon.btn-lg {
  width: 52px;
  height: 52px;
}

/* Block Button */
.btn-block {
  width: 100%;
}

/* Button with pill shape */
.btn-pill {
  border-radius: var(--radius-pill);
}

/* Floating Action Button */
.btn-fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  padding: 0;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  box-shadow: var(--shadow-elevated);
}

.btn-fab:hover {
  box-shadow: var(--shadow-card-hover);
}

/* Disabled state */
.btn:disabled,
.btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.btn:disabled::before,
.btn.disabled::before {
  display: none;
}

/* Cards - Clean Airbnb Style */
.card {
  background: var(--bg-card);
  border: none;
  border-radius: var(--radius-md);
  box-shadow: none;
  overflow: hidden;
  position: relative;
}

.card:hover {
  box-shadow: none;
}

.card-img-top {
  aspect-ratio: 4/3;
  object-fit: cover;
  background-color: var(--gray-100);
  transition: transform 0.3s ease;
}

.card:hover .card-img-top {
  transform: none;
}

.card-body {
  padding: 12px;
}

.card-title {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.card-text {
  color: var(--text-medium);
}

/* Card variants */
.card-elevated {
  box-shadow: var(--shadow-card);
}

.card-flat {
  box-shadow: none;
  border: 1px solid var(--border-color);
}

.card-flat:hover {
  border-color: var(--border-soft);
  box-shadow: var(--shadow-card);
}

/* Companion Cards — Photo-dominant Airbnb style */
.companion-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: none;
  cursor: pointer;
  transition: box-shadow 0.2s ease;
  border: none;
}

.companion-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.companion-card .card-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.companion-card .card-img-top {
  transition: none;
}

.companion-card .badge-service {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--white);
  color: var(--text-dark);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.companion-card .favorite-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  font-size: 0.85rem;
}

.companion-card .favorite-btn:hover {
  color: var(--color-primary);
  transform: scale(1.1);
}

.companion-card .companion-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.companion-card .companion-location {
  color: var(--text-muted);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.companion-card .companion-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0.5rem 0;
}

.companion-card .rating-stars {
  color: var(--text-dark);
  font-size: 0.8rem;
}

.companion-card .rating-count {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.companion-card .companion-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.companion-card .companion-price span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 700;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 3rem;
}

/* Featured Section */
.featured-section {
  background: var(--bg-main);
  padding: 2rem 0 2.5rem;
}

/* Services Section */
.services-section {
  background: var(--bg-secondary);
}

.service-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
  box-shadow: none;
  border: 1px solid var(--border-color);
  cursor: pointer;
}

.service-card:hover {
  box-shadow: var(--shadow-card);
  border-color: var(--border-soft);
}

.service-card:hover .service-icon {
  background: var(--color-primary);
  color: var(--white);
}

.service-card:hover h4 {
  color: var(--color-primary);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.6rem;
  color: var(--color-primary);
  transition: all 0.2s ease;
}

.service-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  font-weight: 700;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* How It Works */
.how-it-works {
  background: var(--bg-secondary);
}

.step-card {
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  color: var(--color-primary);
  box-shadow: var(--shadow-card);
}

.step-card h4 {
  margin-bottom: 0.75rem;
  color: var(--text-dark);
  font-weight: 700;
}

.step-card p {
  color: var(--text-muted);
}

/* Search Filter Strip — compact single row */
.search-filter-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  padding: 0.65rem 0;
}

.search-page-title {
  font-size: 1.1rem;
  font-weight: 800;
  white-space: nowrap;
}

.search-filter-input {
  width: 120px !important;
  flex: 0 0 auto;
}

.search-filter-price {
  width: 75px !important;
  flex: 0 0 auto;
}

.search-filter-sort {
  width: auto !important;
  min-width: 110px;
}

@media (max-width: 768px) {
  .search-filter-strip .d-flex {
    gap: 0.35rem !important;
  }
  .search-filter-input {
    width: 100% !important;
    flex: 1 1 calc(50% - 0.25rem);
  }
  .search-filter-price {
    width: 100% !important;
    flex: 1 1 calc(50% - 0.25rem);
  }
  .search-page-title {
    flex: 1 1 100%;
    margin-bottom: 0.25rem;
  }
}

/* Legacy search bar (other pages) */
.search-bar {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.search-bar .form-control,
.search-bar .form-select {
  border: 1px solid var(--border-color);
  background: var(--white);
  color: var(--text-dark);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  box-shadow: none;
}

.search-bar .form-control:focus,
.search-bar .form-select:focus {
  background: var(--white);
  box-shadow: none;
  border-color: var(--text-dark);
  outline: none;
}

.filter-chip {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-medium);
}

.filter-chip:hover,
.filter-chip.active {
  color: #1A1A1A;
  border-color: var(--color-primary);
  background: var(--color-primary);
}

/* Profile Page */
.profile-header {
  background: var(--bg-secondary);
  padding: 4rem 0 8rem;
}

.profile-photo-large {
  width: 200px;
  height: 200px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-card);
  background-color: var(--gray-100);
}

.profile-content {
  margin-top: -5rem;
}

.profile-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
}

/* Gallery */
.gallery-main-display {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-200);
}

.gallery-main-display img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--white);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  font-size: 1.5rem;
  padding: 0.75rem;
  cursor: pointer;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10;
  box-shadow: var(--shadow-sm);
}

.gallery-nav:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.05);
  box-shadow: var(--shadow-card);
}

.gallery-prev {
  left: 15px;
}

.gallery-next {
  right: 15px;
}

.gallery-counter {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: var(--gray-700);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

/* Gallery Thumbnail Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 0.75rem;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border: 3px solid transparent;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-card);
}

.gallery-item.active {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px var(--color-primary);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .gallery-main-display {
    aspect-ratio: 4 / 3;
  }

  .gallery-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    padding: 0.5rem;
  }

  .gallery-prev {
    left: 10px;
  }

  .gallery-next {
    right: 10px;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: 0.5rem;
  }
}

/* Dashboard */
.dashboard-stat {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
}

.dashboard-stat-icon {
  width: 56px;
  height: 56px;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.6rem;
}

.dashboard-stat-value {
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0.25rem 0;
  color: var(--color-primary);
  line-height: 1;
}

.dashboard-stat-label {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Messages */
.message-list {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
}

.message-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.message-item:hover {
  background: var(--gray-100);
}

.message-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.message-content {
  flex: 1;
}

.message-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.message-preview {
  color: var(--text-muted);
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.message-time {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.message-unread {
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 50%;
}

/* Chat */
.chat-container {
  height: calc(100vh - 200px);
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
}

.chat-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  background: var(--gray-100);
}

.chat-message {
  max-width: 70%;
  margin-bottom: 1rem;
}

.chat-message.sent {
  margin-left: auto;
}

.chat-bubble {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}

.chat-message.sent .chat-bubble {
  background: var(--color-primary);
  color: #1A1A1A;
}

.chat-input {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--gray-200);
  display: flex;
  gap: 1rem;
}

.chat-input input {
  flex: 1;
  border: 1px solid var(--border-color);
  background: var(--gray-100);
  color: var(--text-dark);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
}

.chat-input input:focus {
  outline: none;
  border-color: var(--text-dark);
  box-shadow: none;
}

/* Booking Form */
.booking-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
}

.price-summary {
  background: var(--gray-100);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.price-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  color: var(--text-medium);
}

.price-total {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  border-top: 2px solid var(--gray-200);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

/* Reviews */
.review-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.review-stars {
  color: var(--color-primary);
}

/* Admin Dashboard */
.admin-sidebar {
  background: var(--white);
  min-height: 100vh;
  padding: 2rem 0;
  border-right: 1px solid var(--border-color);
}

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  color: var(--text-medium);
  text-decoration: none;
  transition: var(--transition);
}

.admin-nav-link:hover,
.admin-nav-link.active {
  color: var(--color-primary);
  background: var(--gray-100);
}

.admin-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
}

/* Forms - Clean Airbnb Style */
.form-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.form-label .required {
  color: var(--danger);
  margin-left: 2px;
}

.form-control,
.form-select {
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  background: var(--white);
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease;
  font-size: 1rem;
  font-family: 'Nunito', sans-serif;
}

.form-control:hover,
.form-select:hover {
  border-color: var(--border-soft);
}

.form-control:focus,
.form-select:focus {
  background: var(--white);
  box-shadow: none;
  border-color: var(--text-dark);
  outline: none;
}

.form-control::placeholder {
  color: var(--text-muted);
  font-weight: 400;
}

/* Input with icon */
.input-group-text {
  background: var(--gray-100);
  border: 1px solid var(--border-color);
  border-right: none;
  color: var(--text-muted);
  padding: 0.85rem 1rem;
}

.input-group .form-control {
  border-left: none;
}

.input-group:focus-within .input-group-text {
  border-color: var(--text-dark);
  color: var(--text-dark);
}

/* Floating labels */
.form-floating > .form-control,
.form-floating > .form-select {
  padding: 1.5rem 1rem 0.5rem;
  height: auto;
}

.form-floating > label {
  padding: 1rem;
  color: var(--text-muted);
}

/* Checkbox & Radio */
.form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--border-soft);
  background-color: var(--white);
  transition: all 0.2s ease;
  cursor: pointer;
}

.form-check-input:hover {
  border-color: var(--text-dark);
}

.form-check-input:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.form-check-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(240, 193, 75, 0.3);
}

.form-check-label {
  cursor: pointer;
  padding-left: 0.25rem;
  color: var(--text-medium);
}

/* Switch toggle */
.form-switch .form-check-input {
  width: 2.5rem;
  height: 1.35rem;
  border-radius: 1rem;
}

.form-switch .form-check-input:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

/* Textarea */
textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Input sizing */
.form-control-lg {
  padding: 1rem 1.25rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.form-control-sm {
  padding: 0.5rem 0.85rem;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

/* Form helper text */
.form-text {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 0.35rem;
}

/* Validation states */
.form-control.is-valid {
  border-color: var(--success);
}

.form-control.is-valid:focus {
  box-shadow: 0 0 0 3px rgba(0, 138, 5, 0.15);
}

.form-control.is-invalid {
  border-color: var(--danger);
}

.form-control.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(193, 53, 21, 0.15);
}

.invalid-feedback {
  color: var(--danger);
  font-size: 0.8rem;
  margin-top: 0.35rem;
}

.valid-feedback {
  color: var(--success);
  font-size: 0.8rem;
  margin-top: 0.35rem;
}

/* Alerts */
.alert {
  border: none;
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
}

.alert-success {
  background: #E8F5E9;
  color: #2E7D32;
}

.alert-danger {
  background: #FFEBEE;
  color: #C62828;
}

.alert-info {
  background: #E3F2FD;
  color: #1565C0;
}

.alert-warning {
  background: #FFF3E0;
  color: #E65100;
}

/* Badges */
.badge {
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.75rem;
}

.badge-pending {
  background: #FFF3E0;
  color: #E65100;
}

.badge-accepted {
  background: #E3F2FD;
  color: #1565C0;
}

.badge-completed {
  background: #E8F5E9;
  color: #2E7D32;
}

.badge-cancelled {
  background: #FFEBEE;
  color: #C62828;
}

.badge-rejected {
  background: var(--gray-100);
  color: var(--gray-600);
}

/* Footer - Light Airbnb Style */
.footer {
  background: var(--bg-secondary);
  color: var(--text-medium);
  padding: 3rem 0 2rem;
  text-align: center;
  border-top: 1px solid var(--border-color);
}

.footer h5 {
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-medium);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.9rem;
  font-weight: 400;
}

.footer-links a:hover {
  color: var(--text-dark);
  text-decoration: underline;
}

.footer .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--text-medium);
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer .social-icon:hover {
  color: var(--text-dark);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-left: -15px;
  margin-right: -15px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: -2rem;
  padding-bottom: 1.5rem;
}

/* Testimonials */
.testimonial-card {
  background: var(--white);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-color);
}

.testimonial-card .card-body {
  background: var(--white);
}

/* Text utilities */
.text-muted {
  color: var(--text-muted) !important;
}

/* Event Types Section — Category Pills */
.event-types-section {
  background: var(--bg-secondary);
}

.event-types-section .bi {
  color: var(--text-dark);
}

/* Rating stars */
.rating-stars {
  color: var(--text-dark);
}

.text-warning {
  color: var(--color-primary) !important;
}

/* Modal styles */
.modal-content {
  background: var(--white);
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-elevated);
}

.modal-header {
  border-bottom: 1px solid var(--gray-200);
}

.modal-footer {
  border-top: 1px solid var(--gray-200);
}

.modal-title {
  color: var(--text-dark);
}

/* Dropdown menus */
.dropdown-menu {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.12);
  padding: 0.5rem;
}

.dropdown-item {
  color: var(--text-medium);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.dropdown-item:hover {
  background: var(--gray-100);
  color: var(--text-dark);
}

/* Nav tabs */
.nav-tabs {
  border-bottom: 1px solid var(--border-color);
}

.nav-tabs .nav-link {
  color: var(--text-muted);
  border: none;
  background: transparent;
  margin-right: 0.5rem;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding-bottom: 0.75rem;
}

.nav-tabs .nav-link:hover {
  color: var(--text-dark);
  border-bottom-color: var(--border-soft);
}

.nav-tabs .nav-link.active {
  background: transparent;
  color: var(--text-dark);
  border-bottom-color: var(--text-dark);
}

/* Pagination */
.page-link {
  background: var(--white);
  border: 1px solid var(--border-color);
  color: var(--text-medium);
  margin: 0 0.25rem;
  border-radius: var(--radius-sm);
}

.page-link:hover {
  background: var(--gray-100);
  color: var(--text-dark);
  border-color: var(--border-soft);
}

.page-item.active .page-link {
  background: var(--text-dark);
  border-color: var(--text-dark);
  color: var(--white);
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
}

.breadcrumb-item a {
  color: var(--text-dark);
}

.breadcrumb-item.active {
  color: var(--text-muted);
}

/* List groups */
.list-group-item {
  background: var(--white);
  border: none;
  border-bottom: 1px solid var(--gray-200);
  color: var(--text-medium);
}

.list-group-item:hover {
  background: var(--gray-100);
}

/* Card headers */
.card-header {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  color: var(--text-dark);
}

/* Progress bars */
.progress {
  background: var(--gray-200);
  border-radius: var(--radius-sm);
}

.progress-bar {
  background: var(--color-primary);
}

/* Tables */
.table {
  color: var(--text-medium);
  border-collapse: separate;
  border-spacing: 0;
}

.table thead th {
  background: var(--gray-100);
  color: var(--text-muted);
  border: none;
  border-bottom: 1px solid var(--border-color);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.75rem 1rem;
}

.table td {
  border: none;
  border-bottom: 1px solid var(--border-color);
  padding: 0.875rem 1rem;
  vertical-align: middle;
}

.table-striped tbody tr:nth-of-type(odd) {
  background: var(--gray-50);
}

.table-hover tbody tr:hover {
  background: var(--gray-100);
}

/* Page Headers */
.page-header {
  background: var(--bg-secondary);
  padding: 3rem 0;
}

.page-header h1 {
  color: var(--text-dark);
}

.page-header p {
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 4rem 0 3.5rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .navbar-brand {
    font-size: 1.25rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .footer-links {
    gap: 0.15rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .navbar-brand img,
  .navbar-logo {
    height: 55px !important;
    max-height: 55px !important;
  }
}

/* Loading States */
.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: inherit;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--gray-200);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.fade-in-down {
  animation: fadeInDown 0.5s ease forwards;
}

.fade-in-left {
  animation: fadeInLeft 0.5s ease forwards;
}

.fade-in-right {
  animation: fadeInRight 0.5s ease forwards;
}

.scale-in {
  animation: scaleIn 0.4s ease forwards;
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

.float {
  animation: float 3s ease-in-out infinite;
}

/* Animation delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Skeleton loading */
.skeleton {
  background: linear-gradient(
    90deg,
    var(--gray-200) 25%,
    var(--gray-100) 50%,
    var(--gray-200) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

.skeleton-text {
  height: 1rem;
  margin-bottom: 0.5rem;
}

.skeleton-title {
  height: 1.5rem;
  width: 60%;
  margin-bottom: 0.75rem;
}

.skeleton-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.skeleton-image {
  aspect-ratio: 4/3;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Utilities */
.text-primary { color: var(--color-primary) !important; }
.bg-primary { background: var(--color-primary) !important; }
.bg-dark { background: var(--gray-800) !important; }
.rounded-lg { border-radius: var(--radius-lg) !important; }
.rounded-xl { border-radius: var(--radius-xl) !important; }
.shadow-elevated { box-shadow: var(--shadow-elevated) !important; }

/* Hover utilities */
.hover-lift {
  transition: box-shadow 0.25s ease;
}

.hover-lift:hover {
  box-shadow: var(--shadow-card-hover);
}

.hover-scale {
  transition: transform 0.25s ease;
}

.hover-scale:hover {
  transform: scale(1.03);
}

/* Text truncation */
.text-truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.text-truncate-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Dividers */
.divider {
  height: 1px;
  background: var(--border-color);
  margin: 2rem 0;
}

/* Testimonial Section — Light background */
.section-dark {
  background: var(--bg-secondary);
  color: var(--text-dark);
  padding: 5rem 0;
}

.section-dark h2,
.section-dark h3,
.section-dark .section-title {
  color: var(--text-dark);
}

.section-dark .text-muted {
  color: var(--text-muted) !important;
}

.section-dark .card {
  background: var(--white);
  border: 1px solid var(--border-color);
}

.section-dark .card:hover {
  box-shadow: var(--shadow-card);
}

/* Hero Inline Stats */
.hero-inline-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-stat strong {
  color: var(--text-dark);
  font-size: 1.1rem;
}

.hero-stat .bi-star-fill {
  font-size: 0.65rem;
  color: var(--text-dark);
  vertical-align: middle;
  margin-left: 1px;
}

.hero-stat-divider {
  width: 1px;
  height: 16px;
  background: var(--border-color);
}

.hero-compact {
  padding: 0;
}

.hero-compact .hero-content {
  padding: 2rem 1rem 1.5rem;
}

.hero-compact h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.hero-compact p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 576px) {
  .hero-inline-stats {
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
  }
  .hero-stat-divider {
    display: none;
  }
  .hero-compact .hero-content {
    padding: 1.5rem 1rem 1rem;
  }
}

/* Event Type Strip — Category Pills with underline indicator */
.logo-strip {
  padding: 1.5rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
}

.logo-strip-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 1rem;
}

.logo-strip-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.logo-strip-row::-webkit-scrollbar {
  display: none;
}

.logo-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  transition: color 0.2s ease;
  white-space: nowrap;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid transparent;
  flex-shrink: 0;
}

.logo-strip-item i {
  font-size: 1.5rem;
  color: inherit;
}

.logo-strip-item:hover {
  color: var(--text-dark);
  border-bottom-color: var(--text-dark);
}

/* Verification Badges on Cards */
.card-badges {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.65rem;
  font-weight: 600;
}

.badge-verified.badge-id {
  background: #E3F2FD;
  color: #1565C0;
}

.badge-verified.badge-bg-check {
  background: #E8F5E9;
  color: #2E7D32;
}

.badge-verified.badge-premium {
  background: var(--gray-100);
  color: var(--text-dark);
}

.badge-verified i {
  font-size: 0.7rem;
}

/* Availability Indicator */
.availability-dot {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.availability-dot::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.availability-dot.available::before {
  background: var(--success);
  box-shadow: 0 0 0 2px rgba(0, 138, 5, 0.2);
}

.availability-dot.limited::before {
  background: var(--warning);
  box-shadow: 0 0 0 2px rgba(224, 121, 18, 0.2);
}

.availability-dot.available {
  color: #2E7D32;
}

.availability-dot.limited {
  color: #E65100;
}

/* Events completed counter on cards */
.companion-card .companion-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
}

.companion-card .events-count {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.companion-card .events-count i {
  color: var(--color-primary);
  margin-right: 0.15rem;
}

/* Selection styling */
::selection {
  background: var(--color-primary);
  color: var(--white);
}

::-moz-selection {
  background: var(--color-primary);
  color: var(--white);
}

/* Scroll-triggered animations */
.animate-hidden {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-visible {
  opacity: 1;
  transform: translateY(0);
}

/* General button active state */
.btn:active:not(:disabled) {
  transform: scale(0.98);
}

/* Ripple effect */
.btn-ripple {
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: ripple-animation 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Lazy loaded images */
img[data-src] {
  opacity: 0;
  transition: opacity 0.4s ease;
}

img[data-src].loaded {
  opacity: 1;
}

/* Tooltip custom styling */
.tooltip-inner {
  background: var(--gray-800);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
}

.tooltip .tooltip-arrow::before {
  border-top-color: var(--gray-800);
}

/* Toast/notification styling */
.toast {
  background: var(--white);
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-elevated);
}

.toast-header {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

/* Empty state styling */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
}

.empty-state-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--text-muted);
}

.empty-state h4 {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.empty-state p {
  color: var(--text-muted);
  max-width: 400px;
  margin: 0 auto 1.5rem;
}

/* Status indicator dot */
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 0.5rem;
}

.status-dot.online { background: var(--success); }
.status-dot.offline { background: var(--gray-400); }
.status-dot.busy { background: var(--warning); }

/* Avatar with status */
.avatar-wrapper {
  position: relative;
  display: inline-block;
}

.avatar-wrapper .status-indicator {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--white);
}

/* Price tag styling */
.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-tag .currency {
  font-size: 0.75em;
  color: var(--text-muted);
}

.price-tag .amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.price-tag .period {
  font-size: 0.8em;
  color: var(--text-muted);
}

/* Feature list with checkmarks */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: var(--text-medium);
}

.feature-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* Skeleton loader for async content */
.skeleton-card { height: 200px; border-radius: var(--radius-md); }
.skeleton-btn { width: 120px; height: 38px; border-radius: var(--radius-sm); }

/* Auth pages */
.auth-card {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-elevated);
  border: none;
  overflow: hidden;
}

.auth-card .card-body {
  padding: 3rem;
}

.auth-card h2 {
  font-weight: 700;
}

.auth-card .btn-outline-dark {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.auth-card .btn-outline-dark:hover {
  background: var(--gray-100);
  border-color: var(--text-dark);
}

/* Skip to content link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 10000;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: #1A1A1A;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
  top: 0;
}

/* Unsaved changes indicator */
.form-unsaved .btn-save::after {
  content: ' (unsaved)';
  font-style: italic;
  opacity: 0.8;
}

/* Print stylesheet */
@media print {
  .navbar, .footer, .cookie-consent, .btn-fab, .alert { display: none !important; }
  body { background: white !important; color: black !important; }
  .card { box-shadow: none !important; border: 1px solid #ddd !important; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; }
}
