:root,
[data-bs-theme=light] {
  /* Custom Color System */
  --primary: #0f766e;
  /* Teal 700 */
  --primary-dark: #0d5c56;
  --secondary: #14b8a6;
  /* Teal 500 */
  --accent: #f59e0b;
  /* Amber 500 */
  --dark: #1e293b;
  /* Slate 800 */
  --text: #475569;
  /* Slate 600 */
  --light: #f8fafc;
  /* Slate 50 */
  --white: #ffffff;
  --success: #10b981;
  --font-sans: 'Manrope', sans-serif;

  /* Bootstrap Theme Color Overrides */
  --bs-primary: #0f766e;
  --bs-primary-rgb: 15, 118, 110;

  --bs-secondary: #14b8a6;
  --bs-secondary-rgb: 20, 184, 166;

  --bs-success: #10b981;
  --bs-success-rgb: 16, 185, 129;

  --bs-warning: #f59e0b;
  --bs-warning-rgb: 245, 158, 11;

  --bs-dark: #1e293b;
  --bs-dark-rgb: 30, 41, 59;

  --bs-light: #f8fafc;
  --bs-light-rgb: 248, 250, 252;

  /* Bootstrap Link Color Overrides */
  --bs-link-color: #0f766e;
  --bs-link-color-rgb: 15, 118, 110;
  --bs-link-hover-color: #0d5c56;
  --bs-link-hover-color-rgb: 13, 92, 86;

  /* Bootstrap Focus Ring Override */
  --bs-focus-ring-color: rgba(15, 118, 110, 0.25);
}

html {
  overflow-x: hidden;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  letter-spacing: -0.025em;
}

a {
  text-decoration: none;
  transition: all 0.2s ease;
  color: var(--primary);
}

/* Navbar */
.navbar-clean {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}

.navbar:has(.offcanvas.show) {
  z-index: 1045 !important;
}

.navbar-brand .brand-title {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.navbar-brand .brand-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.navbar-logo {
  width: 45px;
  height: 45px;
  object-fit: cover;
  object-position: center 10%;
  transform: scale(1.25);
  border-radius: 50%;
  border: 2px solid var(--light);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-nav .nav-link {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  border-radius: 0.5rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary);
  background-color: rgba(15, 118, 110, 0.05);
}

/* User Profile in Navbar */
.user-pill {
  border: 1px solid #e2e8f0;
  background-color: white;
  transition: all 0.2s;
}

/* Mobile Hamburger Menu */
.navbar-toggler {
  padding: 0.5rem;
  background: transparent;
}

.hamburger-icon {
  width: 24px;
  height: 18px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.hamburger-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--primary);
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.hamburger-icon span:nth-child(1) {
  top: 0px;
}

.hamburger-icon span:nth-child(2) {
  top: 8px;
}

.hamburger-icon span:nth-child(3) {
  top: 16px;
}

/* When menu is open, Bootstrap adds .collapsed inversely, but we can also use aria-expanded state */
.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
  opacity: 0;
  left: -20px;
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
  top: 8px;
  transform: rotate(-135deg);
}

.user-pill:hover {
  border-color: var(--primary);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.avatar-circle {
  width: 32px;
  height: 32px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 6rem 0;
  background-color: white;
  overflow: hidden;
  max-width: 100vw;
}

/* Prevent Animate.css horizontal animations from causing page-wide overflow/scroll shift */
.animate__fadeInLeft,
.animate__fadeInRight {
  animation-name: fadeIn !important;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
  z-index: 0;
}

.hero-logo {
  width: 100%;
  max-width: 480px;
  object-fit: contain;
  filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.15));
  display: block;
  margin: 0 auto;
}

/* Cards */
.card,
.stat-card,
.feature-card,
.service-item,
.testimonial-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover,
.feature-card:hover,
.service-item:hover,
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border-color: var(--secondary);
}

/* Stat Cards specific */
.stat-card {
  padding: 1.5rem;
  text-align: center;
}

.stat-card h3 {
  font-size: 2.5rem;
  letter-spacing: -0.05em;
  margin-bottom: 0.5rem;
}

/* Feature Cards specific */
.feature-card {
  padding: 2rem;
  height: 100%;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background-color: rgba(20, 184, 166, 0.1);
  color: var(--primary);
  font-size: 1.5rem;
}

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

/* Buttons */
.btn {
  font-weight: 600;
  padding: 0.625rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.hero-btn {
  min-width: 200px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 575.98px) {
  .hero-btn {
    width: 100%;
    min-width: unset;
  }
}

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

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
  background-color: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  color: #fff !important;
  box-shadow: 0 0 0 0.25rem rgba(15, 118, 110, 0.25) !important;
  transform: translateY(-1px);
}

