/* ==========================================================================
   D-KLINIC & SMART BOOKING DESIGN SYSTEM (MAIN.CSS)
   Medical Tech & Modern Dark SaaS Showcase
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700;800&family=Kanit:wght@300;400;500;600;700&family=Mitr:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&family=Prompt:wght@300;400;500;600;700&display=swap');

:root {
  /* Global Color Tokens */
  --font-thai: 'Prompt', 'Mitr', 'Kanit', sans-serif;
  --font-thai-heading: 'Prompt', 'Mitr', sans-serif;
  --font-en: 'Inter', sans-serif;
  --font-tech: 'Outfit', 'Fredoka', sans-serif;
  --font-pop: 'Fredoka', 'Prompt', sans-serif;

  /* Universal Neutrals */
  --white: #FFFFFF;
  --black: #000000;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --gray-950: #020617;

  /* D-Klinic Medical Tech Palette */
  --clinic-primary: #10B981;
  --clinic-primary-hover: #059669;
  --clinic-primary-light: rgba(16, 185, 129, 0.12);
  --clinic-secondary: #0F766E;
  --clinic-secondary-light: #14B8A6;
  --clinic-accent: #06B6D4;
  --clinic-bg: #F8FAFC;
  --clinic-surface: #FFFFFF;
  --clinic-card-bg: rgba(255, 255, 255, 0.85);
  --clinic-border: rgba(16, 185, 129, 0.18);
  --clinic-text-main: #0F172A;
  --clinic-text-muted: #64748B;
  --clinic-gradient: linear-gradient(135deg, #10B981 0%, #0F766E 100%);
  --clinic-gradient-subtle: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(15, 118, 110, 0.04) 100%);
  --clinic-glow: 0 10px 30px -5px rgba(16, 185, 129, 0.35);

  /* Smart Room Booking: Vibrant Pastel Pop & Friendly UI */
  --booking-primary: #FF6B6B; /* Coral Peach */
  --booking-primary-hover: #EE5253;
  --booking-primary-light: rgba(255, 107, 107, 0.12);
  --booking-secondary: #EC4899; /* Bubblegum Pink */
  --booking-accent: #2DD4BF; /* Fresh Mint */
  --booking-sky: #38BDF8; /* Electric Sky Blue */
  --booking-yellow: #FACC15; /* Sunshine Yellow */
  --booking-purple: #A855F7; /* Pastel Purple */
  --booking-line-green: #06C755;
  --booking-bg: #FFFFFF;
  --booking-surface: #FFFFFF;
  --booking-card-bg: rgba(255, 255, 255, 0.88);
  --booking-border: rgba(255, 107, 107, 0.2);
  --booking-text-main: #1E293B;
  --booking-text-muted: #64748B;
  --booking-gradient: linear-gradient(135deg, #FF6B6B 0%, #EC4899 100%);
  --booking-gradient-mint: linear-gradient(135deg, #2DD4BF 0%, #38BDF8 100%);
  --booking-gradient-subtle: linear-gradient(135deg, rgba(255, 107, 107, 0.06) 0%, rgba(236, 72, 153, 0.04) 100%);
  --booking-glow: 0 15px 35px -5px rgba(255, 107, 107, 0.35);
  --booking-glow-pink: 0 15px 35px -5px rgba(236, 72, 153, 0.35);
  --booking-glow-mint: 0 15px 35px -5px rgba(45, 212, 191, 0.35);

  /* Shared 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 -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   CSS RESET & BASE
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-thai);
  line-height: 1.6;
  color: var(--clinic-text-main);
  background-color: var(--clinic-bg);
  overflow-x: hidden;
  transition: background-color var(--transition-slow), color var(--transition-slow);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-thai-heading);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.015em;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.container-sm {
  max-width: 960px;
}

.container-lg {
  max-width: 1400px;
}

/* ==========================================================================
   GLOBAL BRAND BAR & SOLUTION TOGGLE (TOP HEADER)
   ========================================================================== */
.global-solution-bar {
  background: linear-gradient(90deg, #0B0F19 0%, #1E1B4B 40%, #172554 75%, #0B0F19 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, #10B981 0%, #38BDF8 30%, #EC4899 70%, #FF6B6B 100%) 1;
  padding: 0.55rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.solution-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.solution-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: #E2E8F0;
  font-weight: 500;
}

.solution-text-genz {
  background: linear-gradient(90deg, #FFFFFF 0%, #F8FAFC 70%, #FDA4AF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.25rem 0.75rem;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.25) 0%, rgba(255, 107, 107, 0.25) 100%);
  border: 1.5px solid rgba(255, 107, 107, 0.5);
  border-radius: var(--radius-full);
  color: #FDA4AF;
  font-weight: 700;
  font-size: 0.78rem;
  box-shadow: 0 0 15px rgba(255, 107, 107, 0.3);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: #FF6B6B;
  border-radius: 50%;
  box-shadow: 0 0 8px #FF6B6B;
  animation: rainbowPulse 1.8s infinite;
}

@keyframes rainbowPulse {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.8); background: #FF6B6B; }
  50% { transform: scale(1.15); box-shadow: 0 0 0 6px rgba(236, 72, 153, 0); background: #EC4899; }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.8); background: #FF6B6B; }
}

.solution-switcher-pills {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.25rem;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}

.pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: #E2E8F0;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: none;
  cursor: pointer;
  background: transparent;
}

.pill-btn:hover {
  color: var(--white);
  transform: translateY(-2px) scale(1.03);
  background: rgba(255, 255, 255, 0.1);
}

.pill-btn.active.pill-clinic {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.6);
  transform: scale(1.02);
}

.pill-btn.active.pill-booking {
  background: linear-gradient(135deg, #FF6B6B 0%, #EC4899 50%, #8B5CF6 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 107, 107, 0.7);
  transform: scale(1.02);
}

.pill-emoji {
  font-size: 1rem;
  line-height: 1;
}

/* ==========================================================================
   MAIN NAVBAR
   ========================================================================== */
.main-navbar {
  position: sticky;
  top: 48px;
  z-index: 999;
  padding: 1rem 0;
  transition: all var(--transition-normal);
}

.navbar-scrolled {
  padding: 0.75rem 0;
  box-shadow: var(--shadow-lg);
}

.nav-glass-light {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}

.nav-glass-dark {
  background: rgba(11, 15, 25, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.35rem;
  font-weight: 800;
  font-family: var(--font-thai-heading);
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  box-shadow: var(--clinic-glow);
  flex-shrink: 0;
}

.brand-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.clinic-theme .brand-icon {
  background: var(--clinic-gradient);
}

.booking-theme .brand-icon {
  background: var(--booking-gradient);
  box-shadow: var(--booking-glow);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.brand-subtitle {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 0.4rem 0.2rem;
  position: relative;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.booking-theme .nav-link {
  color: var(--gray-700);
}

.nav-link:hover, .nav-link.active {
  color: var(--clinic-primary);
}

.booking-theme .nav-link:hover, .booking-theme .nav-link.active {
  color: var(--booking-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 2.5px;
  background: var(--clinic-primary);
  transition: all var(--transition-fast);
  transform: translateX(-50%);
  border-radius: var(--radius-full);
}

.booking-theme .nav-link::after {
  background: linear-gradient(90deg, #FF6B6B, #EC4899);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-700);
  padding: 0.5rem;
}

.booking-theme .mobile-menu-toggle {
  color: var(--gray-800);
}

/* ==========================================================================
   BUTTONS & CTAS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  text-align: center;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

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

.btn-lg {
  padding: 0.95rem 2.2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-clinic-primary {
  background: var(--clinic-gradient);
  color: var(--white);
  box-shadow: var(--clinic-glow);
}

.btn-clinic-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px -5px rgba(16, 185, 129, 0.45);
}

.btn-clinic-secondary {
  background: rgba(255, 255, 255, 0.95);
  color: var(--clinic-secondary);
  border: 1.5px solid var(--clinic-border);
  box-shadow: var(--shadow-sm);
}

.btn-clinic-secondary:hover {
  background: var(--clinic-primary-light);
  border-color: var(--clinic-primary);
  transform: translateY(-2px);
}

.btn-booking-primary {
  background: linear-gradient(135deg, #FF6B6B 0%, #EC4899 100%);
  color: var(--white);
  box-shadow: 0 10px 25px -5px rgba(255, 107, 107, 0.4);
  font-weight: 700;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-booking-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px -5px rgba(255, 107, 107, 0.55);
}

.btn-booking-secondary {
  background: #FFFFFF;
  color: #FF6B6B;
  border: 1.5px solid rgba(255, 107, 107, 0.35);
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.08);
  font-weight: 700;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-booking-secondary:hover {
  background: rgba(255, 107, 107, 0.08);
  border-color: #FF6B6B;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.18);
}

.btn-line-cta {
  background: linear-gradient(135deg, #00B900 0%, #009900 100%);
  color: var(--white);
  box-shadow: 0 10px 25px -5px rgba(0, 185, 0, 0.4);
}

.btn-line-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(0, 185, 0, 0.5);
}

/* ==========================================================================
   BADGES & CHIPS
   ========================================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-full);
}

.badge svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.badge-clinic {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.badge-booking {
  background: rgba(99, 102, 241, 0.15);
  color: #A5B4FC;
  border: 1px solid rgba(99, 102, 241, 0.3);
}

.badge-cyan {
  background: rgba(6, 182, 212, 0.15);
  color: #22D3EE;
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.badge-warning {
  background: rgba(245, 158, 11, 0.15);
  color: #D97706;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem auto;
}

.section-subtitle {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.section-title {
  font-size: 2.35rem;
  margin-bottom: 1rem;
  color: inherit;
}

.section-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray-500);
}

.booking-theme .section-desc {
  color: var(--gray-400);
}

/* Highlight Text */
.gradient-text-clinic {
  background: linear-gradient(135deg, #10B981 0%, #0F766E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-booking {
  background: linear-gradient(135deg, #818CF8 0%, #06B6D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   GLASSMORPHISM CARDS & UTILITIES
   ========================================================================== */
.glass-card {
  border-radius: var(--radius-lg);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.clinic-glass {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.04), 0 8px 10px -6px rgba(15, 23, 42, 0.02);
}

.clinic-glass:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px -10px rgba(16, 185, 129, 0.15), 0 1px 3px 0 rgba(0, 0, 0, 0.05);
  border-color: rgba(16, 185, 129, 0.45);
}

.booking-glass {
  background: rgba(30, 41, 59, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.4);
}

.booking-glass:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(99, 102, 241, 0.25);
  border-color: rgba(99, 102, 241, 0.5);
}

/* Ambient glow backgrounds */
.ambient-glow {
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.glow-emerald {
  background: #10B981;
}

.glow-cyan {
  background: #06B6D4;
}

.glow-indigo {
  background: #6366F1;
}

.glow-purple {
  background: #8B5CF6;
}

/* ==========================================================================
   MODALS (QUOTATION & DEMO)
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-2xl);
  transform: scale(0.95);
  transition: transform var(--transition-normal);
  position: relative;
  color: var(--gray-900);
}

.modal-backdrop.active .modal-content {
  transform: scale(1);
}

.modal-header {
  padding: 1.75rem 2rem 1.25rem 2rem;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-size: 1.35rem;
  font-weight: 700;
}

.modal-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 1.2rem;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--gray-200);
  color: var(--gray-900);
}

.modal-body {
  padding: 2rem;
}

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

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--gray-700);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--gray-50);
  font-size: 0.95rem;
  color: var(--gray-800);
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--clinic-primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

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

.radio-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.radio-card {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all var(--transition-fast);
  background: var(--white);
}

.radio-card:hover {
  border-color: var(--clinic-primary);
  background: var(--clinic-primary-light);
}

.radio-card.selected {
  border-color: var(--clinic-primary);
  background: rgba(16, 185, 129, 0.08);
}

.radio-card input {
  accent-color: var(--clinic-primary);
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.4rem;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(8px);
  color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-2xl);
  font-size: 0.9rem;
  border-left: 4px solid var(--clinic-primary);
  transform: translateX(120%);
  opacity: 0;
  transition: all var(--transition-normal);
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

/* ==========================================================================
   ANIMATIONS & SCROLL REVEAL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
