/* css/suelo-pelvico.css */

/* Header Styling */
header.masthead.suelo-pelvico-header {
  background: linear-gradient(135deg, var(--color-3) 0%, var(--color-2) 100%);
  min-height: 50vh;
  height: auto;
  padding-top: 180px;
  padding-bottom: 120px;
  margin-bottom: 0;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

header.masthead.suelo-pelvico-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  pointer-events: none;
}

header.masthead.suelo-pelvico-header .intro-text {
  padding-top: 0;
  padding-bottom: 0;
  z-index: 1;
}

header.masthead.suelo-pelvico-header .intro-heading {
  font-family: var(--heading-font);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
  letter-spacing: -1px;
}

/* Pelvic Section Redesign */
.pelvic-section {
  padding: 80px 0;
  background-color: #fff;
}

.pelvic-item {
  margin-bottom: 100px;
}

.pelvic-item:last-child {
  margin-bottom: 0;
}

/* Image Styling */
.pelvic-image {
  position: relative;
  padding: 20px;
  display: flex;
  justify-content: center;
}

.pelvic-image img.rounded-circle {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border: 10px solid var(--bg-light);
  box-shadow: 0 15px 35px rgba(195, 159, 148, 0.2);
  transition: transform 0.3s ease;
}

.pelvic-item:hover .pelvic-image img.rounded-circle {
  transform: scale(1.05);
}

/* Floating Icon */
.pelvic-icon {
  position: absolute;
  bottom: 20px;
  right: 20%;
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--color-3);
  z-index: 2;
}

.pelvic-icon.icon-left {
  right: auto;
  left: 20%;
}

.pelvic-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Content Styling */
.pelvic-content {
  padding: 20px;
}

.pelvic-content h4 {
  font-family: var(--heading-font);
  font-size: 2.2rem;
  color: var(--color-3);
  margin-bottom: 10px;
  font-weight: 700;
}

.pelvic-content .subheading {
  font-family: "Dancing Script", cursive;
  font-size: 1.8rem;
  color: var(--color-2);
  margin-bottom: 25px;
}

.pelvic-content p {
  font-family: var(--body-font);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 20px;
}

.pelvic-content strong {
  color: var(--color-3);
  font-weight: 600;
}

/* List Styling */
.pelvic-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.pelvic-list li {
  font-family: var(--body-font);
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.pelvic-list li i {
  color: var(--color-3);
  margin-right: 15px;
  font-size: 0.9rem;
}

.note {
  font-size: 0.9rem !important;
  color: #888 !important;
  font-style: italic;
}

.highlight {
  color: var(--color-3);
  font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .pelvic-item {
    margin-bottom: 60px;
    text-align: center;
  }

  .pelvic-image {
    margin-bottom: 30px;
  }

  .pelvic-icon {
    right: 10%;
  }

  .pelvic-icon.icon-left {
    left: 10%;
  }

  .pelvic-list li {
    justify-content: center;
  }
}
/* Maternity section - match pelvic styles */
.maternity-section {
  padding: 80px 0;
  background-color: #fff;
}

.maternity-services {
  margin-top: 30px;
}

.maternity-services .col-lg-6 {
  display: flex;
}

.service-item {
  background-color: var(--bg-light);
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(195, 159, 148, 0.06);
  margin-bottom: 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-item h4 {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  color: var(--color-3);
  margin-bottom: 10px;
  font-weight: 700;
}

.service-item p {
  font-family: var(--body-font);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .maternity-services .col-lg-6 {
    display: block;
  }

  .service-item {
    padding: 18px;
  }
}
