/* ============================================
   SparkleClean — Premium Dark Glassmorphism
   Design System & Component Library
   ============================================ */

/* ------------------------------------------
   1. CSS Custom Properties
   ------------------------------------------ */
:root {
  --primary: hsl(168, 80%, 42%);
  --primary-light: hsl(168, 80%, 55%);
  --primary-dark: hsl(168, 80%, 32%);
  --primary-glow: hsla(168, 80%, 42%, 0.3);
  --secondary: hsl(258, 70%, 58%);
  --secondary-glow: hsla(258, 70%, 58%, 0.3);
  --accent: hsl(45, 95%, 58%);
  --success: hsl(145, 65%, 42%);
  --warning: hsl(35, 95%, 55%);
  --danger: hsl(0, 75%, 55%);
  --bg-primary: hsl(225, 25%, 8%);
  --bg-secondary: hsl(225, 25%, 12%);
  --bg-card: hsla(225, 25%, 15%, 0.6);
  --bg-card-hover: hsla(225, 25%, 18%, 0.7);
  --bg-input: hsla(225, 25%, 15%, 0.8);
  --text-primary: hsl(0, 0%, 95%);
  --text-secondary: hsl(225, 15%, 65%);
  --text-muted: hsl(225, 10%, 45%);
  --border: hsla(225, 20%, 30%, 0.5);
  --border-light: hsla(225, 20%, 35%, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50%;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 20px var(--primary-glow);
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: var(--primary-light);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--primary);
}

img {
  max-width: 100%;
  display: block;
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsla(225, 20%, 40%, 0.6);
}

::selection {
  background: hsla(168, 80%, 42%, 0.3);
  color: white;
}

/* ------------------------------------------
   3. Typography
   ------------------------------------------ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.25rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-secondary {
  color: var(--text-secondary);
}

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

.text-success {
  color: var(--success);
}

.text-danger {
  color: var(--danger);
}

/* ------------------------------------------
   4. Layout Utilities
   ------------------------------------------ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-top: 0.75rem;
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-1 {
  gap: 0.5rem;
}

.gap-2 {
  gap: 1rem;
}

.gap-3 {
  gap: 1.5rem;
}

.gap-4 {
  gap: 2rem;
}

.grid {
  display: grid;
}

.hidden {
  display: none !important;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

/* ------------------------------------------
   5. Buttons
   ------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-light);
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

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

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: hsla(168, 80%, 42%, 0.1);
}

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

.btn-danger:hover {
  opacity: 0.9;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

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

.btn-icon {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.5rem;
  font-size: 1.2rem;
  transition: color var(--transition-base);
}

.btn-icon:hover {
  color: var(--text-primary);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ------------------------------------------
   6. Navbar
   ------------------------------------------ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
  background: hsla(225, 25%, 8%, 0.85);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.navbar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a,
.nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  transition: color var(--transition-base);
  text-decoration: none;
}

.nav-links a:hover,
.nav-link:hover {
  color: var(--text-primary);
}

.nav-auth {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.nav-user-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-base);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ------------------------------------------
   7. Mobile Menu
   ------------------------------------------ */