.btn-outline-primary {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary.active {
  background-color: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  color: #fff !important;
  box-shadow: 0 0 0 0.25rem rgba(15, 118, 110, 0.25) !important;
  transform: translateY(-1px);
}

/* Login/Auth Pages */
.login-page {
  background-color: #f1f5f9;
}

.login-logo-section {
  background: radial-gradient(circle at top right, var(--secondary), var(--primary));
  position: relative;
  overflow: hidden;
}

/* Fix for password toggle input group focus state */
.input-group:focus-within .input-group-text {
  border-color: var(--secondary);
}

.input-group:focus-within .form-control {
  border-color: var(--secondary);
  box-shadow: none;
}

.input-group:focus-within {
  box-shadow: 0 0 0 0.25rem rgba(15, 118, 110, 0.25);
  border-radius: 0.5rem;
}

/* Override default form control focus */
.form-control:focus,
.form-select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 0.25rem rgba(15, 118, 110, 0.25);
}

.login-logo-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Utilities */
.text-primary {
  color: var(--primary) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

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

.bg-light {
  background-color: #f8fafc !important;
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1) !important;
}

/* ══════════════════════════════════════════════════════════
   Table Styles — Premium Modern Design
   ══════════════════════════════════════════════════════════ */

/* Card wrapper for tables */
.table-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: box-shadow .25s ease;
}
.table-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
}

/* Table base */
.table {
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #334155;
}

/* Header */
.table thead th {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  color: #475569;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 0.85rem 1rem;
  border-bottom: 2px solid #e2e8f0;
  white-space: nowrap;
  position: sticky;
  top: 0;
  z-index: 1;
}

/* Body cells */
.table td {
  vertical-align: middle;
  padding: 0.75rem 1rem;
  border-color: #f1f5f9;
  transition: background-color .15s ease, color .15s ease;
}

/* Zebra striping */
.table tbody tr:nth-child(even) {
  background-color: #f8fafc;
}
.table tbody tr:nth-child(odd) {
  background-color: #fff;
}

/* Row hover */
.table-hover tbody tr:hover {
  background-color: #f0fdfa !important;
  cursor: pointer;
}
.table-hover tbody tr:hover td {
  color: #0f172a;
}

/* First & last cell rounding inside card */
.table-card .table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 1rem;
}
.table-card .table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 1rem;
}

/* Row number column */
.table td:first-child,
.table thead th:first-child {
  text-align: center;
  width: 3.5rem;
  color: #94a3b8;
  font-weight: 600;
  font-size: 0.75rem;
}

/* Status badges (consistent) */
.table .badge {
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  padding: 0.35em 0.75em;
  border-radius: 50rem;
}

/* Action buttons in tables */
.table .btn-sm {
  font-size: 0.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all .2s ease;
}
.table .btn-sm:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
}

/* Responsive wrapper */
.table-responsive {
  border-radius: 1rem;
  -webkit-overflow-scrolling: touch;
}
.table-responsive::-webkit-scrollbar {
  height: 6px;
}
.table-responsive::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 3px;
}
.table-responsive::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

/* Empty state */
.table-empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: #94a3b8;
}
.table-empty-state i {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  opacity: .5;
}
.table-empty-state p {
  font-size: 0.9rem;
  margin: 0;
}

/* ── Unified Pagination ── */
.table-pagination {
  display: flex;
  justify-content: center;
  padding: 1rem 1.5rem;
  border-top: 1px solid #f1f5f9;
  background: linear-gradient(to top, #f8fafc, #fff);
}
.table-pagination .pagination {
  gap: 0.3rem;
  margin-bottom: 0;
}
.table-pagination .page-link {
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem !important;
  padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0d9488;
  background: #fff;
  transition: all .2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.table-pagination .page-link:hover {
  background: #f0fdfa;
  border-color: #99f6e4;
  color: #0d9488;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(13,148,136,.12);
}
.table-pagination .page-item.active .page-link {
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  border-color: #0d9488;
  color: #fff;
  box-shadow: 0 2px 8px rgba(13,148,136,.25);
}
.table-pagination .page-item.disabled .page-link {
  background: #f8fafc;
  border-color: #e2e8f0;
  color: #cbd5e1;
  opacity: .7;
}

/* Table info bar (showing X of Y) */
.table-info-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}
.table-info-bar .showing-count {
  color: #0d9488;
  font-weight: 700;
}

/* New Modern Utilities */
.width-12 {
  width: 3rem;
}

.height-12 {
  height: 3rem;
}

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

/* Colors */
.bg-teal-50 {
  background-color: #f0fdfa;
}

.text-teal-600 {
  color: #0d9488;
}

.bg-rose-50 {
  background-color: #fff1f2;
}

.text-rose-600 {
  color: #e11d48;
}

.bg-blue-50 {
  background-color: #eff6ff;
}

.text-blue-600 {
  color: #2563eb;
}

.bg-amber-50 {
  background-color: #fffbeb;
}

.text-amber-600 {
  color: #d97706;
}

/* Mobile Tweaks */
@media (max-width: 991.98px) {
  .hero-logo {
    max-width: 250px;
    margin-top: 2rem;
  }

  .navbar-nav {
    padding: 1rem 0;
  }
}

/* Custom Utilities for ID Verification */
.border-dashed {
  border-style: dashed !important;
}

.letter-spacing-1 {
  letter-spacing: 0.05em;
}

.cursor-pointer {
  cursor: pointer;
}

.transition-all {
  transition: all 0.3s ease;
}

.transition-transform {
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: translateY(-2px) scale(1.01);
}

.shadow-primary {
  box-shadow: 0 4px 6px -1px rgba(15, 118, 110, 0.4), 0 2px 4px -1px rgba(15, 118, 110, 0.2);
}

.upload-zone {
  transition: all 0.3s ease;
  background-color: var(--light);
}

.upload-zone:hover {
  border-color: var(--primary) !important;
  background-color: rgba(20, 184, 166, 0.05) !important;
}

.upload-zone .icon-circle {
  transition: all 0.3s ease;
}

.upload-zone:hover .icon-circle {
  transform: scale(1.1);
  background-color: var(--primary) !important;
}

.upload-zone:hover .icon-circle i {
  color: white !important;
}

.pointer-events-none {
  pointer-events: none;
}

/* Chatbot Styles */
#chatbot-root {
  /* Just a container */
}

