/* ============================================
   KINCREW — DESIGN SYSTEM & STYLES
   Light Theme - High Conversion Focus
   ============================================ */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
  /* Brand Colors (Teal inspired by Urban Company) */
  --primary: #0e7c86;
  --primary-hover: #0b6470;
  --primary-light: #e0f2f3;
  
  /* Neutral Palette */
  --surface: #ffffff;
  --surface-alt: #f8fafc;
  --surface-border: #e2e8f0;
  
  --text-dark: #0f1b2d;
  --text-body: #475569;
  --text-muted: #94a3b8;
  
  /* Accents */
  --accent-yellow: #f59e0b;
  --accent-green: #10b981;
  --accent-blue: #3b82f6;

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Radii */
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition: 0.3s ease;
}

/* ---------- RESET & BASE ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--surface);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.2;
}

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

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

.text-primary { color: var(--primary) !important; }
.bg-light { background-color: var(--surface-alt) !important; }
.mt-4 { margin-top: 1.5rem !important; }
.text-center { text-align: center !important; }

/* ---------- LAYOUT UTILITIES ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 80px 0;
}

.section-header {
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-body);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

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

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: #fff;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
  display: flex;
}

.w-100 {
  width: 100%;
}

/* ---------- HEADER & NAV ---------- */
.header {
  background-color: var(--surface);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--surface-border);
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
}

.logo i {
  font-size: 1.6rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 24px;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.95rem;
}

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

.nav-highlight {
  color: var(--primary) !important;
  font-weight: 600 !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.help-link {
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}

.help-link:hover {
  color: var(--primary);
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

.mobile-nav {
  display: none;
  background: var(--surface);
  border-top: 1px solid var(--surface-border);
  padding: 16px 24px;
  position: absolute;
  top: 76px;
  left: 0;
  right: 0;
  box-shadow: var(--shadow-md);
}

.mobile-nav.active {
  display: block;
}

.mobile-nav-links {
  list-style: none;
}

.mobile-nav-links li {
  margin-bottom: 16px;
}

.mobile-nav-links a {
  display: block;
  font-weight: 500;
  color: var(--text-dark);
  font-size: 1rem;
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  margin-top: 76px;
  display: flex;
  align-items: center;
  background-color: var(--surface-alt);
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 50%, rgba(255,255,255,0.1) 100%);
}

.hero-container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.badge {
  display: inline-block;
  background-color: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #0b1f2f; /* Darker navy for contrast */
}

.hero-content p {
  font-size: 1.15rem;
  color: #334155;
  margin-bottom: 32px;
  max-width: 500px;
}

.trust-indicators {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #0b1f2f;
}

.trust-item i {
  color: var(--accent-yellow);
  font-size: 1.1rem;
}

/* Booking Form Card */
.hero-form-card {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 420px;
  flex-shrink: 0;
  border: 1px solid var(--surface-border);
}

.hero-form-card h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  text-align: center;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group label i {
  color: var(--primary);
  margin-right: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
  background-color: var(--surface-alt);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(14, 124, 134, 0.1);
}

/* ---------- CATEGORIES ---------- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.category-card {
  background: #fff;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.category-card .icon-wrap {
  width: 72px;
  height: 72px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.category-card:hover .icon-wrap {
  background-color: var(--primary);
  color: #fff;
}

.category-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
}

/* ---------- HOW IT WORKS ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.step-card {
  background: #fff;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--surface-border);
  position: relative;
  z-index: 2;
}

.step-icon {
  width: 64px;
  height: 64px;
  background-color: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 0 8px var(--primary-light);
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

/* Connectors for steps (desktop only) */
@media (min-width: 769px) {
  .steps-grid::before {
    content: '';
    position: absolute;
    top: 72px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: dashed 2px var(--surface-border);
    z-index: 1;
  }
}

/* ---------- PROMISE SECTION ---------- */
.promise-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.promise-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.promise-content > p {
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.features-list {
  list-style: none;
}

.features-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.features-list i {
  font-size: 1.5rem;
  margin-top: 4px;
}

.features-list strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

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

.review-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow-sm);
}

.review-card .stars {
  color: var(--accent-yellow);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.review-card p {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 24px;
}

.author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author .avatar {
  width: 48px;
  height: 48px;
  background-color: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
}

.author .bg-alt { background-color: var(--accent-blue); }
.author .bg-alt2 { background-color: var(--accent-yellow); }

.author h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

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

/* ---------- FOOTER ---------- */
.footer {
  background-color: #0b1f2f; /* Very dark blue from references */
  color: #cbd5e1;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 20px;
}

.footer-brand p {
  margin-bottom: 24px;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
}

.footer h4 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

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

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact i {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

/* ---------- FLOATING ACTION BUTTON ---------- */
.fab-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.fab-whatsapp {
  background-color: #25d366;
}

.fab:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-xl);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    padding-top: 40px;
  }

  .hero-bg-image::after {
    background: rgba(255,255,255,0.9);
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

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

  .promise-container {
    grid-template-columns: 1fr;
  }

  .promise-image {
    order: -1;
  }

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

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

  .mobile-toggle {
    display: block;
  }

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

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-form-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

/* ============================================
   NEW MVP PAGES — Auth, Admin, Booking, etc.
   ============================================ */

/* ---------- ALERTS / FLASH MESSAGES ---------- */
.alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 16px auto;
  max-width: 1200px;
  position: relative;
  animation: slideDown 0.3s ease;
}

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