.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateY(-120%);
  transition: transform var(--transition-base);
  z-index: 999;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu a {
  padding: 0.75rem 1rem;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.mobile-menu a:hover {
  background: var(--bg-card);
  color: var(--text-primary);
}

/* ------------------------------------------
   8. Hero Section
   ------------------------------------------ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
  background:
    radial-gradient(ellipse at 20% 50%, var(--primary-glow) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, var(--secondary-glow) 0%, transparent 50%),
    var(--bg-primary);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--primary);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: var(--secondary);
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: var(--accent);
  bottom: 20%;
  left: 50%;
  animation-delay: 4s;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.hero-search {
  display: flex;
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 0.5rem;
  gap: 0.5rem;
}

.search-input-wrapper {
  flex: 1;
  position: relative;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  pointer-events: none;
}

.search-input {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-primary);
  padding: 0.875rem 1rem 0.875rem 3rem;
  font-size: 1rem;
  outline: none;
}

.search-btn {
  border-radius: var(--radius-lg) !important;
  white-space: nowrap;
}

.city-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  max-height: 300px;
  overflow-y: auto;
  z-index: 100;
  display: none;
  box-shadow: var(--shadow-lg);
}

.city-dropdown.active {
  display: block;
}

.city-dropdown-item {
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background var(--transition-fast);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.city-dropdown-item:hover {
  background: var(--bg-card);
}

.city-dropdown-item .city-country {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ------------------------------------------
   9. Services Section
   ------------------------------------------ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-base);
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.service-price {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
}

.service-duration {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ------------------------------------------
   10. How It Works
   ------------------------------------------ */
.steps-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.step-item {
  text-align: center;
  flex: 1;
  padding: 1.5rem;
}

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

.step-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.step-description {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.step-connector {
  width: 60px;
  height: 2px;
  background: var(--border);
  margin-top: 30px;
  flex-shrink: 0;
}

/* ------------------------------------------
   11. Cleaners Section
   ------------------------------------------ */
.cleaners-scroll {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding: 1rem 0.5rem;
  scroll-snap-type: x mandatory;
}

.cleaners-scroll::-webkit-scrollbar {
  height: 6px;
}

.cleaner-card {
  min-width: 300px;
  max-width: 320px;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  scroll-snap-align: start;
  transition: all var(--transition-base);
}

.cleaner-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.cleaner-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 3px solid var(--primary-glow);
  object-fit: cover;
}

.cleaner-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  text-align: center;
}

.cleaner-city {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
}

.cleaner-rating {
  color: var(--accent);
  text-align: center;
  margin: 0.5rem 0;
}

.cleaner-rating span {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.cleaner-bio {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin: 0.75rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cleaner-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.75rem 0;
}

.specialty-tag {
  padding: 0.2rem 0.6rem;
  background: hsla(168, 80%, 42%, 0.15);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
}

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

.cleaner-price {
  font-weight: 700;
  color: var(--text-primary);
}

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

/* ------------------------------------------
   12. Cities Grid
   ------------------------------------------ */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.city-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 200px;
  cursor: pointer;
  transition: transform var(--transition-base);
}

.city-card:hover {
  transform: scale(1.02);
}

.city-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.city-card:hover img {
  transform: scale(1.1);
}

.city-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}

.city-card-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.city-card-country {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* ------------------------------------------
   13. Testimonials
   ------------------------------------------ */
.testimonials-carousel {
  position: relative;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 2.5rem;
  text-align: center;
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 3px solid var(--primary-glow);
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.testimonial-name {
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-city {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.carousel-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* ------------------------------------------
   14. Footer
   ------------------------------------------ */
#footer {
  background: var(--bg-secondary);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: var(--text-secondary);
  transition: color var(--transition-base);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ------------------------------------------
   15. Auth Page
   ------------------------------------------ */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 1.5rem 2rem;
}

.auth-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  max-width: 480px;
  width: 100%;
  padding: 2.5rem;
}

.auth-title {
  text-align: center;
  margin-bottom: 0.5rem;
}

.auth-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--text-secondary);
}

.auth-footer a {
  color: var(--primary);
  font-weight: 500;
}

