/* ===== VARIABLES ===== */
:root {
  --maroon:     #5C1A1A;
  --cream:      #F5F0EB;
  --dark:       #1A0808;
  --text-sec:   #6B5B5B;
  --text-ter:   #999999;
  --portrait:   #D5CFC9;
  --caveat:     'Caveat', cursive;
  --manrope:    'Manrope', sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--manrope);
  background: var(--cream);
  color: var(--maroon);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { border-radius: 0; cursor: pointer; }

/* ===== SHARED ===== */
.section-label {
  display: block;
  font-family: var(--manrope);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--maroon);
  opacity: 0.5;
  margin-bottom: 12px;
}
.section-label.light {
  color: var(--cream);
  opacity: 0.4;
  margin-bottom: 8px;
}

.section-rule {
  width: 40px;
  height: 2px;
  background: var(--maroon);
  opacity: 0.3;
  margin-bottom: 20px;
}

.field-label {
  display: block;
  font-family: var(--manrope);
  font-size: 13px;
  color: var(--cream);
  opacity: 0.5;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  height: 88vh;
  min-height: 560px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

/* Wide-screen pattern for portrait (9:16) video */
@media (min-aspect-ratio: 4/3) {
  .hero {
    /* Layered pattern: subtle gold geometric on dark maroon */
    background:
      /* Diagonal gold pinstripes */
      repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        rgba(183, 142, 78, 0.04) 40px,
        rgba(183, 142, 78, 0.04) 41px
      ),
      repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(183, 142, 78, 0.04) 40px,
        rgba(183, 142, 78, 0.04) 41px
      ),
      /* Subtle diamond grid */
      repeating-linear-gradient(
        45deg,
        transparent,
        transparent 80px,
        rgba(183, 142, 78, 0.06) 80px,
        rgba(183, 142, 78, 0.06) 82px
      ),
      repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 80px,
        rgba(183, 142, 78, 0.06) 80px,
        rgba(183, 142, 78, 0.06) 82px
      ),
      /* Radial vignette to darken edges */
      radial-gradient(
        ellipse at center,
        rgba(92, 26, 26, 0.0) 30%,
        rgba(92, 26, 26, 0.4) 100%
      ),
      /* Base maroon-dark gradient */
      linear-gradient(
        135deg,
        #1A0808 0%,
        #2d0f0f 25%,
        #3a1515 50%,
        #2d0f0f 75%,
        #1A0808 100%
      );
  }
  .hero-video {
    object-fit: contain;
  }
}

.hero-logo {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero-logo-img {
  width: min(180px, 30vw);
  height: auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-title {
  font-family: var(--caveat);
  font-size: 42px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 2px;
  line-height: 1.15;
}

.hero-divider {
  width: 48px;
  height: 1px;
  background: var(--cream);
  opacity: 0.4;
  margin: 24px auto;
}

.hero-sub {
  font-family: var(--manrope);
  font-size: 14px;
  color: var(--cream);
  opacity: 0.6;
  letter-spacing: 1px;
}

.hero-cta-wrap {
  margin-top: 120px;
}

.hero-cta {
  display: inline-block;
  padding: 16px 56px;
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--cream);
  font-family: var(--caveat);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 3px;
  border-radius: 0;
  transition: background 0.3s ease, color 0.3s ease;
}
.hero-cta:hover {
  background: var(--cream);
  color: var(--maroon);
}

/* ---- Hero Scroll-Down Chevron ---- */
.hero-scroll-btn {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: pointer;
  animation: hero-bounce 2s ease-in-out infinite;
}
.hero-chevron {
  display: block;
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--cream);
  border-bottom: 2px solid var(--cream);
  transform: rotate(45deg);
  opacity: 0.85;
  transition: opacity 0.3s;
}
.hero-scroll-btn:hover .hero-chevron {
  opacity: 1;
}
@keyframes hero-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== DOCTOR BIO ===== */
.doctor {
  background: var(--cream);
}
.doctor-inner {
  display: flex;
  gap: 56px;
  padding: 80px 72px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
}

.doctor-photo-wrap {
  width: 280px;
  height: 360px;
  flex-shrink: 0;
}
.doctor-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  background: var(--cream);
  border: none;
  border-bottom: 3px solid var(--maroon);
}
.doctor-placeholder {
  display: none;
  width: 100%;
  height: 100%;
  background: var(--portrait);
  border: 2px solid rgba(92, 26, 26, 0.13);
  align-items: center;
  justify-content: center;
  font-family: var(--caveat);
  font-size: 15px;
  color: #888;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(0,0,0,0.03) 8px, rgba(0,0,0,0.03) 16px);
}

.doctor-text {
  flex: 1;
  padding-top: 16px;
}

