/* ==========================================================================
   AuraDental Clinic - Master Stylesheet
   Theme: Professional Polish
   Framework: Bootstrap 5.3 + Custom CSS
   Typography: Google Fonts "Noto Sans"
   Icons: Tabler Icons Webfont
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --font-family-base: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  
  /* Professional Polish Royal Blue & Medical Theme Colors */
  --bs-primary: #2563eb;
  --bs-primary-rgb: 37, 99, 235;
  --bs-primary-hover: #1d4ed8;
  --bs-primary-active: #1e40af;
  --bs-primary-dark: #1d4ed8;
  --bs-primary-light: #eff6ff;
  --bs-primary-subtle: #dbeafe;
  --bs-primary-border: #bfdbfe;
  
  --bs-secondary: #0f172a;
  --bs-secondary-rgb: 15, 23, 42;
  --bs-secondary-hover: #1e293b;
  --bs-secondary-light: #f8fafc;
  --bs-secondary-subtle: #f1f5f9;
  
  --bs-accent: #f59e0b;
  --bs-danger: #ef4444;
  --bs-danger-dark: #dc2626;
  --bs-success: #10b981;
  --bs-success-light: #ecfdf5;
  --bs-info: #0ea5e9;
  --bs-warning: #f59e0b;
  
  /* Refined Professional Slate Scale */
  --bs-dark: #0f172a;
  --bs-dark-rgb: 15, 23, 42;
  --bs-gray-900: #0f172a;
  --bs-gray-800: #1e293b;
  --bs-gray-700: #334155;
  --bs-gray-600: #475569;
  --bs-gray-500: #64748b;
  --bs-gray-400: #94a3b8;
  --bs-gray-300: #cbd5e1;
  --bs-gray-200: #e2e8f0;
  --bs-gray-100: #f1f5f9;
  --bs-gray-50: #f8fafc;
  
  /* Shadows */
  --card-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.04), 0 2px 4px -2px rgba(15, 23, 42, 0.03);
  --card-shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.06), 0 4px 6px -4px rgba(15, 23, 42, 0.03);
  --card-shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --card-shadow-hover: 0 20px 25px -5px rgba(37, 99, 235, 0.12), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --blue-btn-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.28);
  --blue-btn-shadow-hover: 0 6px 20px 0 rgba(37, 99, 235, 0.38);
}

body {
  font-family: var(--font-family-base);
  color: var(--bs-gray-700);
  background-color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-base);
  color: var(--bs-gray-900);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

a {
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

/* ==========================================================================
   Utility & Helper Classes
   ========================================================================== */
.text-primary-custom { color: var(--bs-primary) !important; }
.bg-primary-custom { background-color: var(--bs-primary) !important; }
.bg-primary-light { background-color: var(--bs-primary-light) !important; }
.bg-primary-subtle { background-color: var(--bs-primary-subtle) !important; }
.bg-slate-50 { background-color: var(--bs-gray-50) !important; }
.bg-slate-100 { background-color: var(--bs-gray-100) !important; }
.bg-slate-800 { background-color: var(--bs-gray-800) !important; }
.bg-slate-900 { background-color: var(--bs-gray-900) !important; }
.border-slate-100 { border-color: var(--bs-gray-100) !important; }
.border-slate-200 { border-color: var(--bs-gray-200) !important; }
.border-primary-subtle { border-color: var(--bs-primary-border) !important; }

/* Primary Button (Royal Blue with soft shadow) */
.btn-primary-custom {
  background-color: var(--bs-primary);
  border: 1px solid var(--bs-primary);
  color: #ffffff;
  font-weight: 700;
  padding: 0.65rem 1.4rem;
  border-radius: 50rem;
  box-shadow: var(--blue-btn-shadow);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-primary-custom:hover, .btn-primary-custom:focus {
  background-color: var(--bs-primary-hover);
  border-color: var(--bs-primary-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--blue-btn-shadow-hover);
}

/* Dark Slate Button */
.btn-dark-custom, .btn-slate-900 {
  background-color: var(--bs-gray-900);
  border: 1px solid var(--bs-gray-900);
  color: #ffffff;
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: 0.75rem;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-dark-custom:hover, .btn-slate-900:hover {
  background-color: var(--bs-gray-800);
  border-color: var(--bs-gray-800);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.2);
}

/* Outline Slate Button */
.btn-outline-slate {
  background: #ffffff;
  border: 1px solid var(--bs-gray-200);
  color: var(--bs-gray-800);
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.btn-outline-slate:hover {
  background-color: var(--bs-gray-50);
  border-color: var(--bs-gray-300);
  color: var(--bs-gray-900);
  transform: translateY(-2px);
}

.btn-outline-primary-custom {
  border: 1.5px solid var(--bs-primary);
  color: var(--bs-primary);
  background: transparent;
  font-weight: 700;
  padding: 0.65rem 1.4rem;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
}
.btn-outline-primary-custom:hover {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--blue-btn-shadow);
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  background-color: var(--bs-primary-light);
  color: var(--bs-primary);
  border: 1px solid var(--bs-primary-border);
  border-radius: 50rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--bs-gray-900);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--bs-gray-500);
  max-width: 650px;
}