.role-selector {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.role-option {
  flex: 1;
  padding: 1rem;
  background: var(--bg-input);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
}

.role-option:hover {
  border-color: var(--text-muted);
}

.role-option.active {
  border-color: var(--primary);
  background: hsla(168, 80%, 42%, 0.1);
}

.role-option .role-icon {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.role-option .role-label {
  font-weight: 600;
  font-size: 0.85rem;
}

/* ------------------------------------------
   16. Form Elements
   ------------------------------------------ */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all var(--transition-base);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239ca3af' d='M6 8.825c-.2 0-.4-.075-.55-.225l-3-3a.776.776 0 0 1 0-1.1.776.776 0 0 1 1.1 0L6 6.95l2.45-2.45a.776.776 0 0 1 1.1 0 .776.776 0 0 1 0 1.1l-3 3c-.15.15-.35.225-.55.225Z'/%3E%3C/svg%3E");
  background-position: right 1rem center;
  background-repeat: no-repeat;
  background-size: 12px;
  padding-right: 2.5rem;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row .form-group {
  flex: 1;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  font-size: 0.85rem;
}

.checkbox-label:hover {
  border-color: var(--text-muted);
}

.checkbox-label.checked,
.checkbox-label:has(input:checked) {
  border-color: var(--primary);
  background: hsla(168, 80%, 42%, 0.1);
}

.checkbox-label input[type="checkbox"] {
  accent-color: var(--primary);
}

/* ------------------------------------------
   17. Dashboard Layout
   ------------------------------------------ */
.dashboard-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  padding-top: 70px;
}

.sidebar {
  background: var(--bg-secondary);
  padding: 1.5rem;
  border-right: 1px solid var(--border-light);
  position: sticky;
  top: 70px;
  height: calc(100vh - 70px);
  overflow-y: auto;
}

.sidebar-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.sidebar-user img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.sidebar-user-name {
  font-weight: 600;
}

.sidebar-user-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: capitalize;
}

.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: left;
  width: 100%;
}

.sidebar-item:hover {
  background: var(--bg-card);
  color: var(--text-primary);
}

.sidebar-item.active {
  background: var(--bg-card);
  color: var(--primary);
  font-weight: 600;
}

.dashboard-content {
  padding: 2rem;
  overflow-y: auto;
  min-height: calc(100vh - 70px);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.dashboard-header h2 {
  font-size: 1.75rem;
}

/* ------------------------------------------
   18. Stats Grid
   ------------------------------------------ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.stat-card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.stat-card .stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.stat-card .stat-label {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

/* ------------------------------------------
   19. Data Tables
   ------------------------------------------ */
.table-container {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th {
  padding: 1rem;
  text-align: left;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  background: var(--bg-secondary);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}

.data-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
  white-space: nowrap;
}

.data-table tr:hover td {
  background: var(--bg-card-hover);
}

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

/* ------------------------------------------
   20. Booking Card
   ------------------------------------------ */
.booking-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: border-color var(--transition-base);
}

.booking-card:hover {
  border-color: var(--border);
}

.booking-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.booking-card-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.booking-detail-item label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.2rem;
}

.booking-card-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

/* ------------------------------------------
   21. Filter Bar
   ------------------------------------------ */
.filter-bar {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.filter-bar .form-select,
.filter-bar .form-input {
  width: auto;
  min-width: 150px;
}

/* ------------------------------------------
   22. Badges
   ------------------------------------------ */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-success {
  background: hsla(145, 65%, 42%, 0.15);
  color: var(--success);
}

.badge-warning {
  background: hsla(35, 95%, 55%, 0.15);
  color: var(--warning);
}

.badge-danger {
  background: hsla(0, 75%, 55%, 0.15);
  color: var(--danger);
}

.badge-info {
  background: hsla(168, 80%, 42%, 0.15);
  color: var(--primary);
}

/* ------------------------------------------
   23. Modal
   ------------------------------------------ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
  padding: 1rem;
}

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

.modal {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  max-width: 560px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.modal-header h3 {
  font-size: 1.5rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

/* ------------------------------------------
   24. Step Indicator
   ------------------------------------------ */
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
}

.step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-input);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition-base);
}

.step-dot.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.step-dot.completed {
  background: var(--success);
  border-color: var(--success);
  color: white;
}

.step-line {
  width: 40px;
  height: 2px;
  background: var(--border);
}

