@charset "UTF-8";
/* ═══════════════════════════════════════════════════════════════
   LeafyWings Medix — Welcome / Landing Page Styles
   Page-specific SCSS (was previously inline in welcome.blade.php)
   ═══════════════════════════════════════════════════════════════ */
/* Hero Image Container */
.cc-hero-image-wrapper {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cc-hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cc-animate-float {
  animation: cc-float 6s ease-in-out infinite;
}

/* Image Comparison Slider */
.cc-image-comparison {
  position: relative;
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
}
.cc-image-comparison img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.cc-img-dark-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0 50% 0 0);
  z-index: 2;
}

.cc-comparison-slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #fff;
  z-index: 3;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.cc-comparison-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cc-primary);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  font-size: 1.2rem;
  pointer-events: auto;
}

.cc-badge-mode {
  position: absolute;
  top: 16px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 4;
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cc-badge-light {
  right: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cc-badge-dark {
  left: 16px;
  background: rgba(43, 44, 64, 0.9);
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* KPI Value Colors */
.cc-kpi-val-primary {
  color: var(--cc-primary);
}

.cc-kpi-val-green {
  color: var(--cc-secondary);
}

.cc-kpi-val-orange {
  color: #ff9f43;
}

/* Showcase Mockups General */
.cc-mockup-wrapper {
  padding: 32px;
  background: var(--cc-surface-alt);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cc-mockup-card-container {
  width: 100%;
  max-width: 420px;
}

/* Master Calendar Mockup */
.cc-cal-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.cc-cal-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--cc-text-primary);
}
.cc-cal-title i {
  color: var(--cc-primary);
  margin-right: 6px;
}

.cc-cal-month {
  font-size: 0.75rem;
  color: var(--cc-text-muted);
}

.cc-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 12px;
}

.cc-cal-day-label {
  text-align: center;
  font-size: 0.65rem;
  color: var(--cc-text-muted);
  font-weight: 600;
}

.cc-cal-cell {
  text-align: center;
  padding: 6px 2px;
  font-size: 0.75rem;
  border-radius: 6px;
  color: var(--cc-text-secondary);
}
.cc-cal-cell.today {
  background: var(--cc-primary);
  color: #fff;
  font-weight: 700;
}
.cc-cal-cell.booked {
  background: rgba(var(--cc-primary-rgb), 0.1);
  color: var(--cc-primary);
  font-weight: 600;
}

.cc-cal-events-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cc-cal-event-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--cc-border);
  font-size: 0.75rem;
}

.cc-cal-event-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cc-cal-dot-green {
  background: var(--cc-secondary);
}

.cc-cal-dot-primary {
  background: var(--cc-primary);
}

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

.cc-cal-event-meta {
  color: var(--cc-text-muted);
  margin-left: auto;
}

/* Billing & Tax Mockup */
.cc-billing-mockup-card {
  width: 100%;
  max-width: 380px;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--cc-border);
}

.cc-billing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.cc-billing-title {
  font-weight: 700;
  font-size: 0.9rem;
}
.cc-billing-title i {
  color: var(--cc-primary);
  margin-right: 6px;
}

.cc-billing-badge-paid {
  background: rgba(var(--cc-secondary-rgb), 0.12);
  color: var(--cc-secondary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.cc-billing-body {
  border-top: 1px dashed var(--cc-border);
  padding-top: 12px;
}

.cc-billing-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  margin-bottom: 6px;
  color: var(--cc-text-secondary);
}

.cc-billing-val {
  font-weight: 600;
  color: var(--cc-text-primary);
}

.cc-billing-total {
  border-top: 1px solid var(--cc-border);
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  font-size: 0.95rem;
}

.cc-billing-total-val {
  color: var(--cc-primary);
}

/* Roles & Security */
.cc-role-container {
  width: 100%;
  max-width: 380px;
}

.cc-role-header {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.cc-role-header i {
  color: var(--cc-primary);
  margin-right: 6px;
}

.cc-role-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--cc-border);
  margin-bottom: 8px;
}

.cc-role-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.cc-role-content {
  flex: 1;
}

.cc-role-name {
  font-weight: 600;
  font-size: 0.85rem;
}

.cc-role-sub {
  font-size: 0.72rem;
  color: var(--cc-text-muted);
}

.cc-role-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cc-secondary);
}

.cc-role-admin {
  background: rgba(var(--cc-primary-rgb), 0.1);
  color: var(--cc-primary);
}

.cc-role-doctor {
  background: rgba(var(--cc-secondary-rgb), 0.1);
  color: var(--cc-secondary);
}

.cc-role-desk {
  background: rgba(255, 159, 67, 0.1);
  color: #ff9f43;
}

/* Google Calendar Sync Mockup */
.cc-google-cal-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  font-family: sans-serif;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--cc-border);
}