.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.alert-warning { background: #fef3c7; color: #92400e; border: 1px solid #fde68a; }
.alert-info { background: #dbeafe; color: #1e40af; border: 1px solid #bfdbfe; }

.alert-close {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: inherit;
  opacity: 0.6;
  line-height: 1;
}

.alert-close:hover { opacity: 1; }

/* ---------- PAGE HERO (Inner pages) ---------- */
.page-hero {
  background: var(--surface-alt);
  padding: 48px 0 40px;
  margin-top: 76px;
  border-bottom: 1px solid var(--surface-border);
}

.page-hero h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--text-body);
}

.admin-hero {
  background: linear-gradient(135deg, #0b1f2f, #1a365d);
}

.admin-hero h1, .admin-hero p {
  color: #fff;
}

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

.breadcrumb:hover { color: var(--primary); }

.breadcrumb-sep {
  margin: 0 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.breadcrumb-current {
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 600;
}

/* ---------- AUTH PAGES ---------- */
.auth-section {
  margin-top: 76px;
  padding: 60px 0;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  background: var(--surface-alt);
}

.auth-card {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  max-width: 480px;
  margin: 0 auto;
  border: 1px solid var(--surface-border);
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.auth-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.auth-header h1, .auth-header h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

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

.auth-footer {
  text-align: center;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--surface-border);
}

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

.auth-divider {
  color: var(--text-muted);
  margin: 16px 0;
  font-size: 0.85rem;
}

.auth-demo {
  margin-top: 20px;
  padding: 12px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 0.85rem;
  color: #92400e;
}

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

/* ---------- SERVICE DETAIL ---------- */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  background: #fff;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: var(--transition);
}

.service-row:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.service-info h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.service-info p {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 8px;
}

.service-meta {
  display: flex;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.service-meta i { margin-right: 4px; }

.service-action {
  text-align: right;
  flex-shrink: 0;
}

.service-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

/* ---------- PROFESSIONALS GRID ---------- */
.pros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}

.pro-card-v2 {
  background: #fff;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}

.pro-card-v2:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.pro-avatar-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}

.pro-avatar-circle {
  width: 64px;
  height: 64px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}

.verified-badge {
  position: absolute;
  bottom: 0;
  right: -4px;
  width: 22px;
  height: 22px;
  background: var(--accent-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  border: 2px solid #fff;
}

.pro-card-v2 h4 { font-size: 1.05rem; margin-bottom: 4px; }
.pro-city { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 12px; }

.pro-stats {
  display: flex;
  justify-content: center;
  gap: 14px;
  font-size: 0.82rem;
  color: var(--text-body);
}

.pro-stats i { margin-right: 3px; }

/* ---------- BOOKING PAGE ---------- */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: flex-start;
}

.booking-form-wrap h2 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--surface-border);
}

.summary-card {
  background: #fff;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-md);
}

.summary-card h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.summary-service {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--surface-border);
  margin-bottom: 20px;
}

.summary-service strong { display: block; font-size: 1rem; }
.summary-service span { font-size: 0.85rem; color: var(--text-muted); }

.summary-details { margin-bottom: 20px; }

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9rem;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 2px solid var(--primary);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.summary-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  color: var(--primary);
}

/* ---------- BOOKING CONFIRMATION ---------- */
.confirm-card {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  padding: 48px 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--surface-border);
}

.confirm-icon {
  font-size: 4rem;
  color: var(--accent-green);
  margin-bottom: 16px;
}

.confirm-card h1 { font-size: 2rem; margin-bottom: 8px; }
.confirm-sub { color: var(--text-muted); margin-bottom: 24px; }

.confirm-ref {
  display: inline-flex;
  flex-direction: column;
  background: var(--surface-alt);
  padding: 16px 32px;
  border-radius: var(--radius-md);
  margin-bottom: 32px;
  border: 1px dashed var(--surface-border);
}

.confirm-ref span { font-size: 0.8rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.confirm-ref strong { font-size: 1.4rem; color: var(--primary); font-family: var(--font-heading); }

.confirm-details {
  text-align: left;
  margin-bottom: 32px;
}

.confirm-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--surface-border);
}

