 /* ===== ROOT VARIABLES (USED) ===== */
:root {
  --light-blue: #e8f4f8;
  --team-green: #34d399;
  --team-orange: #fb923c;
  --team-blue-light: #60a5fa;
  --saaol-green: #16a34a;
  --saaol-green-dark: #15803d;
  --red: #dc2626;
  /*--primary-blue-color: #2563eb;*/
}

/* ===== BACKGROUND ===== */
.bg-saaol-light {
  background-color: var(--light) !important;
}

.bg-saaol-blue {
  background-color: var(--primary-blue-color) !important;
}

/* ===== TYPOGRAPHY ===== */
.text-section-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
}

.text-lead {
  font-size: 20px;
  font-weight: 500;
  color: #4b5563;
  line-height: 1.6;
}

.text-lg {
  font-size: 18px !important;
}

.text-sm {
  font-size: 14px !important;
}

.font-semibold {
  font-weight: 600 !important;
}

.doctor-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  line-height: 20px;
  text-align: left;
}

.doctor_card_txt {
  line-height: 18px;
}

/* ===== COLORS ===== */
.text-saaol-green {
  color: var(--saaol-green) !important;
}

.text-orange-600 {
  color: #ea580c;
}

.text-red-600 {
  color: #dc2626;
}

.text-blue-600 {
  color: #2563eb;
}

/* ===== LAYOUT ===== */
.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-1 {
  flex: 1;
}

.flex-column {
  flex-direction: column;
}

.flex-center-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-total-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.items-stretch {
  align-items: stretch;
}

.gap-8 {
  gap: 32px;
}

.gap-6 {
  gap: 24px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-1200 {
  max-width: 1200px;
}

.h-full {
  height: 100%;
}

/* ===== CARD ===== */
.team-card {
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* ===== AVATAR ===== */
.avatar-large {
  width: 128px;
  height: 128px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue-color);
  font-size: 32px;
  font-weight: 800;
  box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.avatar-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.avatar-small {
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  margin-right: 15px;
}

/* ===== BORDER / SHADOW ===== */
.rounded-3xl {
  border-radius: 20px !important;
}

.shadow-2xl {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2) !important;
}

/* ===== BUTTON ===== */
.landing_btn {
  padding: 16px 32px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

.landing_btn-white-blue {
  background-color: white;
  color: var(--primary-blue-color);
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.landing_btn-white-blue:hover {
  background-color: #f3f4f6;
  transform: scale(1.05);
}

.landing_btn-red {
  background-color: var(--red);
  color: white;
}

.landing_btn-red:hover {
  background-color: #991b1b;
}

/* ===== ANIMATION ===== */
/*.fade-in-scroll {*/
/*  opacity: 0;*/
/*  transform: translateY(20px);*/
/*  transition: opacity 0.5s ease-out, transform 0.5s ease-out;*/
/*}*/

/*.fade-in-scroll.visible {*/
/*  opacity: 1;*/
/*  transform: translateY(0);*/
/*}*/
