/* Modern Lifestyle Section Styling - Completely Isolated */
.lifestyle-modern-section {
    position: relative;
    background-color: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
  }
  
  .lifestyle-modern-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(109, 213, 237, 0.1) 0%, rgba(109, 213, 237, 0) 70%);
    border-radius: 50%;
    z-index: 0;
  }
  
  .lifestyle-modern-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 126, 95, 0.1) 0%, rgba(255, 126, 95, 0) 70%);
    border-radius: 50%;
    z-index: 0;
  }
  
  .lifestyle-modern-section .section-subtitle {
    font-size: var(--font-size-xl);
    color: var(--dentist-blue);
    margin-bottom: var(--spacing-lg);
    position: relative;
    padding-bottom: var(--spacing-sm);
  }
  
  .lifestyle-modern-section .section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-blue);
    border-radius: 2px;
  }
  
  /* Modern Cards Slider */
  .lifestyle-modern-section .modern-cards-slider {
    position: relative;
    margin-bottom: var(--spacing-xl);
    overflow: hidden;
  }
  
  .lifestyle-modern-section .slider-container {
    overflow: hidden;
    padding: var(--spacing-md) 0;
  }
  
  .lifestyle-modern-section .slider-track {
    display: flex;
    transition: transform 0.5s ease;
  }
  
  .lifestyle-modern-section .modern-lifestyle-card {
    flex: 0 0 100%;
    max-width: 100%;
    padding: var(--spacing-md);
    box-sizing: border-box;
    position: relative;
  }
  
  @media (min-width: 768px) {
    .lifestyle-modern-section .modern-lifestyle-card {
      flex: 0 0 50%;
      max-width: 50%;
    }
  }
  
  @media (min-width: 992px) {
    .lifestyle-modern-section .modern-lifestyle-card {
      flex: 0 0 33.333%;
      max-width: 33.333%;
    }
  }
  
  @media (min-width: 1200px) {
    .lifestyle-modern-section .modern-lifestyle-card {
      flex: 0 0 25%;
      max-width: 25%;
    }
  }
  
  .lifestyle-modern-section .modern-lifestyle-card .card-content {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    height: 100%;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  
  .lifestyle-modern-section .modern-lifestyle-card:hover .card-content {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }
  
  .lifestyle-modern-section .card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(33, 147, 176, 0.1) 0%, rgba(109, 213, 237, 0.1) 100%);
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
    border-radius: var(--border-radius-lg);
  }
  
  .lifestyle-modern-section .modern-lifestyle-card:hover .card-glow {
    opacity: 1;
  }
  
  .lifestyle-modern-section .card-icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-md);
  }
  
  .lifestyle-modern-section .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(33, 147, 176, 0.3);
  }
  
  .lifestyle-modern-section .modern-lifestyle-card h3 {
    font-size: var(--font-size-lg);
    color: var(--dentist-blue);
    margin-bottom: var(--spacing-sm);
    text-align: center;
  }
  
  .lifestyle-modern-section .modern-lifestyle-card p {
    color: var(--text-gray);
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
  }
  
  .lifestyle-modern-section .card-rating {
    margin-top: auto;
  }
  
  .lifestyle-modern-section .rating-bars {
    display: flex;
    gap: 4px;
    margin-bottom: var(--spacing-xs);
  }
  
  .lifestyle-modern-section .rating-bar {
    height: 8px;
    flex: 1;
    background-color: var(--background-light);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
  }
  
  .lifestyle-modern-section .rating-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--fill-percent);
    background: var(--gradient-blue);
    border-radius: 4px;
  }
  
  .lifestyle-modern-section .rating-text {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--dentist-blue);
  }
  
  .lifestyle-modern-section .slider-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
  }
  
  .lifestyle-modern-section .nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    color: var(--dentist-blue);
    transition: all 0.2s ease;
  }
  
  .lifestyle-modern-section .nav-arrow:hover {
    background-color: var(--dentist-blue);
    color: white;
    box-shadow: var(--shadow-md);
  }
  
  .lifestyle-modern-section .nav-arrow.disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  
  .lifestyle-modern-section .nav-indicators {
    display: flex;
    gap: 8px;
  }
  
  .lifestyle-modern-section .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--background-gray);
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .lifestyle-modern-section .indicator.active {
    background-color: var(--dentist-blue);
    transform: scale(1.2);
  }
  
  /* Practice Models Section */
  .lifestyle-modern-section .practice-models-section {
    margin-bottom: var(--spacing-xl);
  }
  
  .lifestyle-modern-section .practice-models-container {
    padding: var(--spacing-md);
  }
  
  .lifestyle-modern-section .model-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    perspective: 1000px;
  }
  
  .lifestyle-modern-section .model-card {
    height: 300px;
    cursor: pointer;
    position: relative;
  }
  
  .lifestyle-modern-section .model-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
  }
  
  .lifestyle-modern-section .model-card.active .model-card-inner {
    transform: rotateY(180deg);
  }
  
  .lifestyle-modern-section .model-card-front, 
  .lifestyle-modern-section .model-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    background-color: white;
  }
  
  .lifestyle-modern-section .model-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, rgba(33, 147, 176, 0.05) 0%, rgba(109, 213, 237, 0.05) 100%);
  }
  
  .lifestyle-modern-section .model-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 5px 15px rgba(33, 147, 176, 0.3);
  }
  
  .lifestyle-modern-section .model-card-front h4 {
    font-size: var(--font-size-lg);
    color: var(--dentist-blue);
    margin-bottom: var(--spacing-md);
  }
  
  .lifestyle-modern-section .model-percentage {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dentist-blue);
    margin-top: var(--spacing-md);
  }
  
  .lifestyle-modern-section .model-card-back h4 {
    font-size: var(--font-size-lg);
    color: var(--dentist-blue);
    margin-bottom: var(--spacing-md);
    text-align: center;
  }
  
  .lifestyle-modern-section .model-features {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-md);
    width: 100%;
  }
  
  .lifestyle-modern-section .model-features li {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-xs);
    color: var(--text-gray);
    font-size: var(--font-size-sm);
  }
  
  .lifestyle-modern-section .model-features li i {
    color: var(--dentist-blue);
    margin-right: var(--spacing-xs);
  }
  
  .lifestyle-modern-section .model-rating {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .lifestyle-modern-section .model-rating span {
    font-size: var(--font-size-sm);
    color: var(--text-gray);
    margin-bottom: var(--spacing-xs);
  }
  
  .lifestyle-modern-section .rating-stars {
    color: var(--dentist-orange);
  }
  
  /* Alumni Satisfaction Section - NEW SIMPLIFIED VERSION */
  .lifestyle-modern-section .alumni-satisfaction-section {
    margin-bottom: var(--spacing-xl);
  }
  
  .lifestyle-modern-section .satisfaction-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  @media (min-width: 992px) {
    .lifestyle-modern-section .satisfaction-container {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  /* Stats Container */
  .lifestyle-modern-section .satisfaction-stats {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
  }
  
  .lifestyle-modern-section .stats-container {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  /* Overall Satisfaction */
  .lifestyle-modern-section .overall-satisfaction {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--background-light);
  }
  
  .lifestyle-modern-section .satisfaction-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dentist-blue);
    line-height: 1;
  }
  
  .lifestyle-modern-section .satisfaction-label {
    font-size: var(--font-size-md);
    color: var(--text-gray);
    margin-top: var(--spacing-xs);
  }
  
  /* Satisfaction Breakdown */
  .lifestyle-modern-section .satisfaction-breakdown {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    flex-grow: 1;
  }
  
  .lifestyle-modern-section .satisfaction-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
  }
  
  .lifestyle-modern-section .satisfaction-bar {
    height: 10px;
    border-radius: 5px;
    transition: width 1s ease-in-out;
  }
  
  .lifestyle-modern-section .satisfaction-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .lifestyle-modern-section .satisfaction-value {
    font-weight: 700;
    font-size: var(--font-size-md);
    color: var(--text-charcoal);
  }
  
  .lifestyle-modern-section .satisfaction-type {
    color: var(--text-gray);
    font-size: var(--font-size-sm);
  }
  
  /* Satisfaction Colors */
  .lifestyle-modern-section .very-satisfied .satisfaction-bar {
    background-color: #4CAF50;
  }
  
  .lifestyle-modern-section .satisfied .satisfaction-bar {
    background-color: #8BC34A;
  }
  
  .lifestyle-modern-section .neutral .satisfaction-bar {
    background-color: #FFC107;
  }
  
  .lifestyle-modern-section .dissatisfied .satisfaction-bar {
    background-color: #FF5722;
  }
  
  /* Testimonials Carousel */
  .lifestyle-modern-section .testimonials-carousel {
    padding: var(--spacing-lg);
    background-color: var(--background-light);
    border-radius: var(--border-radius-lg);
  }
  
  .lifestyle-modern-section .carousel-container {
    position: relative;
  }
  
  .lifestyle-modern-section .carousel-track {
    position: relative;
    height: 300px;
  }
  
  .lifestyle-modern-section .testimonial-card {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateX(50px);
    visibility: hidden;
  }
  
  .lifestyle-modern-section .testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
  }
  
  .lifestyle-modern-section .quote-marks {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    color: rgba(33, 147, 176, 0.1);
    font-size: 3rem;
  }
  
  .lifestyle-modern-section .testimonial-content {
    padding-left: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
  }
  
  .lifestyle-modern-section .testimonial-content p {
    color: var(--text-gray);
    font-size: var(--font-size-md);
    line-height: 1.6;
    font-style: italic;
  }
  
  .lifestyle-modern-section .testimonial-author {
    display: flex;
    align-items: center;
    margin-top: var(--spacing-md);
  }
  
  .lifestyle-modern-section .author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    margin-right: var(--spacing-md);
  }
  
  .lifestyle-modern-section .author-name {
    font-weight: 600;
    color: var(--text-charcoal);
    font-size: var(--font-size-md);
  }
  
  .lifestyle-modern-section .author-position {
    color: var(--text-gray);
    font-size: var(--font-size-sm);
  }
  
  .lifestyle-modern-section .carousel-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
  }
  
  .lifestyle-modern-section .carousel-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    color: var(--dentist-blue);
    transition: all 0.2s ease;
  }
  
  .lifestyle-modern-section .carousel-arrow:hover {
    background-color: var(--dentist-blue);
    color: white;
    box-shadow: var(--shadow-md);
  }
  
  .lifestyle-modern-section .carousel-indicators {
    display: flex;
    gap: 8px;
  }
  
  /* Day in Life Timeline - FIXED */
  .lifestyle-modern-section .day-in-life-section {
    margin-bottom: var(--spacing-xl);
  }
  
  .lifestyle-modern-section .timeline-container {
    display: flex;
    margin-top: var(--spacing-lg);
    position: relative;
  }
  
  .lifestyle-modern-section .time-labels {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 80px;
    padding-right: var(--spacing-md);
    border-right: 1px solid var(--background-gray);
    flex-shrink: 0;
  }
  
  .lifestyle-modern-section .time-label {
    font-size: var(--font-size-xs);
    color: var(--text-gray);
    height: 50px;
    display: flex;
    align-items: center;
  }
  
  .lifestyle-modern-section .schedule-timeline {
    flex: 1;
    position: relative;
    padding-left: var(--spacing-md);
    min-height: 300px;
  }
  
  .lifestyle-modern-section .timeline-event {
    position: absolute;
    left: var(--spacing-md);
    height: auto;
    width: calc(100% - var(--spacing-md));
    background-color: rgba(33, 147, 176, 0.1);
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--dentist-blue);
    overflow: hidden;
    transition: all 0.3s ease;
    top: calc((var(--event-start) - 8) * 50px);
    height: calc(var(--event-duration) * 50px);
  }
  
  .lifestyle-modern-section .timeline-event:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    background-color: rgba(33, 147, 176, 0.15);
  }
  
  .lifestyle-modern-section .event-content {
    display: flex;
    padding: var(--spacing-sm);
    height: 100%;
    align-items: center;
  }
  
  .lifestyle-modern-section .event-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    margin-right: var(--spacing-md);
    flex-shrink: 0;
  }
  
  .lifestyle-modern-section .event-details {
    flex: 1;
  }
  
  .lifestyle-modern-section .event-details h4 {
    font-size: var(--font-size-sm);
    color: var(--dentist-blue);
    margin-bottom: 2px;
  }
  
  .lifestyle-modern-section .event-details p {
    font-size: var(--font-size-xs);
    color: var(--text-gray);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .lifestyle-modern-section .timeline-container {
      flex-direction: column;
    }
    
    .lifestyle-modern-section .time-labels {
      flex-direction: row;
      width: 100%;
      border-right: none;
      border-bottom: 1px solid var(--background-gray);
      padding-right: 0;
      padding-bottom: var(--spacing-xs);
      margin-bottom: var(--spacing-md);
      overflow-x: auto;
    }
    
    .lifestyle-modern-section .time-label {
      height: auto;
      margin-right: var(--spacing-md);
      white-space: nowrap;
    }
    
    .lifestyle-modern-section .schedule-timeline {
      padding-left: 0;
      padding-top: var(--spacing-md);
    }
    
    .lifestyle-modern-section .timeline-event {
      position: relative;
      left: 0;
      top: 0 !important;
      width: 100%;
      margin-bottom: var(--spacing-sm);
      height: auto !important;
      min-height: 80px;
    }
    
    .lifestyle-modern-section .event-content {
      padding: var(--spacing-md);
    }
    
    /* Mobile adjustments for satisfaction stats */
    .lifestyle-modern-section .satisfaction-number {
      font-size: 2.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .lifestyle-modern-section .satisfaction-stats {
      padding: var(--spacing-md);
    }
    
    .lifestyle-modern-section .satisfaction-number {
      font-size: 2rem;
    }
  }