/* CSS Variables */
:root {
  --petparent: #E85D4C;
  --petparent-deep: #D14A3A;
  --petprofessional: #17A2B3;
  --petprofessional-deep: #12828F;
  --cream: #FBF8F4;
  --linen: #F5F0E8;
  --bark: #3D3632;
  --stone: #6E6660;
  --pebble: #A8A099;
  --white: #FFFFFF;
  --success: #2E7D32;
  --warning: #ED6C02;
  --border: #E0E0E0;
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Base Typography */
body {
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(to bottom, var(--cream) 0%, #FAF6F0 50%, var(--linen) 100%);
  background-attachment: fixed;
  color: var(--bark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===================================
   Header & Navigation
   =================================== */

.top-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 100;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.logo {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--bark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  color: var(--stone);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  background: var(--linen);
  color: var(--bark);
}

.user-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.user-name {
  font-weight: 500;
  color: var(--stone);
  font-size: 0.95rem;
}

.btn {
  letter-spacing: 1px;
  border-radius: 8px;
  font-size: 1rem;
  transition: background 0.2s;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
}

/* Buttons */
.btn-primary {
  background: var(--petprofessional-deep);
  border: none;
  color: #fff;
}

.btn-primary:hover {
  background: var(--petprofessional);
  color: #fff;
}

/* Buttons */
.btn-secondary {
  background: var(--petparent-deep);
  border: none;
  color: #fff;
}

.btn-secondary:hover {
  background: var(--petparent);
  color: #fff;
}

.btn-outline {
  border: 1px solid var(--border);
  color: var(--stone);
  background: transparent;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover {
  border-color: var(--petprofessional);
  color: var(--petprofessional);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn-success {
  background: var(--success);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.btn-success:hover {
  background: #1B5E20;
  color: #fff;
}

.btn-decline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--stone);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: border-color 0.2s, color 0.2s;
}

.btn-decline:hover {
  border-color: var(--petparent);
  color: var(--petparent);
}

.btn-logout {
  background: var(--linen);
  color: var(--bark);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: background 0.2s;
}

.btn-logout:hover {
  background: rgba(0, 0, 0, 0.08);
  color: var(--bark);
}

/* ===================================
   Welcome Section
   =================================== */

.welcome {
  padding: 3.5rem 0 4rem;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.welcome::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.welcome::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.welcome h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.welcome p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ===================================
   Main Content
   =================================== */

.main-content {
  padding: 3rem 0 4rem;
}

.section-heading {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--bark);
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  border-radius: 2px;
}

/* Section Titles */
.section-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--bark);
}

/* ===================================
   Quick Stats
   =================================== */

.quick-stats {
  background: var(--white);
  padding: 0;
  margin-bottom: 3rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.stat-box {
  text-align: center;
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  transition: all 0.3s ease;
}

.stat-box:last-child {
  border-right: none;
}

.stat-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stat-box:hover::before {
  transform: scaleX(1);
}

.stat-number {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.8rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.25rem;
  transition: transform 0.3s ease;
}

.stat-box:hover .stat-number {
  transform: scale(1.1);
}

.stat-label {
  color: var(--stone);
  font-size: 1rem;
  font-weight: 500;
}

/* Stats Cards */
.stat-card {
  background: var(--white);
  border: 1px solid var(--pebble);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.stat-card .stat-value {
  font-family: 'Libre Baskerville', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--bark);
  margin-bottom: 0.25rem;
}

.stat-card .stat-label {
  color: var(--stone);
  font-size: 0.95rem;
}

.stat-card.highlight {
  border-color: var(--petprofessional);
  border-width: 1px;
}

.stat-card.highlight .stat-value {
  color: var(--petprofessional);
}

/* ===================================
   Booking Cards
   =================================== */

/* Booking Request Cards */
.booking-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--petprofessional);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}

.booking-card.urgent {
  border-left-color: var(--warning);
}

.booking-title {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.booking-meta {
  color: var(--stone);
  font-size: 0.95rem;
  line-height: 1.8;
}

.booking-meta strong {
  color: var(--bark);
}

.status-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

.status-new {
  background: #E3F2FD;
  color: #1565C0;
}

.status-confirmed {
  background: #E8F5E9;
  color: var(--success);
}

.status-pending {
  background: #FFF3E0;
  color: var(--warning);
}

/* ===================================
   Action Cards
   =================================== */

.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.action-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.action-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.action-card:hover::before {
  transform: scaleX(1);
}

.action-card:hover {
  transform: translateY(-6px);
}

.action-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all 0.3s ease;
}

.action-card:hover .action-card-icon {
  transform: scale(1.1) rotate(-5deg);
}

.action-card-icon i {
  font-size: 2rem;
  color: var(--white);
}

.action-card h3 {
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--bark);
  transition: color 0.2s;
}

.action-card p {
  color: var(--stone);
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

/* Action Buttons */
.action-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: var(--bark);
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  margin-bottom: 0.75rem;
}

.action-btn:hover {
  border-color: var(--petprofessional);
  background: #F0FAFB;
  color: var(--bark);
}

.action-btn-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.action-btn-icon.primary {
  background: var(--petprofessional);
  color: #fff;
}

.action-btn-icon.secondary {
  background: var(--petparent);
  color: #fff;
}

.action-btn-text h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.action-btn-text p {
  font-size: 0.9rem;
  color: var(--stone);
  margin: 0;
}

/* ===================================
   Info box
   =================================== */

/* Info Box */
.info-box {
  background: #E3F2FD;
  border: 1px solid #90CAF9;
  border-radius: 10px;
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-box-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-box h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #1565C0;
}

.info-box p {
  font-size: 0.9rem;
  color: var(--stone);
  margin: 0;
}

/* ===================================
   Verification Section (Professional)
   =================================== */

.verification-alert {
  background: linear-gradient(135deg, #FFFBF0 0%, var(--white) 100%);
  border-radius: 16px;
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto 3rem;
  border: 1px solid #F5C542;
  box-shadow: 0 8px 24px rgba(245, 197, 66, 0.2);
  position: relative;
  overflow: hidden;
}

.verification-alert::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 197, 66, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.verification-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* ===================================
   Earning Section (Professional)
   =================================== */

/* Earnings Summary */
.earnings-card {
  background: var(--petprofessional-deep);
  border-radius: 12px;
  padding: 1.5rem;
  color: #fff;
}

.earnings-card .earnings-label {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 0.25rem;
}

.earnings-card .earnings-value {
  font-family: 'Libre Baskerville', serif;
  font-size: 2rem;
  font-weight: 700;
}

.earnings-card .earnings-period {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}


@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.verification-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #FFF9E6 0%, #FFEDCC 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(212, 160, 23, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

.verification-icon i {
  font-size: 1.75rem;
  color: #D4A017;
}

.verification-header-text h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  background: linear-gradient(135deg, var(--bark) 0%, #2a2421 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.verification-header-text p {
  margin: 0;
  color: var(--stone);
  font-size: 0.95rem;
}

.verification-steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.verification-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
}

.verification-step:hover {
  background: var(--white);
  transform: translateX(6px);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  font-size: 1.05rem;
  border: none;
  transition: all 0.3s ease;
}

.verification-step:hover .step-number {
  transform: scale(1.1);
}

.step-content {
  flex: 1;
}

.step-content h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  color: var(--bark);
}