.doctor-name {
  font-family: var(--caveat);
  font-size: 34px;
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 16px;
}

.doctor-bio {
  font-family: var(--manrope);
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.9;
}

.stats-row {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--caveat);
  font-size: 28px;
  font-weight: 600;
  color: var(--maroon);
}
.stat-label {
  font-family: var(--manrope);
  font-size: 12px;
  color: var(--text-ter);
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ===== BOOKING ===== */
.booking {
  background: var(--maroon);
  padding: 72px;
}
.booking-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.booking-heading {
  font-family: var(--caveat);
  font-size: 32px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 36px;
}

.booking-columns {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

/* ---- LEFT: Calendar ---- */
.cal-col {
  flex: 1.4;
}

.cal-inner {
  display: flex;
  gap: 36px;
}

.cal-selected {
  width: 170px;
  flex-shrink: 0;
  border-right: 1px solid rgba(245, 240, 235, 0.08);
  padding-right: 32px;
}
.cal-selected-label {
  display: block;
  font-family: var(--manrope);
  font-size: 11px;
  color: var(--cream);
  opacity: 0.4;
  letter-spacing: 4px;
  margin-bottom: 16px;
}
.cal-day {
  font-family: 'Playfair Display', serif;
  font-size: 88px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1;
}
.cal-month-display {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--cream);
  opacity: 0.6;
  margin-top: 8px;
}
.cal-year {
  font-family: var(--manrope);
  font-size: 12px;
  color: var(--cream);
  opacity: 0.35;
  letter-spacing: 2px;
  margin-top: 8px;
}

.cal-grid-wrap {
  flex: 1;
}
.cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.cal-nav {
  background: none;
  border: none;
  color: var(--cream);
  opacity: 0.4;
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  border-radius: 0;
  transition: opacity 0.2s ease;
}
.cal-nav:hover { opacity: 0.9; }
.cal-month-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
}
.cal-dow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  padding-bottom: 8px;
}
.cal-dow span {
  font-family: var(--manrope);
  font-size: 10px;
  color: var(--cream);
  opacity: 0.35;
  letter-spacing: 1px;
}
.cal-dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 400;
  color: rgba(245, 240, 235, 0.8);
  cursor: pointer;
  border-radius: 0;
  transition: all 0.2s ease;
}
.cal-cell:not(.unavailable):not(.cal-blank):not(.selected):hover {
  color: var(--cream);
}
.cal-cell.selected,
.cal-cell.selected:hover,
.cal-cell.selected:active,
.cal-cell.selected:focus {
  background: var(--cream);
  color: var(--maroon);
  font-weight: 600;
}
.cal-cell.unavailable,
.cal-cell.past-date {
  color: rgba(245, 240, 235, 0.12);
  cursor: default;
  pointer-events: none;
}
.cal-cell.off-day {
  color: rgba(245, 240, 235, 0.15);
  cursor: default;
  pointer-events: none;
}
.cal-cell.fully-booked {
  color: rgba(245, 240, 235, 0.2);
  cursor: default;
  pointer-events: none;
  position: relative;
}
.cal-cell.fully-booked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 25%;
  width: 50%;
  height: 1px;
  background: rgba(245, 240, 235, 0.3);
}
.cal-nav.disabled {
  opacity: 0.15;
  cursor: default;
  pointer-events: none;
}
.cal-blank { cursor: default; }

/* ---- RIGHT: Visit Type + Times ---- */
.cal-right {
  width: 340px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.visit-type-wrap { }
.visit-type-toggle {
  display: flex;
  gap: 0;
}
.visit-btn {
  flex: 1;
  padding: 18px 14px;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 240, 235, 0.27);
  font-family: var(--manrope);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.visit-btn.active {
  background: var(--cream);
  color: var(--maroon);
}

.time-wrap { }
.time-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.time-slot {
  padding: 18px 8px;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 240, 235, 0.13);
  font-family: var(--manrope);
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.2s ease, color 0.2s ease;
}
.time-slot:hover {
  border-color: rgba(245, 240, 235, 0.4);
}
.time-slot.selected {
  background: var(--cream);
  color: var(--maroon);
}
.time-slot.blocked,
.time-slot.booked,
.time-slot:disabled {
  opacity: 0.25;
  cursor: not-allowed;
  text-decoration: line-through;
  border-color: rgba(245, 240, 235, 0.08);
}
.time-slot.blocked:hover,
.time-slot.booked:hover,
.time-slot:disabled:hover {
  border-color: rgba(245, 240, 235, 0.08);
  background: transparent;
}

