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

:root {
  --teal: #0f9b8e;
  --teal-dark: #0c7d73;
  --teal-light: #d1f5f0;
  --teal-bg: #e8faf7;
  --dark: #1a1a1a;
  --gray: #666;
  --gray-light: #999;
  --bg-light: #f5f9f8;
  --white: #ffffff;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 4px 24px rgba(0,0,0,0.1);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
  padding-top: 90px;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  margin: 0 auto;
  padding: 0px 24px;
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--white);
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
}

.navbar-brand svg {
  width: 32px;
  height: 32px;
  color: teal;
}

.navbar-links {
  display: flex;
  gap: 32px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
}

.navbar-actions{
margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}


.navbar-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray);
  transition: color 0.2s;
}

.navbar-links .btn {
  color: white;
}

.navbar-links li:last-child {
  margin-left: auto;
}

.navbar-links li:last-child a.btn {
  padding: 10px 18px;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--teal);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 10px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--teal);
  color: white;
}

.btn-primary:hover {
  background: var(--teal-dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}

.btn-outline-teal:hover {
  background: var(--teal);
  color: var(--white);
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #0c7d73 0%, #0f9b8e 50%, #11b8a8 100%);
  padding: 70px 0;
  color: var(--white);
}

.hero .container {
  padding-top: 35px;
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-content {
  flex: 1;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
  color: var(--white);
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-image {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-image img {
  width: 95%;
  height: 425px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: 80px 0;
  background: var(--bg-light);
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray);
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: left;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  color: var(--teal);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose {
  padding: 80px 0;
  background: var(--white);
}

.why-choose .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.why-choose-image {
  flex: 1;
}

.why-choose-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius);
}

.why-choose-content {
  flex: 1;
}

.why-choose-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 36px;
}

.why-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.why-item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-item-icon svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
}

.why-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.why-item p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== PRICING SECTION ===== */
.pricing {
  padding: 80px 0;
  background: var(--bg-light);
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: left;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  position: relative;
  transition: transform 0.2s;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.popular {
  border-color: var(--teal);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 20px;
  border-radius: 20px;
}

.pricing-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.pricing-card .plan-desc {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 20px;
}

.price {
  margin-bottom: 24px;
}

.price .amount {
  font-size: 48px;
  font-weight: 700;
  color: var(--teal);
}

.price .period {
  font-size: 16px;
  color: var(--gray);
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  font-size: 15px;
  color: var(--gray);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--teal-dark);
  color: var(--white);
  padding: 48px 0 24px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 32px;
}

.footer-brand h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 14px;
  opacity: 0.8;
  max-width: 280px;
}

.footer-links h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  opacity: 0.7;
}

/* ===== PAGE BANNER ===== */
.page-banner {
  background: linear-gradient(135deg, #0c7d73 0%, #0f9b8e 50%, #11b8a8 100%);
  padding: 48px 0;
  padding-top: 100px;
  text-align: center;
  color: var(--white);
}

.page-banner h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 8px;
}

.page-banner p {
  font-size: 17px;
  opacity: 0.9;
}

/* ===== FEATURE DETAIL SECTIONS ===== */
.feature-detail {
  padding: 60px 0;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-detail-image {
  flex: 1;
}

.feature-detail-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
}

.feature-detail-content {
  flex: 1;
}

.feature-detail-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-detail-content p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  font-size: 15px;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* ===== BOOKING PAGE ===== */
.booking-section {
  padding: 48px 0;
}

.booking-layout {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}

.calendar-card {
  flex: 2;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  padding: 28px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.calendar-header h2 {
  font-size: 22px;
  font-weight: 700;
}

.calendar-nav {
  display: flex;
  gap: 8px;
}

.cal-nav-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: all 0.2s;
}

.cal-nav-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.cal-day-label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  padding: 8px 0;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--dark);
}

.cal-day:hover:not(.empty) {
  border-color: var(--teal);
  background: var(--teal-bg);
}

.cal-day.empty {
  border: none;
  cursor: default;
}

.cal-day.today {
  background: var(--teal-light);
  font-weight: 600;
}

.cal-day.selected {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  font-weight: 600;
}

.booking-sidebar {
  flex: 1;
}

.how-to-book {
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  padding: 24px;
}

.how-to-book h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.how-to-book h3 svg {
  color: var(--teal);
}

.how-to-book ol {
  padding-left: 20px;
  margin-bottom: 24px;
}

.how-to-book ol li {
  font-size: 14px;
  color: var(--gray);
  padding: 6px 0;
}

.how-to-book ol li::marker {
  color: var(--teal);
  font-weight: 600;
}

.need-help {
  border-top: 1px solid #eee;
  padding-top: 16px;
}

.need-help strong {
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
}

.need-help p {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 12px;
}

.need-help a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--teal);
  margin-bottom: 8px;
}

.need-help a:hover {
  text-decoration: underline;
}

/* Upcoming Appointments (booking page) */
.upcoming-appointments {
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  padding: 28px;
}

.upcoming-appointments h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.no-appointments {
  text-align: center;
  color: var(--gray);
  font-size: 15px;
  padding: 24px 0;
}

/* ===== TIME SLOTS ===== */
.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #d1d5db;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  cursor: pointer;
  transition: all 0.2s ease;
}

.time::before {
  content: "🕒";
  font-size: 14px;
}

.time:hover {
  border-color: #9ca3af;
  background: #f9fafb;
}

.time.selected {
  background: #009688;
  color: #ffffff;
  border-color: transparent;
}

.time.selected::before {
  filter: brightness(10);
}

/* ===== ABOUT PAGE ===== */
.about-mission {
  padding: 64px 0;
}

.mission-row {
  display: flex;
  align-items: center;
  gap: 48px;
}