.step-content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.5;
}

.step-arrow {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--petprofessional);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
}

.user-avatar.professional {
  background-color: var(--petprofessional);
}
.user-avatar.petparent {
  background-color: var(--petparent);
}

/* ===================================
   Welcome Section
   =================================== */
/* Welcome Banner */
.welcome-banner {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.welcome-banner h1 {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}

.welcome-banner p {
  color: var(--stone);
  font-size: 1.1rem;
  margin: 0;
}

/* ===================================
   Help Section
   =================================== */

.help-section {
  border-radius: 16px;
  padding: 2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.help-section h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--bark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.help-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.help-link {
  color: var(--stone);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--white);
}

.help-link:hover {
  color: var(--white);
  transform: translateY(-2px);
}

.help-link i {
  transition: color 0.3s ease;
}

.help-link:hover i {
  color: var(--white);
}

/* ===================================
   Footer
   =================================== */

footer {
  background: var(--cream);
  padding: 2rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--pebble);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--bark);
}

.footer-copy {
  width: 100%;
  text-align: center;
  color: var(--pebble);
  font-size: 0.85rem;
  margin-top: 1rem;
}

/* ===================================
   Animations
   =================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.verification-alert {
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.quick-stats {
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.action-grid .action-card:nth-child(1) {
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.action-grid .action-card:nth-child(2) {
  animation: fadeInUp 0.6s ease-out 0.35s both;
}

.action-grid .action-card:nth-child(3) {
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.action-grid .action-card:nth-child(4) {
  animation: fadeInUp 0.6s ease-out 0.45s both;
}

.action-grid .action-card:nth-child(5) {
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

.action-grid .action-card:nth-child(6) {
  animation: fadeInUp 0.6s ease-out 0.55s both;
}

.help-section {
  animation: fadeInUp 0.6s ease-out 0.6s both;
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 768px) {
  .welcome {
    padding: 2.5rem 0 3rem;
  }

  .welcome h1 {
    font-size: 2rem;
  }

  .welcome::before,
  .welcome::after {
    width: 300px;
    height: 300px;
  }

  .user-menu {
    gap: 1rem;
  }

  .user-name {
    display: none;
  }

  .verification-alert {
    padding: 1.5rem;
  }

  .verification-header {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .verification-header-text h3 {
    font-size: 1.15rem;
  }

  .verification-step {
    padding: 0.85rem;
  }

  .step-content h4 {
    font-size: 1rem;
  }

  .step-content p {
    font-size: 0.85rem;
  }

  .action-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .stat-box {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .stat-box:last-child {
    border-bottom: none;
  }

  .help-section {
    padding: 1.5rem;
  }

  .help-links {
    flex-direction: column;
    align-items: stretch;
  }
}

/* PawTrack Marketing Site - Custom Styles */
/* Use alongside Bootstrap 5.3 and base.css */