/* ---- Fully Booked Message ---- */
.fully-booked-msg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 16px;
  margin-top: 16px;
  border: 1px solid rgba(245, 240, 235, 0.12);
  text-align: center;
}
.fully-booked-icon {
  font-size: 20px;
  color: rgba(245, 240, 235, 0.5);
  line-height: 1;
}
.fully-booked-text {
  font-family: var(--manrope);
  font-size: 14px;
  color: rgba(245, 240, 235, 0.6);
  letter-spacing: 0.5px;
}
.next-available-btn {
  padding: 10px 24px;
  background: var(--cream);
  color: var(--maroon);
  border: none;
  font-family: var(--manrope);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.next-available-btn:hover {
  opacity: 0.85;
}

/* ---- Confirm ---- */
.confirm-wrap {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.confirm-btn {
  padding: 16px 52px;
  background: var(--cream);
  color: var(--maroon);
  border: none;
  font-family: var(--manrope);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.confirm-btn:hover { opacity: 0.9; }

/* ===== REVIEWS + MAP ===== */
.reviews {
  background: var(--cream);
}
.reviews-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px;
}

.reviews-heading {
  font-family: var(--caveat);
  font-size: 32px;
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 36px;
}

.reviews-grid {
  display: flex;
  gap: 24px;
  margin-bottom: 56px;
}

.review-card {
  flex: 1;
  padding: 28px;
  border: 1px solid rgba(92, 26, 26, 0.08);
  background: transparent;
}

.review-stars {
  font-family: var(--caveat);
  font-size: 18px;
  color: var(--maroon);
  margin-bottom: 12px;
}

.review-text {
  font-family: var(--manrope);
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.7;
  margin-bottom: 16px;
}

.review-name {
  font-family: var(--manrope);
  font-size: 12px;
  color: var(--text-ter);
  letter-spacing: 1px;
}

.map-label {
  margin-bottom: 12px;
}
.map-wrap {
  width: 100%;
  height: 280px;
  border: 2px solid rgba(92, 26, 26, 0.08);
  overflow: hidden;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--maroon);
  padding: 40px 72px;
  text-align: center;
}
.footer-logo-img {
  width: 100px;
  height: auto;
  margin: 0 auto 8px;
  display: block;
}
.footer-copy {
  font-family: var(--manrope);
  font-size: 12px;
  color: var(--cream);
  opacity: 0.35;
}

/* ===== BOOKING DETAILS PAGE ===== */
.details-page {
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 64px 24px;
}

.details-container {
  width: 100%;
  max-width: 560px;
}

/* Back Link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--manrope);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--maroon);
  opacity: 0.5;
  margin-bottom: 40px;
  transition: opacity 0.3s ease;
}
.back-link:hover { opacity: 1; }
.back-arrow { font-size: 16px; }

/* Header */
.details-header {
  margin-bottom: 32px;
}
.details-eyebrow {
  display: block;
  font-family: var(--manrope);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--maroon);
  opacity: 0.4;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.details-heading {
  font-family: var(--caveat);
  font-size: 34px;
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 16px;
}
.details-rule {
  width: 40px;
  height: 2px;
  background: var(--maroon);
  opacity: 0.3;
}

/* Summary Card */
.summary-card {
  border: 1px solid rgba(92, 26, 26, 0.1);
  padding: 24px 28px;
  margin-bottom: 40px;
}
.summary-title {
  display: block;
  font-family: var(--manrope);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--maroon);
  opacity: 0.4;
  margin-bottom: 16px;
}
.summary-items {
  display: flex;
  gap: 32px;
}
.summary-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.summary-sub {
  font-family: var(--manrope);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--text-ter);
}
.summary-value {
  font-family: var(--manrope);
  font-size: 15px;
  font-weight: 600;
  color: var(--maroon);
}

/* Form */
.details-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.field {
  display: flex;
  flex-direction: column;
}
.field-lbl {
  font-family: var(--manrope);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--maroon);
  opacity: 0.5;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.field-input {
  font-family: var(--manrope);
  font-size: 15px;
  font-weight: 400;
  color: var(--maroon);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(92, 26, 26, 0.15);
  padding: 10px 0;
  outline: none;
  border-radius: 0;
  transition: border-color 0.3s ease;
  width: 100%;
}
.field-input::placeholder {
  color: var(--maroon);
  opacity: 0.25;
}
.field-input:focus {
  border-bottom-color: var(--maroon);
}
.field-textarea {
  resize: vertical;
  min-height: 72px;
  line-height: 1.6;
}
.field-error {
  font-family: var(--manrope);
  font-size: 12px;
  color: #AA3333;
  margin-top: 6px;
  min-height: 18px;
}
.field-input.error {
  border-bottom-color: #AA3333;
}

/* Phone field */
.phone-wrap {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid rgba(92, 26, 26, 0.15);
  transition: border-color 0.3s ease;
}
.phone-wrap:focus-within {
  border-bottom-color: var(--maroon);
}
.phone-wrap.error {
  border-bottom-color: #AA3333;
}
.phone-wrap .phone-input {
  border-bottom: none;
  flex: 1;
}