/* ==========================================================================
   Header & Navigation (Professional Polish Theme)
   ========================================================================== */
.top-bar {
  background-color: #1d4ed8; /* Blue 700 */
  color: #ffffff;
  font-size: 0.82rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid #2563eb;
  font-weight: 500;
}
.top-bar a {
  color: #ffffff;
  opacity: 0.95;
}
.top-bar a:hover {
  opacity: 1;
  text-decoration: underline;
}

.navbar-custom {
  background: #ffffff;
  border-bottom: 1px solid var(--bs-gray-200);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
  padding: 0.9rem 0;
}
.navbar-custom.is-sticky {
  position: sticky;
  top: 0;
  z-index: 1020;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--bs-gray-900) !important;
  letter-spacing: -0.02em;
}
.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.65rem;
  background: #2563eb;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.nav-link {
  color: var(--bs-gray-600) !important;
  font-weight: 600;
  font-size: 0.93rem;
  padding: 0.5rem 0.85rem !important;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}
.nav-link:hover {
  color: var(--bs-primary) !important;
  background-color: var(--bs-primary-light);
}
.nav-link.active {
  color: var(--bs-primary) !important;
  font-weight: 700;
}

/* User avatar dropdown */
.user-avatar-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--bs-primary-subtle);
  color: var(--bs-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 2px solid var(--bs-primary-border);
}

/* ==========================================================================
   Hero Section & Stat Cards
   ========================================================================== */
.hero-wrapper {
  background: linear-gradient(135deg, #f8fafc 0%, #f0f7ff 60%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 5.5rem 0;
  border-bottom: 1px solid var(--bs-gray-200);
}
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  padding: 0.4rem 1.1rem;
  border-radius: 50rem;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bs-primary);
  margin-bottom: 1.25rem;
  border: 1px solid var(--bs-primary-border);
}
.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--bs-gray-900);
  line-height: 1.12;
  letter-spacing: -0.03em;
}
.hero-image-container {
  position: relative;
}
.hero-main-img {
  border-radius: 1.5rem;
  box-shadow: var(--card-shadow-lg);
  border: 4px solid #ffffff;
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* Floating Badges */
.floating-stat-card {
  position: absolute;
  background: #ffffff;
  padding: 0.9rem 1.2rem;
  border-radius: 1rem;
  box-shadow: var(--card-shadow-md);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid var(--bs-gray-200);
  animation: floatSlow 4s ease-in-out infinite alternate;
}
.floating-stat-card.top-right {
  top: 8%;
  right: -4%;
}
.floating-stat-card.bottom-left {
  bottom: 8%;
  left: -4%;
  animation-delay: 2s;
}

@keyframes floatSlow {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-8px); }
}

