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

body { font-family: 'Inter', sans-serif; color: #1a1a1a; line-height: 1.6; background: #fafafa; }

h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 600; line-height: 1.2; }

h1 { font-size: 3.5rem; margin-bottom: 1.5rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.nav { background: #fff; border-bottom: 1px solid #e5e5e5; padding: 1.25rem 0; position: sticky; top: 0; z-index: 100; }
.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: #2c5f5f; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: #666; text-decoration: none; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: #2c5f5f; }

.hero { position: relative; height: 600px; display: flex; align-items: center; overflow: hidden; }
.hero-img { position: absolute; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(44,95,95,0.85), rgba(44,95,95,0.6)); }
.hero-content { position: relative; z-index: 2; color: #fff; max-width: 600px; }
.hero-subtitle { font-size: 1.25rem; margin-bottom: 2rem; opacity: 0.95; }

.btn { display: inline-block; padding: 0.875rem 2rem; border-radius: 8px; text-decoration: none; font-weight: 600; transition: all 0.2s; border: none; cursor: pointer; font-size: 1rem; }
.btn-primary { background: #d4a373; color: #fff; }
.btn-primary:hover { background: #c18f5f; transform: translateY(-2px); box-shadow: 0 8px 16px rgba(212,163,115,0.3); }
.btn-full { width: 100%; }
.btn-text { background: none; border: none; color: #2c5f5f; cursor: pointer; font-weight: 500; padding: 0.5rem 1rem; }
.btn-text:hover { text-decoration: underline; }
.btn-text.danger { color: #c44; }

.stats { background: #fff; padding: 3rem 0; border-bottom: 1px solid #e5e5e5; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.stat-number { font-size: 3rem; font-weight: 700; color: #2c5f5f; font-family: 'Playfair Display', serif; }
.stat-label { color: #666; font-size: 0.95rem; margin-top: 0.5rem; }

.booking-section { padding: 5rem 0; }
.booking-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; }
.booking-form { background: #fff; padding: 3rem; border-radius: 12px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.form-subtitle { color: #666; margin-bottom: 2rem; }
.form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-weight: 500; color: #333; font-size: 0.95rem; }
.input { padding: 0.875rem 1rem; border: 1px solid #ddd; border-radius: 8px; font-size: 1rem; font-family: 'Inter', sans-serif; transition: border 0.2s; }
.input:focus { outline: none; border-color: #2c5f5f; }
.textarea { min-height: 100px; resize: vertical; }
.form-note { font-size: 0.875rem; color: #666; text-align: center; margin-top: 0.5rem; }

.practitioner-select { display: flex; flex-direction: column; gap: 0.75rem; }
.practitioner-option { cursor: pointer; }
.practitioner-option input { display: none; }
.practitioner-card { display: flex; align-items: center; gap: 1rem; padding: 1rem; border: 2px solid #e5e5e5; border-radius: 8px; transition: all 0.2s; }
.practitioner-option input:checked + .practitioner-card { border-color: #2c5f5f; background: #f8fafa; }
.practitioner-card img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.practitioner-name { font-weight: 600; color: #333; }
.practitioner-specialty { font-size: 0.875rem; color: #666; }

.booking-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.info-card { background: #fff; padding: 2rem; border-radius: 12px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.checklist { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.checklist li { padding-left: 1.75rem; position: relative; color: #555; }
.checklist li:before { content: '✓'; position: absolute; left: 0; color: #2c5f5f; font-weight: 700; }
.insurance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1rem; }
.insurance-badge { background: #f0f0f0; padding: 0.5rem 1rem; border-radius: 6px; text-align: center; font-size: 0.875rem; font-weight: 500; }
.link { color: #2c5f5f; text-decoration: none; font-weight: 500; font-size: 0.95rem; }
.link:hover { text-decoration: underline; }
.info-img { width: 100%; border-radius: 8px; margin-bottom: 1rem; }
.info-caption { font-size: 0.875rem; color: #666; }

.trust-section { padding: 5rem 0; background: #fff; }
.section-title { text-align: center; margin-bottom: 3rem; }
.testimonials { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.testimonial { padding: 2rem; background: #f8fafa; border-radius: 12px; border-left: 4px solid #d4a373; }
.testimonial-rating { color: #d4a373; font-size: 1.25rem; margin-bottom: 1rem; }
.testimonial-text { font-size: 1.05rem; color: #333; margin-bottom: 1rem; line-height: 1.7; }
.testimonial-author { color: #666; font-size: 0.95rem; font-weight: 500; }

.footer { background: #2c5f5f; color: #fff; padding: 3rem 0 2rem; margin-top: 5rem; }
.footer-content { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.2); }
.footer-bottom p { color: rgba(255,255,255,0.6); font-size: 0.875rem; }

.dashboard-header { background: linear-gradient(135deg, #2c5f5f, #3a7575); color: #fff; padding: 3rem 0; }
.dashboard-header .container { display: flex; justify-content: space-between; align-items: center; }
.dashboard-welcome h1 { color: #fff; font-size: 2.5rem; margin-bottom: 0.5rem; }
.dashboard-welcome p { opacity: 0.9; font-size: 1.1rem; }

.dashboard-content { padding: 3rem 0; }
.dashboard-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; }
.dashboard-main { display: flex; flex-direction: column; gap: 2rem; }
.dashboard-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }

.card { background: #fff; border-radius: 12px; padding: 2rem; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.badge { background: #e8f4f4; color: #2c5f5f; padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.875rem; font-weight: 600; }

.appointment-list { display: flex; flex-direction: column; gap: 1rem; }
.appointment-card { display: flex; gap: 1.5rem; padding: 1.5rem; border: 1px solid #e5e5e5; border-radius: 10px; transition: all 0.2s; }
.appointment-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.appointment-card.upcoming { border-left: 4px solid #d4a373; }
.appointment-card.completed { opacity: 0.7; }
.appointment-date { text-align: center; min-width: 60px; }
.date-day { font-size: 2rem; font-weight: 700; color: #2c5f5f; font-family: 'Playfair Display', serif; line-height: 1; }
.date-month { font-size: 0.875rem; color: #666; text-transform: uppercase; margin-top: 0.25rem; }
.appointment-details { flex: 1; }
.appointment-details h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.appointment-practitioner { color: #2c5f5f; font-weight: 500; margin-bottom: 0.25rem; }
.appointment-time, .appointment-location { color: #666; font-size: 0.95rem; }
.appointment-status { color: #5a5; font-weight: 500; font-size: 0.95rem; }
.appointment-actions { display: flex; gap: 0.5rem; align-items: center; }

.quick-actions { display: grid; gap: 0.75rem; }
.action-btn { display: flex; align-items: center; gap: 1rem; padding: 1rem; background: #f8fafa; border-radius: 8px; text-decoration: none; color: #333; transition: all 0.2s; }
.action-btn:hover { background: #e8f4f4; transform: translateX(4px); }
.action-icon { font-size: 1.5rem; }

.care-team { display: flex; flex-direction: column; gap: 1rem; }
.team-member { display: flex; align-items: center; gap: 1rem; }
.team-member img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.team-name { font-weight: 600; color: #333; }
.team-role { font-size: 0.875rem; color: #666; }

.progress-item { margin-bottom: 1.25rem; }
.progress-label { display: flex; justify-content: space-between; margin-bottom: 0.5rem; font-size: 0.95rem; }
.progress-percent { font-weight: 600; color: #2c5f5f; }
.progress-bar { height: 8px; background: #e5e5e5; border-radius: 10px; overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, #2c5f5f, #d4a373); border-radius: 10px; transition: width 0.3s; }

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  .hero { height: 500px; }
  .stats-grid { grid-template-columns: 1fr; }
  .booking-layout, .dashboard-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .footer-content { flex-direction: column; gap: 1.5rem; text-align: center; }
  .nav-links { gap: 1rem; }
  .dashboard-header .container { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}