.chatbot-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1050;
}



.chatbot-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(15, 118, 110, 0.5);
}

.chatbot-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #ef4444;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  border: 2px solid white;
}

.chatbot-panel {
  position: fixed;
  top: 75px;
  right: 20px;
  width: 380px;
  max-width: calc(100vw - 40px);
  height: 600px;
  max-height: calc(100vh - 90px);
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.3s ease;
}

.chatbot-panel.active {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.chatbot-header {
  flex-shrink: 0;
  z-index: 2;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.chatbot-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.chatbot-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chatbot-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chatbot-messages::-webkit-scrollbar {
  width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
  background: #f1f5f9;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.message {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.user-message {
  flex-direction: row-reverse;
}

.message-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.bot-message .message-avatar {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
}

.user-message .message-avatar {
  background: var(--primary);
  color: white;
}

.message-content {
  max-width: 75%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  line-height: 1.5;
  font-size: 0.9rem;
}

.bot-message .message-content {
  background: white;
  color: var(--dark);
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.user-message .message-content {
  background: var(--primary);
  color: white;
}

.message-content p {
  margin: 0;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.message-content ul {
  margin: 0.5rem 0;
  padding-left: 1.25rem;
}

.message-content li {
  margin: 0.25rem 0;
}

.message-content b {
  font-weight: 600;
  color: var(--primary);
}

.user-message .message-content b {
  color: rgba(255, 255, 255, 0.9);
}

.typing-indicator {
  opacity: 0.7;
}

.typing-dots {
  display: flex;
  gap: 4px;
  padding: 0.5rem 0;
}

.typing-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: typing 1.4s infinite;
}

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

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

@keyframes typing {

  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.7;
  }

  30% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

.chatbot-suggestions {
  flex-shrink: 0;
  padding: 0.5rem 1.5rem 1rem;
  background: white;
  border-top: 1px solid #e2e8f0;
}

.suggestions-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  background: none;
  border: none;
  padding: 0.25rem 0;
  cursor: pointer;
  color: #94a3b8;
  transition: color 0.2s ease;
}

.suggestions-toggle:hover {
  color: #0d9488;
}

.suggestions-toggle i {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
}

.suggestions-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}

.suggestion-btn {
  padding: 0.5rem 1rem;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.suggestion-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-1px);
}

.chatbot-input-container {
  flex-shrink: 0;
  padding: 1rem 1.5rem;
  background: white;
  border-top: 1px solid #e2e8f0;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.chatbot-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.2s ease;
}

.chatbot-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

.chatbot-send {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
}

.chatbot-send:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
}

.chatbot-send:active {
  transform: scale(0.95);
}

/* Location Map Styles */
.location-map-container {
  width: 100%;
}

.location-map-container .btn {
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
}

.location-map-container .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.location-map-container .btn-outline-primary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}

.location-map-container .btn-outline-success:hover {
  background-color: #10b981;
  border-color: #10b981;
  color: white;
}

/* Guest Form Styles */
#guestInfoForm {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

#guestInfoForm .form-label {
  color: var(--dark);
  margin-bottom: 0.5rem;
}

#guestInfoForm .form-control {
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
}

#guestInfoForm .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
  outline: none;
}

#guestInfoForm .btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  font-weight: 600;
  margin-top: 0.5rem;
}

#guestInfoForm .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
}

/* Offcanvas Sizing */
@media (max-width: 991.98px) {
  .navbar .offcanvas {
    width: 300px !important;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {

  .chatbot-panel {
    left: 10px;
    right: 10px;
    width: auto;
    height: calc(100vh - 85px);
    top: 75px;
    border-radius: 16px;
  }

  .chatbot-toggle {
    width: 38px;
    height: 38px;
    margin-right: -5px;
  }

  .chatbot-toggle .fa-comments {
    font-size: 1rem;
  }

  .message-content {
    max-width: 85%;
  }
}