/* Metric / Stat Blocks */
.stat-metric-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid var(--bs-gray-100);
  transition: all 0.25s ease;
}
.stat-metric-card:hover {
  border-color: var(--bs-primary-border);
  box-shadow: var(--card-shadow-md);
  transform: translateY(-3px);
}
.stat-metric-icon {
  color: var(--bs-primary);
  margin-bottom: 0.5rem;
  font-size: 1.85rem;
  display: flex;
  align-items: center;
}
.stat-metric-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--bs-gray-900);
  line-height: 1.2;
}
.stat-metric-label {
  font-size: 0.72rem;
  color: var(--bs-gray-400);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

/* ==========================================================================
   Quick Booking Widget & Blue Highlight Panels
   ========================================================================== */
.quick-booking-bar {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.75rem 2rem;
  box-shadow: var(--card-shadow-lg);
  border: 1px solid var(--bs-gray-200);
  margin-top: -3.5rem;
  position: relative;
  z-index: 10;
}

/* Professional Polish Quick Booking Blue Box */
.blue-booking-box {
  background: #2563eb;
  padding: 1.75rem;
  border-radius: 1.25rem;
  box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.35);
  color: #ffffff;
}
.blue-booking-box input, .blue-booking-box select {
  background-color: #1d4ed8;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-radius: 0.65rem;
  padding: 0.65rem 0.9rem;
}
.blue-booking-box input:focus, .blue-booking-box select:focus {
  background-color: #1e40af;
  color: #ffffff;
  border-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}
.blue-booking-box label {
  color: #dbeafe;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

/* Form Controls */
.form-control, .form-select {
  border: 1px solid var(--bs-gray-200);
  border-radius: 0.65rem;
  padding: 0.65rem 0.95rem;
  font-size: 0.95rem;
  color: var(--bs-gray-800);
  transition: all 0.2s ease;
}
.form-control:focus, .form-select:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  outline: none;
}

/* ==========================================================================
   Service Cards & Highlights
   ========================================================================== */
.card-service {
  background: #ffffff;
  border: 1px solid var(--bs-gray-200);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card-service:hover {
  transform: translateY(-6px);
  border-color: var(--bs-primary-border);
  box-shadow: var(--card-shadow-hover);
}
.service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 0.9rem;
  background-color: var(--bs-primary-light);
  color: var(--bs-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.35rem;
  transition: all 0.25s ease;
  border: 1px solid var(--bs-primary-border);
}
.card-service:hover .service-icon-box {
  background-color: var(--bs-primary);
  color: #ffffff;
  border-color: var(--bs-primary);
  transform: scale(1.06);
}

/* ==========================================================================
   Doctor Cards
   ========================================================================== */
.card-doctor {
  background: #ffffff;
  border: 1px solid var(--bs-gray-200);
  border-radius: 1.25rem;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
}
.card-doctor:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--bs-primary-border);
}
.doctor-img-wrap {
  position: relative;
  overflow: hidden;
  height: 280px;
  background: var(--bs-gray-100);
}
.doctor-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card-doctor:hover .doctor-img-wrap img {
  transform: scale(1.04);
}
.doctor-specialty-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 50rem;
  letter-spacing: 0.2px;
}

/* ==========================================================================
   Before & After Comparison Slider
   ========================================================================== */
.ba-container {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--card-shadow-md);
  border: 1px solid var(--bs-gray-200);
  user-select: none;
}
.ba-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-before {
  z-index: 1;
}
.ba-after-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  border-right: 3px solid #ffffff;
}
.ba-after-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
}
.ba-slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 42px;
  margin-left: -21px;
  margin-top: -21px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-primary);
  font-size: 1.25rem;
  cursor: ew-resize;
  z-index: 3;
}
.ba-tag {
  position: absolute;
  top: 16px;
  padding: 0.35rem 0.9rem;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 50rem;
  z-index: 4;
}
.ba-tag.before-tag { left: 16px; }
.ba-tag.after-tag { right: 16px; }

/* ==========================================================================
   Pricing & Membership Cards
   ========================================================================== */
