body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding-top: 56px;
}

.hero-carousel .hero-slide {
  position: relative;
  height: 85vh;
  min-height: 500px;
  max-height: 900px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-carousel .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,82,118,0.7) 0%, rgba(46,134,193,0.5) 100%);
}

.hero-carousel .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.hero-carousel .hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-carousel .hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

.hero-carousel .hero-btn {
  padding: 12px 40px;
  font-size: 1.1rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  body { padding-top: 50px; }
  .hero-carousel .hero-slide {
    height: 60vh;
    min-height: 350px;
  }
  .hero-carousel .hero-title { font-size: 1.8rem; }
  .hero-carousel .hero-subtitle { font-size: 1rem; }
  .hero-carousel .hero-btn { padding: 10px 30px; font-size: 1rem; }
  .steps { flex-wrap: wrap; gap: 8px; }
  .steps .step { font-size: 0.8rem; }
  .steps .step .badge { display: none; }
  .time-slots { grid-template-columns: repeat(4, 1fr); }
  .service-card .card-body { padding: 1rem !important; }
}

@media (max-width: 480px) {
  .hero-carousel .hero-slide {
    height: 55vh;
    min-height: 300px;
  }
  .hero-carousel .hero-title { font-size: 1.4rem; }
  .hero-carousel .hero-subtitle { font-size: 0.85rem; }
  .hero-carousel .hero-btn { padding: 8px 20px; font-size: 0.9rem; }
  .time-slots { grid-template-columns: repeat(3, 1fr); gap: 4px; }
  .time-slot { font-size: 0.75rem; padding: 6px 2px; }
  .page-header { padding: 1rem 0 !important; }
  .page-header h1 { font-size: 1.5rem; }
}

.page-header {
  background: linear-gradient(135deg, #1a5276, #2e86c1);
  color: white;
}

.service-card {
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.steps .step {
  font-size: 0.9rem;
  color: #6c757d;
  white-space: nowrap;
}

.steps .step.active {
  color: #0d6efd;
  font-weight: 600;
}

.steps .badge {
  font-size: 0.8rem;
}

.service-select {
  cursor: pointer;
  border: 2px solid #dee2e6;
  transition: all 0.3s;
}

.service-select:hover {
  border-color: #0d6efd;
  background: #f8f9ff;
}

.service-select.selected {
  border-color: #0d6efd;
  background: #e7f1ff;
}

.massagist-select {
  cursor: pointer;
  border: 2px solid #dee2e6;
  transition: all 0.3s;
}

.massagist-select:hover {
  border-color: #198754;
  background: #f0fff4;
}

.massagist-select.selected {
  border-color: #198754;
  background: #d1fae5;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 8px;
  max-height: 300px;
  overflow-y: auto;
}

.time-slot {
  padding: 8px 4px;
  text-align: center;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.2s;
}

.time-slot:hover {
  border-color: #0d6efd;
  background: #e7f1ff;
}

.time-slot.selected {
  background: #0d6efd;
  color: white;
  border-color: #0d6efd;
}

.time-slot.unavailable {
  opacity: 0.4;
  cursor: not-allowed;
  background: #f8f9fa;
}

.contact-map { width: 100%; height: 300px; }
@media (max-width: 768px) { .contact-map { height: 220px; } }

.img-fluid.rounded.shadow {
  max-height: 400px;
  width: 100%;
  object-fit: cover;
}

footer .list-unstyled li { margin-bottom: 6px; }
@media (max-width: 768px) {
  footer .col-lg-4 { margin-bottom: 1.5rem; }
}