.confirm-row i {
  margin-top: 4px;
  font-size: 1.1rem;
}

.confirm-row strong { display: block; font-size: 0.95rem; }
.confirm-row span { font-size: 0.85rem; color: var(--text-muted); }

.confirm-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-radius: var(--radius-md);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

/* ---------- DASHBOARD ---------- */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}

.dash-card {
  background: #fff;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.dash-card h3 {
  font-size: 1.15rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-card {
  grid-column: span 1;
}

.stat-mini {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-mini > i {
  font-size: 1.8rem;
  color: var(--primary);
}

.stat-mini strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-dark);
}

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

.profile-info {
  display: flex;
  gap: 16px;
  align-items: center;
}

.profile-avatar {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.profile-info strong { display: block; font-size: 1rem; }
.profile-info span { display: block; font-size: 0.85rem; color: var(--text-muted); }

/* ---------- DATA TABLES ---------- */
.table-responsive {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.data-table th {
  text-align: left;
  padding: 12px 16px;
  background: var(--surface-alt);
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--surface-border);
  white-space: nowrap;
}

.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--surface-border);
  vertical-align: middle;
}

.data-table tr:hover td {
  background: var(--surface-alt);
}

.data-table small {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ---------- STATUS BADGES ---------- */
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-pending { background: #fef3c7; color: #92400e; }
.status-new { background: #fef3c7; color: #92400e; }
.status-confirmed { background: #dbeafe; color: #1e40af; }
.status-in_progress { background: #ede9fe; color: #6d28d9; }
.status-completed { background: #d1fae5; color: #065f46; }
.status-cancelled { background: #fee2e2; color: #991b1b; }
.status-contacted { background: #dbeafe; color: #1e40af; }
.status-converted { background: #d1fae5; color: #065f46; }

/* ---------- ADMIN NAV ---------- */
.admin-nav {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
  background: #fff;
  padding: 6px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-border);
  overflow-x: auto;
}

.admin-nav-link {
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-body);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-nav-link:hover {
  background: var(--surface-alt);
  color: var(--primary);
}

.admin-nav-link.active {
  background: var(--primary);
  color: #fff;
}

.badge-count {
  background: #ef4444;
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  font-weight: 700;
}

/* ---------- ADMIN STATS ---------- */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.admin-stat-card {
  background: #fff;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.admin-stat-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-dark);
}

.admin-stat-card span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---------- FILTER BAR ---------- */
.filter-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.filter-chip {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  background: #fff;
  border: 1px solid var(--surface-border);
  color: var(--text-body);
}

.filter-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
}

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

/* ---------- ACTION BUTTONS ---------- */
.action-btns {
  display: flex;
  gap: 6px;
}

.btn-action {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--surface-border);
  background: #fff;
  cursor: pointer;
  font-size: 0.8rem;
  transition: var(--transition);
  color: var(--text-body);
}

.btn-action:hover { box-shadow: var(--shadow-sm); }
.btn-approve { color: var(--accent-green); border-color: #a7f3d0; }
.btn-approve:hover { background: #d1fae5; }
.btn-warn { color: #ef4444; border-color: #fecaca; }
.btn-warn:hover { background: #fee2e2; }

/* ---------- EMPTY STATE ---------- */
.empty-state {
  text-align: center;
  padding: 48px 24px;
  color: var(--text-muted);
}

.empty-state i {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.4;
}

.empty-state p {
  font-size: 1.05rem;
  margin-bottom: 16px;
}

/* ---------- PRO REGISTER LAYOUT ---------- */
.pro-register-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: flex-start;
}

.pro-benefits h2 {
  font-size: 1.8rem;
  margin-bottom: 32px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.benefit-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.benefit-item p {
  font-size: 0.9rem;
  color: var(--text-body);
}

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

/* ---------- SELECT STYLING ---------- */
select.form-control {
  appearance: none;
  -webkit-appearance: none;
  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='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* ---------- NEW RESPONSIVE FOR MVP PAGES ---------- */
@media (max-width: 1024px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-summary {
    order: -1;
  }

  .summary-card {
    position: static;
  }

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

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

@media (max-width: 768px) {
  .page-hero { margin-top: 76px; padding: 32px 0; }
  .page-hero h1 { font-size: 1.6rem; }

  .service-row { flex-direction: column; align-items: flex-start; }
  .service-action { text-align: left; width: 100%; display: flex; align-items: center; justify-content: space-between; }

  .form-row { grid-template-columns: 1fr; }

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

  .admin-stats { grid-template-columns: 1fr 1fr; }
  .admin-nav { gap: 2px; }
  .admin-nav-link { padding: 8px 14px; font-size: 0.82rem; }

  .confirm-card { padding: 32px 20px; }

  .auth-card { padding: 28px 20px; }
}