.mission-image {
  flex: 1;
}

.mission-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
}

.mission-content {
  flex: 1;
}

.mission-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.mission-content p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-challenge {
  padding: 64px 0;
  background: var(--bg-light);
}

.about-challenge .section-title {
  margin-bottom: 32px;
}

.challenge-card {
  max-width: 760px;
  margin: 0 auto 24px;
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  padding: 32px;
}

.challenge-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.problem-list {
  list-style: none;
}

.problem-list li {
  font-size: 14px;
  color: var(--gray);
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.problem-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e74c3c;
  position: absolute;
  left: 0;
  top: 14px;
}

.solution-list {
  list-style: none;
}

.solution-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--gray);
  padding: 10px 0;
  line-height: 1.6;
}

.solution-list li svg {
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.solution-list li strong {
  color: var(--dark);
}

.about-values {
  padding: 64px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
  text-align: center;
}

.value-icon,
.value-icon-filled {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.value-icon svg,
.value-icon-filled svg {
  color: var(--teal);
}

.value-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.value-item p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

.about-team {
  padding: 64px 0;
  background: var(--bg-light);
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.team-member h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.team-member p {
  font-size: 13px;
  color: var(--gray);
}

/* ===== LOGIN MODAL ===== */
.login-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.login-modal {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  width: 100%;
  max-width: 420px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.login-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--gray-light);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.login-close:hover {
  color: var(--dark);
}

.login-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.login-avatar svg {
  color: var(--teal);
}

.login-modal h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.login-subtitle {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 28px;
}

.login-modal label {
  display: block;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark);
}

.input-group {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 20px;
  transition: border-color 0.2s;
}

.input-group:focus-within {
  border-color: var(--teal);
}

.input-group svg {
  color: var(--gray-light);
  flex-shrink: 0;
}

.input-group input {
  border: none;
  outline: none;
  font-size: 14px;
  width: 100%;
  font-family: inherit;
  color: var(--dark);
}

.input-group input::placeholder {
  color: #bbb;
}

.login-btn {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  margin-bottom: 16px;
}

.login-signup {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 20px;
}

.login-signup a {
  color: var(--teal);
  font-weight: 600;
}

.login-signup a:hover {
  text-decoration: underline;
}

.login-demo {
  background: var(--bg-light);
  border-radius: 8px;
  padding: 12px 16px;
  text-align: left;
  font-size: 13px;
}

.login-demo strong {
  display: block;
  margin-bottom: 2px;
  color: var(--dark);
}

.login-demo span {
  color: var(--gray);
}

/* ===== SIGNUP MODAL ===== */
.page-bg {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.signup-card {
  background: #ffffff;
  width: 100%;
  max-width: 420px;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  position: relative;
  text-align: center;
}

.close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  background: none;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #6b7280;
}

.avatar {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: #d1fae5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.signup-card h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111827;
}

.subtitle {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 24px;
}

.signup-form {
  text-align: left;
}

.signup-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  margin-bottom: 14px;
}

.signup-form input {
  width: 100%;
  display: block;
  margin-top: 6px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  outline: none;
}

.signup-form input::placeholder {
  color: #9ca3af;
}

.signup-form input:focus {
  border-color: #0fb9a7;
  box-shadow: 0 0 0 2px rgba(15, 185, 167, 0.15);
}

.form-footer {
  margin-top: 20px;
  text-align: center;
}

.form-footer p {
  font-size: 14px;
  color: #6b7280;
}

.form-footer a {
  color: #0fb9a7;
  font-weight: 600;
  text-decoration: none;
}

.form-footer a:hover {
  text-decoration: underline;
}

.secondary-link {
  display: block;
  margin-top: 14px;
  font-size: 14px;
}

/* ===== USER DASHBOARD ===== */
.dashboard-welcome {
  background: linear-gradient(135deg, #0c7d73 0%, #0f9b8e 50%, #11b8a8 100%);
  padding: 60px 0;
  color: var(--white);
}

.dashboard-welcome .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 0 24px;           
}


.dashboard-welcome h1 {
    margin: 0;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  white-space: nowrap;
}

.dashboard-welcome p {
    margin: 0;
    font-size: 16px;
    opacity: 0.9;
}

.dashboard-stats {
  padding: 32px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.stat-card p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 8px;
}

.stat-card h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--teal);
}

.dashboard-main {
  padding: 0 0 64px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.dash-card {
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}

.dash-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

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

.dash-card-header h3 {
  margin-bottom: 0;
}

.pet-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.pet-card {
  border: 1px solid #e8e8e8;
  border-radius: var(--radius-sm);
  padding: 16px;
}

.pet-card strong {
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
}

.pet-card p {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 4px;
}

.pet-card small {
  font-size: 12px;
  color: var(--gray-light);
}

.appointment-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}

.appointment-item:last-child {
  border-bottom: none;
}

.appointment-item strong {
  font-size: 14px;
}

.status-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.status-badge.confirmed {
  background: #e8f8f5;
  color: var(--teal);
}

.status-badge.pending {
  background: #fef9e7;
  color: #d4a017;
}

.history-list {
  list-style: none;
}

.history-list li {
  font-size: 14px;
  color: var(--gray);
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.history-list li:last-child {
  border-bottom: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

@media (max-width: 768px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 32px;
  }
  .hero-buttons {
    justify-content: center;
  }
  .why-choose .container {
    flex-direction: column;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .navbar-links {
    display: none;
  }
  .footer-content {
    flex-direction: column;
  }
  .feature-row,
  .feature-row.reverse {
    flex-direction: column;
  }
  .booking-layout {
    flex-direction: column;
  }
  .mission-row {
    flex-direction: column;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .pet-list {
    grid-template-columns: 1fr;
  }
}