.cc-google-cal-header {
  font-weight: 700;
  border-bottom: 2px solid #f1f1f1;
  padding-bottom: 12px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cc-google-cal-date {
  font-size: 0.9rem;
  color: #3c4043;
}

.cc-google-icon {
  color: #4285F4;
}

.cc-google-event {
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.cc-google-event.appointment {
  background: #e8f0fe;
  border-left: 4px solid #1a73e8;
}
.cc-google-event.blocked {
  background: #fef7e0;
  border-left: 4px solid #f9ab00;
}

.cc-google-event-time {
  font-weight: 700;
  font-size: 0.75rem;
}
.cc-google-event.appointment .cc-google-event-time {
  color: #1a73e8;
}
.cc-google-event.blocked .cc-google-event-time {
  color: #b06000;
}

.cc-google-event-title {
  color: #3c4043;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Telemedicine Mockup */
.cc-tele-mockup {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--cc-border);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.cc-tele-view {
  display: flex;
  height: 200px;
}

.cc-tele-video {
  flex: 6;
  background: #1e1e2d;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.cc-tele-video i {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.3);
}

.cc-tele-doctor-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.65rem;
  padding: 3px 8px;
  border-radius: 4px;
}

.cc-tele-timer-pill {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #ea5455;
  color: #fff;
  font-size: 0.65rem;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 600;
}
.cc-tele-timer-pill i {
  margin-right: 2px;
  font-size: 0.5rem;
}

.cc-tele-emr {
  flex: 4;
  background: #f8f9fa;
  border-left: 1px solid var(--cc-border);
  padding: 12px;
  display: flex;
  flex-direction: column;
}

.cc-tele-emr-header {
  font-weight: 700;
  font-size: 0.75rem;
  margin-bottom: 10px;
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 6px;
  color: var(--cc-text-primary);
}
.cc-tele-emr-header i {
  color: var(--cc-primary);
  margin-right: 4px;
}

.cc-tele-emr-line {
  height: 8px;
  background: #e9ecef;
  border-radius: 4px;
  margin-bottom: 8px;
}
.cc-tele-emr-line.w-70 {
  width: 70%;
}
.cc-tele-emr-line.w-80 {
  width: 80%;
}
.cc-tele-emr-line.w-85 {
  width: 85%;
}
.cc-tele-emr-line.w-95 {
  width: 95%;
}

.cc-tele-emr-save {
  margin-top: auto;
  height: 28px;
  background: var(--cc-primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
}

/* Hero Signup Card Refinements */
.cc-hero-visual .cc-auth-card {
  background: var(--cc-surface);
  border-radius: var(--cc-radius-lg);
  border: 1px solid var(--cc-border);
  padding: 30px;
  box-shadow: var(--cc-shadow-lg);
  position: relative;
  z-index: 10;
}

.cc-hero-visual .cc-auth-card h4 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--cc-text-primary);
}

/* Trial Card Layout Helper Classes (for CSP compliance) */
.cc-trial-card-text {
  line-height: 1.4;
  margin-bottom: 20px;
}
.cc-trial-alert {
  font-size: 0.8rem;
  border-radius: 8px;
  background-color: #fef2f2;
  border: 1px solid #fee2e2;
  color: #b91c1c;
  margin-bottom: 20px;
}
.cc-trial-form-group {
  margin-bottom: 15px;
}
.cc-trial-form-row {
  margin-bottom: 15px;
}
.cc-trial-form-group-zero {
  margin-bottom: 0;
}
.cc-trial-form-group-relative {
  margin-bottom: 0;
  position: relative;
}
.cc-password-info-trigger {
  background: none;
  border: none;
  cursor: pointer;
  color: #64748b;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  transition: color 0.2s ease-in-out;
}
.cc-password-info-trigger:hover {
  color: var(--cc-primary) !important;
}
.cc-password-toggle {
  position: absolute;
  right: 12px;
  top: 32px;
  background: none;
  border: none;
  cursor: pointer;
  color: #64748b;
  padding: 0 4px;
  transition: color 0.2s ease-in-out;
}
.cc-password-toggle:hover {
  color: var(--cc-primary) !important;
}

/* Tooltip & Checklist */
.cc-password-tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 0;
  background: #1e293b;
  color: #f8fafc;
  padding: 12px;
  border-radius: 8px;
  width: 230px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  z-index: 100;
  border: 1px solid #334155;
  text-align: left;
  transition: opacity 0.2s ease-in-out;
}

/* Show tooltip when trigger is hovered, password input is focused, or tooltip itself is hovered, or show class is applied */
.cc-password-info-trigger:hover ~ .cc-password-tooltip,
.cc-form-control:focus ~ .cc-password-tooltip,
.cc-password-tooltip:hover,
.cc-password-tooltip.show {
  display: block !important;
}

.cc-password-tooltip-title {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.75rem;
  color: #38bdf8;
  display: flex;
  align-items: center;
  gap: 4px;
}
.cc-password-checklist {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.72rem;
}
.cc-password-checklist li {
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}
.cc-password-checklist li i {
  transition: color 0.2s ease;
  font-size: 0.8rem;
  color: #94a3b8;
}
.cc-password-tooltip-arrow {
  position: absolute;
  top: 100%;
  left: 70px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #1e293b;
}
.cc-trial-submit-btn {
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
}

/* Dynamic validation styles */
.cc-password-checklist li.valid {
  color: #10b981 !important;
}
.cc-password-checklist li.valid i {
  color: #10b981 !important;
}

/*# sourceMappingURL=welcome.css.map */