.pricing-card {
  background: #ffffff;
  border: 1px solid var(--bs-gray-200);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.pricing-card.popular {
  border-color: var(--bs-primary);
  box-shadow: 0 20px 35px -10px rgba(37, 99, 235, 0.22);
  transform: scale(1.02);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bs-primary);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.35rem 1.25rem;
  border-radius: 50rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

/* ==========================================================================
   Reviews & Testimonials
   ========================================================================== */
.review-card {
  background: #ffffff;
  border: 1px solid var(--bs-gray-200);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
}
.review-card:hover {
  box-shadow: var(--card-shadow-md);
  border-color: var(--bs-primary-border);
}
.star-rating {
  color: #f59e0b;
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   Emergency Highlights
   ========================================================================== */
.emergency-hero {
  background: linear-gradient(135deg, #7f1d1d 0%, #991b1b 100%);
  color: #ffffff;
  padding: 4rem 0;
  border-radius: 1.5rem;
}
.emergency-pulse {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ef4444;
  border-radius: 50%;
  margin-right: 6px;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  animation: pulseRed 1.8s infinite;
}
@keyframes pulseRed {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* ==========================================================================
   Multi-Step Booking Wizard
   ========================================================================== */
.booking-step-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  background: var(--bs-gray-100);
  color: var(--bs-gray-500);
  font-weight: 700;
  font-size: 0.88rem;
  transition: all 0.25s ease;
}
.booking-step-pill.active {
  background: var(--bs-primary-light);
  color: var(--bs-primary);
  border: 1px solid var(--bs-primary);
}
.booking-step-pill.completed {
  background: #ecfdf5;
  color: #059669;
}
.booking-step-pill .step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.time-slot-btn {
  border: 1px solid var(--bs-gray-200);
  background: #ffffff;
  padding: 0.65rem 0.85rem;
  border-radius: 0.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
  text-align: center;
  cursor: pointer;
}
.time-slot-btn:hover {
  border-color: var(--bs-primary);
  color: var(--bs-primary);
  background-color: var(--bs-primary-light);
}
.time-slot-btn.selected {
  background: var(--bs-primary);
  color: #ffffff;
  border-color: var(--bs-primary);
  box-shadow: var(--blue-btn-shadow);
}
.time-slot-btn.disabled {
  opacity: 0.45;
  background: var(--bs-gray-100);
  cursor: not-allowed;
  pointer-events: none;
}

/* ==========================================================================
   Patient Dashboard (Professional Polish Theme)
   ========================================================================== */
.dashboard-sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.25rem;
  border-radius: 0.75rem;
  color: var(--bs-gray-700);
  font-weight: 700;
  margin-bottom: 0.4rem;
  transition: all 0.2s ease;
}
.dashboard-sidebar-link:hover, .dashboard-sidebar-link.active {
  background-color: var(--bs-primary-light);
  color: var(--bs-primary);
}
.dashboard-stat-card {
  background: #ffffff;
  border: 1px solid var(--bs-gray-200);
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.dashboard-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

/* Appointment Info Callout */
.appointment-info-callout {
  background-color: var(--bs-primary-light);
  padding: 1rem 1.25rem;
  border-radius: 0.85rem;
  border: 1px solid var(--bs-primary-border);
}

/* ==========================================================================
   Footer (Rich Slate 900 Theme)
   ========================================================================== */
.site-footer {
  background-color: #0f172a;
  color: #94a3b8;
  padding: 4.5rem 0 1.75rem 0;
  border-top: 1px solid #1e293b;
  font-size: 0.92rem;
}
.site-footer h5 {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.footer-link {
  color: #94a3b8;
  display: block;
  margin-bottom: 0.6rem;
  transition: all 0.2s ease;
  font-weight: 500;
}
.footer-link:hover {
  color: #ffffff;
  transform: translateX(3px);
}
.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1e293b;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.social-icon-btn:hover {
  background: #2563eb;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ==========================================================================
   Toast Notification Styling
   ========================================================================== */
.custom-toast {
  background: #ffffff;
  border-radius: 0.85rem;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
  border: 1px solid var(--bs-gray-200);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .quick-booking-bar {
    margin-top: 2rem;
  }
  .hero-main-img {
    height: 350px;
  }
  .floating-stat-card {
    display: none;
  }
}