/* ============================================
   BUTTONS - Brand Colors
   ============================================ */
.btn-petparent {
  background-color: var(--petparent);
  border-color: var(--petparent);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-petparent:hover {
  background-color: var(--petparent-deep);
  border-color: var(--petparent-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 93, 76, 0.3);
}

.btn-petprofessional {
  background-color: var(--petprofessional);
  border-color: var(--petprofessional);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-petprofessional:hover {
  background-color: var(--petprofessional-deep);
  border-color: var(--petprofessional-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(23, 162, 179, 0.3);
}

.btn-outline-petparent {
  border: 1px solid var(--petparent);
  color: var(--petparent);
  background: transparent;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-outline-petparent:hover {
  background-color: var(--petparent);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================
   CARD STYLES
   ============================================ */
.card-custom {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: none;
  transition: all 0.3s ease;
  overflow: hidden;
}

.card-custom:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Pet Cards */
.pet-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  transition: border-color 0.2s;
  text-align: center;
}

.pet-card:hover {
  transform: translateY(-4px);
  border-color: var(--petparent);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.pet-card .pet-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

.pet-card .pet-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.pet-card .pet-details {
  color: var(--stone);
  font-size: 0.95rem;
}

.pet-card .species-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--linen);
  color: var(--stone);
  margin-top: 0.5rem;
}

.pet-avatar-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 16px;
  background-size: cover;
  background-position: center;
}

.pet-avatar-circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section-heading {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--bark);
  position: relative;
  padding-bottom: 1rem;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
}

.section-subheading {
  font-size: 1.15rem;
  color: var(--stone);
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* ============================================
   ICON BADGES
   ============================================ */
.icon-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.icon-badge-petparent {
  background: rgba(232, 93, 76, 0.1);
  color: var(--petparent);
}

.icon-badge-petprofessional {
  background: rgba(23, 162, 179, 0.1);
  color: var(--petprofessional);
}

.icon-badge:hover {
  transform: scale(1.1);
}

/* ============================================
   FORM STYLES
   ============================================ */
.form-control {
  border: 1px solid var(--pebble);
  border-radius: 8px;
}

.form-control:focus {
  border-color: var(--petprofessional);
  box-shadow: 0 0 0 3px rgba(23, 162, 179, 0.15);
}

/* ============================================
   ALERTS (Brand colors)
   ============================================ */
.alert-success {
  background-color: rgba(23, 162, 179, 0.1);
  color: var(--petprofessional-deep);
  border: none;
  border-radius: 8px;
}

.alert-danger {
  background-color: rgba(232, 93, 76, 0.1);
  color: var(--petparent-deep);
  border: none;
  border-radius: 8px;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.accordion .btn-link {
  font-family: 'Libre Baskerville', serif;
}

.accordion .btn-link:hover {
  color: var(--petprofessional) !important;
}

.accordion .btn-link:focus {
  box-shadow: none;
}

.faq-icon {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion .btn-link:not(.collapsed) .faq-icon {
  transform: rotate(180deg);
}

/* ============================================
   NAVIGATION
   ============================================ */
header a.text-decoration-none:hover {
  color: var(--petprofessional) !important;
}

/* ============================================
   FOOTER
   ============================================ */
footer a:hover {
  color: white !important;
}

/* ============================================
   UTILITY - Border radius
   ============================================ */
.rounded-4 {
  border-radius: 1rem !important;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  color: var(--bark);
  line-height: 1.3;
  letter-spacing: 1px;
}

.btn-login {
  background-color: var(--petparent);
  border-color: var(--petparent);
  color: #FFF;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

/* ===================================
   Accessibility
   =================================== */

@media (prefers-reduced-motion: reduce) {

  .action-card,
  .verification-step,
  .help-link {
    transition: none !important;
  }

  .verification-alert,
  .quick-stats,
  .action-card,
  .help-section {
    animation: none !important;
  }

  .verification-icon {
    animation: none !important;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .welcome-banner h1 {
    font-size: 1.5rem;
  }

  .stat-card .stat-value {
    font-size: 1.5rem;
  }

  .booking-meta {
    font-size: 0.9rem;
  }
}

/* High Contrast Support */
@media (prefers-contrast: high) {

  .stat-card,
  .booking-card,
  .action-btn {
    border-width: 1px;
  }
}