/* Country code dropdown */
.country-select {
  position: relative;
  flex-shrink: 0;
}
.country-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  font-family: var(--manrope);
  font-size: 15px;
  color: var(--maroon);
  padding: 10px 12px 10px 0;
  cursor: pointer;
  border-right: 1px solid rgba(92, 26, 26, 0.1);
  margin-right: 12px;
  transition: background 0.2s ease;
}
.country-arrow {
  font-size: 8px;
  opacity: 0.4;
  transition: transform 0.2s ease;
}
.country-btn:hover {
  background: rgba(92, 26, 26, 0.03);
}

.country-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  background: var(--cream);
  border: 1px solid rgba(92, 26, 26, 0.12);
  min-width: 140px;
}
.country-dropdown.open {
  display: block;
}
.country-option {
  padding: 10px 16px;
  font-family: var(--manrope);
  font-size: 14px;
  color: var(--maroon);
  cursor: pointer;
  transition: background 0.15s ease;
}
.country-option:hover {
  background: rgba(92, 26, 26, 0.05);
}
.country-option.selected {
  font-weight: 600;
}

/* Confirm Button */
.details-confirm-btn {
  width: 100%;
  padding: 18px 52px;
  background: var(--maroon);
  color: var(--cream);
  border: none;
  font-family: var(--manrope);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
  margin-top: 8px;
}
.details-confirm-btn:hover { opacity: 0.9; }

.disclaimer {
  font-family: var(--manrope);
  font-size: 12px;
  color: var(--text-ter);
  text-align: center;
  line-height: 1.6;
  margin-top: -12px;
}

/* Success Screen */
.success-screen {
  position: fixed;
  inset: 0;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.success-inner {
  text-align: center;
  max-width: 400px;
  padding: 24px;
}
.success-check {
  width: 72px;
  height: 72px;
  border: 2px solid var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--maroon);
  margin: 0 auto 24px;
}
.success-heading {
  font-family: var(--caveat);
  font-size: 34px;
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 16px;
}
.success-text {
  font-family: var(--manrope);
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.7;
  margin-bottom: 32px;
}
.success-btn {
  display: inline-block;
  padding: 16px 48px;
  background: var(--maroon);
  color: var(--cream);
  border: none;
  font-family: var(--manrope);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.success-btn:hover { opacity: 0.9; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .doctor-inner {
    flex-direction: column;
    padding: 60px 32px;
    align-items: center;
  }
  .doctor-photo-wrap {
    width: 100%;
    max-width: 400px;
    height: 320px;
  }
  .doctor-text {
    padding-top: 0;
  }

  .booking {
    padding: 48px 32px;
  }
  .booking-columns {
    flex-direction: column;
  }
  /* unwrap cal-right so its children become direct flex items */
  .cal-right {
    display: contents;
  }
  .visit-type-wrap { order: 1; width: 100%; }
  .cal-col          { order: 2; width: 100%; }
  .time-wrap        { order: 3; width: 100%; }
  .cal-inner {
    flex-direction: column;
  }
  .cal-selected {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(245, 240, 235, 0.08);
    padding-right: 0;
    padding-bottom: 24px;
    margin-bottom: 24px;
    display: flex;
    gap: 24px;
    align-items: flex-end;
  }
  .cal-selected-label {
    margin-bottom: 0;
  }
  .cal-day { font-size: 56px; }
  .cal-month-display { font-size: 22px; margin-top: 0; }

  .reviews-inner {
    padding: 48px 32px;
  }
  .reviews-grid {
    flex-direction: column;
  }

  /* Details page tablet */
  .details-page {
    padding: 48px 32px;
  }
  .summary-items {
    flex-wrap: wrap;
    gap: 20px;
  }
}

@media (max-width: 680px) {
  .hero-title {
    font-size: 32px;
  }
  .hero-cta-wrap {
    margin-top: 60px;
  }

  .doctor-inner {
    padding: 48px 24px;
    gap: 32px;
  }
  .doctor-photo-wrap {
    height: 280px;
  }

  .stats-row {
    flex-wrap: wrap;
    gap: 24px;
  }

  .booking {
    padding: 48px 24px;
  }
  .visit-type-toggle {
    flex-direction: column;
  }
  .visit-btn {
    width: 100%;
  }
  .time-grid {
    grid-template-columns: 1fr 1fr;
  }

  .reviews-inner {
    padding: 48px 24px;
  }

  .footer {
    padding: 32px 24px;
  }

  /* Details page mobile */
  .details-page {
    padding: 40px 20px;
  }
  .name-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .summary-items {
    flex-direction: column;
    gap: 16px;
  }
}
