/* ========================================
   Montor Hero Section Styles
   ======================================== */

.montor-hero {
  position: relative;
  overflow: hidden;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.hero-main-content {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: -80px;
  padding-top: 80px;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 0px !important;
}

/* Hero Content Wrapper */
.hero-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Content */
.hero-content {
  max-width: 600px;
  order: 1;
}

.hero-heading {
  margin: 0 0 24px 0;
  line-height: 1.2;
}

.hero-pre-heading,
.hero-post-heading,
.hero-doctor-name {
  display: inline;
}

.hero-main-heading {
  display: inline;
}

.hero-description {
  margin: 0 0 32px 0;
  max-width: 500px;
  color: rgb(137, 173, 177) !important;
  font-size: 16px !important;
  line-height: 1.6 !important;
  font-weight: 400 !important;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-block;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
}

.hero-btn-primary {
  color: #ffffff;
  border: 2px solid transparent;
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(2, 48, 71, 0.3);
}

.hero-btn-secondary {
  color: #019EB2;
  background-color: transparent;
  border: 2px solid #019EB2;
}

.hero-btn-secondary:hover {
  background-color: #019EB2;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(1, 158, 178, 0.3);
}

/* Doctor Image */
.hero-doctor-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-doctor-image img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ===================================
   Statistics Section - Our Best Results
   =================================== */
.hero-stats-wrapper {
  background-color: rgba(1, 158, 178, 0.15);
  width: 100%;
  padding: 30px 0;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  flex-wrap: nowrap;
}

.stats-title {
  font-family: 'Roboto', sans-serif;
  font-size: 32px;
  font-weight: 900 !important;
  color: #019EB2;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
  line-height: 1;
  padding-right: 40px;
}

.stats-divider {
  width: 4px;
  height: 80px;
  background: #019EB2;
  flex-shrink: 0;
  margin: 0 40px 0 0;
}

.stats-items {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: nowrap;
  border: 3px solid #019EB2;
  background: #ffffff;
  overflow: hidden;
}

.stat-item {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  padding: 25px 50px;
  border: none;
  border-right: 3px solid #019EB2;
  transition: all 0.3s ease;
  min-width: 180px;
  position: relative;
}

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

.stat-item:hover {
  background: #f0fbfc;
  transform: scale(1.02);
}

.stat-number {
  font-family: 'Roboto', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #019EB2;
  margin: 0;
  line-height: 1;
  letter-spacing: -2px;
}

.stat-label {
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #023047;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  line-height: 1.2;
  text-align: center;
  max-width: 120px;
  white-space: nowrap;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-content-wrapper {
    gap: 40px;
  }

  .hero-heading {
    font-size: 40px;
  }

  .stats-title {
    font-size: 24px;
    padding-right: 30px;
  }

  .stats-divider {
    height: 70px;
    margin: 0 30px 0 0;
  }

  .stat-item {
    padding: 20px 35px;
    min-width: 150px;
  }

  .stat-number {
    font-size: 44px;
  }

  .stat-label {
    font-size: 10px;
  }
}

@media (max-width: 768px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    order: 2;
  }

  .hero-doctor-image {
    order: 1;
  }

  .hero-heading {
    font-size: 32px;
  }

  .hero-pre-heading,
  .hero-main-heading,
  .hero-post-heading,
  .hero-doctor-name {
    font-size: 32px !important;
  }

  .hero-description {
    max-width: 100%;
    font-size: 14px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-btn {
    padding: 12px 24px;
    font-size: 12px;
  }

  .hero-stats-wrapper {
    padding: 20px 0;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    align-items: center;
    padding: 0 20px;
  }

  .stats-title {
    font-size: 20px !important;
    padding-right: 0;
  }

  .stats-divider {
    width: 100px;
    height: 3px;
    margin: 0;
  }

  .stats-items {
    justify-content: center;
    flex-direction: row;
    border: 3px solid #019EB2;
  }

  .stat-item {
    padding: 20px 30px;
    min-width: 140px;
    border-right: 3px solid #019EB2;
  }

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

  .stat-number {
    font-size: 40px !important;
  }

  .stat-label {
    font-size: 9px !important;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 28px;
  }

  .hero-pre-heading,
  .hero-main-heading,
  .hero-post-heading,
  .hero-doctor-name {
    font-size: 28px !important;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    gap: 15px;
    padding: 15px 0 0 0;
    margin-top: 20px;
  }

  .stats-title {
    font-size: 16px !important;
  }

  .stats-divider {
    width: 80px;
    height: 2px;
  }

  .stats-items {
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 280px;
    border: 3px solid #019EB2;
  }

  .stat-item {
    width: 100%;
    padding: 20px 30px;
    border-right: none;
    border-bottom: 3px solid #019EB2;
  }

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

  .stat-number {
    font-size: 40px !important;
  }

  .stat-label {
    font-size: 10px !important;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-heading,
.hero-description,
.hero-buttons,
.hero-doctor-image,
.hero-stats {
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero-description {
  animation-delay: 0.2s;
}

.hero-buttons {
  animation-delay: 0.4s;
}

.hero-doctor-image {
  animation-delay: 0.3s;
}

.hero-stats {
  animation-delay: 0.6s;
}

/* Accessibility */
.hero-btn:focus {
  outline: 2px solid #019EB2;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .hero-buttons {
    display: none;
  }

  .montor-hero {
    background-image: none !important;
  }
}