/* ------------------------------------------
   25. Booking Steps
   ------------------------------------------ */
.booking-step {
  display: none;
}

.booking-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.booking-step h4 {
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

/* ------------------------------------------
   26. Date Grid
   ------------------------------------------ */
.date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}

.date-cell {
  padding: 0.75rem 0.5rem;
  text-align: center;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 0.9rem;
  border: 1px solid transparent;
}

.date-cell:hover {
  background: var(--bg-card);
}

.date-cell.selected {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.date-cell.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.date-cell.today {
  border-color: var(--primary);
}

.date-header {
  font-weight: 600;
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 0.5rem;
}

/* ------------------------------------------
   27. Time Slots
   ------------------------------------------ */
.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.time-slot {
  padding: 0.75rem;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 0.9rem;
}

.time-slot:hover {
  border-color: var(--primary);
  background: hsla(168, 80%, 42%, 0.05);
}

.time-slot.selected {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ------------------------------------------
   28. Booking Summary
   ------------------------------------------ */
.booking-summary {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.summary-row:not(:last-child) {
  border-bottom: 1px solid var(--border-light);
}

.summary-row .summary-label {
  color: var(--text-secondary);
}

.summary-row .summary-value {
  font-weight: 600;
}

.summary-total {
  font-size: 1.1rem;
  color: var(--primary);
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 2px solid var(--primary);
}

/* ------------------------------------------
   29. Confirmation Animation
   ------------------------------------------ */
.confirmation-animation {
  text-align: center;
  padding: 2rem;
}

.checkmark-circle {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
}

.checkmark {
  width: 100px;
  height: 100px;
}

.checkmark-circle-bg {
  stroke: var(--success);
  stroke-width: 2;
  animation: checkmark-circle 0.6s ease-in-out forwards;
}

.checkmark-check {
  stroke: var(--success);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: checkmark-draw 0.3s 0.6s ease forwards;
}

/* ------------------------------------------
   30. Notification Toast
   ------------------------------------------ */
.notification {
  position: fixed;
  top: 90px;
  right: 2rem;
  z-index: 3000;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  transform: translateX(calc(100% + 3rem));
  transition: transform var(--transition-base);
  min-width: 300px;
  max-width: 450px;
  box-shadow: var(--shadow-lg);
}

.notification.show {
  transform: translateX(0);
}

.notification.success {
  background: hsla(145, 65%, 42%, 0.95);
  color: white;
}

.notification.error {
  background: hsla(0, 75%, 55%, 0.95);
  color: white;
}

.notification.info {
  background: hsla(168, 80%, 42%, 0.95);
  color: white;
}

/* ------------------------------------------
   31. Animations
   ------------------------------------------ */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

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

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

@keyframes checkmark-circle {
  0% {
    stroke-dasharray: 0 157;
  }
  100% {
    stroke-dasharray: 157 157;
  }
}

@keyframes checkmark-draw {
  to {
    stroke-dashoffset: 0;
  }
}

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

.slide-up {
  animation: slideUp 0.5s ease both;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

/* ------------------------------------------
   32. Page Transitions
   ------------------------------------------ */
.page {
  display: none;
}

.page.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* ------------------------------------------
   33. Sidebar Toggle (Mobile)
   ------------------------------------------ */
.sidebar-toggle {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  display: none;
}

/* ------------------------------------------
   34. Empty State
   ------------------------------------------ */
.empty-state {
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
}

.empty-state-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* ------------------------------------------
   35. Cleaner Profile Header
   ------------------------------------------ */
.cleaner-profile-header {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  margin-bottom: 2rem;
}

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

/* ------------------------------------------
   36. Earnings Chart
   ------------------------------------------ */
.earnings-chart {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 200px;
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
}

.chart-bar {
  width: 100%;
  background: var(--primary);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  transition: background var(--transition-base);
  min-height: 10px;
}

.chart-bar:hover {
  background: var(--primary-light);
}

/* ------------------------------------------
   37. Responsive — 1200px
   ------------------------------------------ */
@media (max-width: 1200px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ------------------------------------------
   38. Responsive — 768px
   ------------------------------------------ */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-search {
    flex-direction: column;
    border-radius: var(--radius-lg);
  }

  .search-btn {
    border-radius: var(--radius-md) !important;
    width: 100%;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-container {
    flex-direction: column;
    align-items: center;
  }

  .step-connector {
    width: 2px;
    height: 40px;
    margin: 0;
  }

  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: fixed;
    left: -280px;
    top: 70px;
    bottom: 0;
    z-index: 998;
    width: 260px;
    transition: left var(--transition-base);
  }

  .sidebar.active {
    left: 0;
  }

  .dashboard-content {
    padding: 1.5rem;
  }

  .form-row {
    flex-direction: column;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-bar {
    flex-direction: column;
  }

  .filter-bar .form-select,
  .filter-bar .form-input {
    width: 100%;
  }

  .sidebar-toggle {
    display: flex;
  }
}

/* ------------------------------------------
   39. Responsive — 480px
   ------------------------------------------ */
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .auth-card {
    padding: 1.5rem;
  }

  .modal {
    padding: 1.5rem;
  }

  .time-slots {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 3rem 0;
  }
}

/* ------------------------------------------
   Additional Dashboard Styles
   ------------------------------------------ */
.cleaners-browse-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cleaner-profile-header {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  margin-bottom: 2rem;
}

.chart-bar {
  width: 100%;
  background: var(--primary);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  transition: var(--transition-base);
  min-height: 10px;
}

.chart-bar:hover {
  background: var(--primary-light);
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

@media (max-width: 768px) {
  .cleaner-profile-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ------------------------------------------
   Light Mode Theme
   ------------------------------------------ */
body.light-mode {
  --bg-primary: hsl(220, 20%, 97%);
  --bg-secondary: hsl(220, 20%, 93%);
  --bg-card: hsla(220, 20%, 100%, 0.8);
  --bg-card-hover: hsla(220, 20%, 96%, 0.9);
  --bg-input: hsla(220, 20%, 98%, 0.9);
  --text-primary: hsl(225, 25%, 12%);
  --text-secondary: hsl(225, 15%, 40%);
  --text-muted: hsl(225, 10%, 55%);
  --border: hsla(225, 20%, 80%, 0.5);
  --border-light: hsla(225, 20%, 85%, 0.4);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
}
body.light-mode #navbar {
  background: hsla(220, 20%, 97%, 0.9);
}
body.light-mode .mobile-menu {
  background: var(--bg-secondary);
}
body.light-mode #hero {
  background: radial-gradient(ellipse at 20% 50%, hsla(168,80%,42%,0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 50%, hsla(258,70%,58%,0.08) 0%, transparent 50%),
              var(--bg-primary);
}
body.light-mode .shape { opacity: 0.05; }
body.light-mode .nav-logo {
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.light-mode .mobile-menu-btn span {
  background: var(--text-primary);
}
body.light-mode ::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
body.light-mode ::-webkit-scrollbar-thumb {
  background: hsla(225, 20%, 75%, 0.5);
}
body.light-mode .city-dropdown {
  background: white;
  box-shadow: var(--shadow-lg);
}
body.light-mode .modal {
  background: white;
}
body.light-mode .sidebar {
  background: var(--bg-secondary);
}
body.light-mode .data-table th {
  background: var(--bg-secondary);
}
body.light-mode .service-card {
  background: var(--bg-card);
  border-color: var(--border-light);
}
body.light-mode .booking-card {
  background: var(--bg-card);
}
body.light-mode .stat-card {
  background: var(--bg-card);
}
body.light-mode .auth-card,
body.light-mode #auth-card {
  background: white;
  border-color: var(--border-light);
}
body.light-mode .footer-section,
body.light-mode #footer {
  background: var(--bg-secondary);
}
body.light-mode .lang-dropdown {
  background: white;
}
body.light-mode .notification {
  background: white;
  color: var(--text-primary);
}

/* ------------------------------------------
   Theme Toggle
   ------------------------------------------ */
.theme-toggle {
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition-base);
  padding: 0;
  color: var(--text-primary);
  flex-shrink: 0;
}
.theme-toggle:hover {
  border-color: var(--primary);
  background: var(--bg-card-hover);
}

/* ------------------------------------------
   Language Selector
   ------------------------------------------ */
.lang-selector-wrapper {
  position: relative;
}
.lang-selector-btn {
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.4rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-primary);
  transition: var(--transition-base);
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}
.lang-selector-btn:hover {
  border-color: var(--primary);
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  min-width: 180px;
  max-height: 350px;
  overflow-y: auto;
  z-index: 1001;
  display: none;
  box-shadow: var(--shadow-lg);
}
.lang-dropdown.active {
  display: block;
}
.lang-dropdown-item {
  padding: 0.6rem 1rem;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-primary);
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: 'Inter', sans-serif;
}
.lang-dropdown-item:hover {
  background: var(--bg-card);
}
.lang-dropdown-item.active {
  color: var(--primary);
  font-weight: 600;
}
.nav-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ------------------------------------------
   RTL Support
   ------------------------------------------ */
body.rtl {
  direction: rtl;
  text-align: right;
}
body.rtl .navbar-content {
  flex-direction: row-reverse;
}
body.rtl .nav-links {
  flex-direction: row-reverse;
}
body.rtl .nav-auth {
  flex-direction: row-reverse;
}
body.rtl .nav-controls {
  flex-direction: row-reverse;
}
body.rtl .sidebar {
  border-right: none;
  border-left: 1px solid var(--border-light);
}
body.rtl .sidebar-item {
  text-align: right;
  flex-direction: row-reverse;
}
body.rtl .dashboard-layout {
  direction: rtl;
}
body.rtl .booking-card-header {
  flex-direction: row-reverse;
}
body.rtl .booking-card-actions {
  flex-direction: row-reverse;
}
body.rtl .search-icon {
  left: auto;
  right: 1rem;
}
body.rtl .search-input {
  padding: 0.875rem 3rem 0.875rem 1rem;
}
body.rtl .form-select {
  background-position: left 1rem center;
  padding-left: 2.5rem;
  padding-right: 1rem;
}
body.rtl .footer-grid {
  direction: rtl;
}
body.rtl .steps-container {
  flex-direction: row-reverse;
}
body.rtl .filter-bar {
  flex-direction: row-reverse;
}
body.rtl .lang-dropdown {
  right: auto;
  left: 0;
}
body.rtl .step-indicator {
  flex-direction: row-reverse;
}
body.rtl .summary-row {
  flex-direction: row-reverse;
}
body.rtl .notification {
  right: auto;
  left: 2rem;
  transform: translateX(calc(-100% - 3rem));
}
body.rtl .notification.show {
  transform: translateX(0);
}
body.rtl .hero-search {
  flex-direction: row-reverse;
}
body.rtl .flex.items-center.gap-1 {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  body.rtl .sidebar {
    left: auto;
    right: -280px;
  }
  body.rtl .sidebar.active {
    right: 0;
  }
  body.rtl .steps-container {
    flex-direction: column;
  }
}

/* ------------------------------------------
   Hours Selector
   ------------------------------------------ */
.hours-selector {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hours-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-input);
  color: var(--text-primary);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  font-family: 'Inter', sans-serif;
  line-height: 1;
}
.hours-btn:hover {
  border-color: var(--primary);
  background: hsla(168, 80%, 42%, 0.1);
  color: var(--primary);
}
.hours-display {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  min-width: 60px;
  text-align: center;
  color: var(--primary);
}
