/* ============================================
     PREMIUM PROFESSIONAL STYLES - SERVICES DETAILS
     Clean, modern, enterprise-grade design
     Uses ONLY provided custom theme variables
     ============================================ */

  .services-details__content {
    color: var(--theme-color2);
    font-family: inherit;
  }

  /* ========== TYPOGRAPHY - REFINED ========== */
  .services-details__content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 2.25rem;
    margin-bottom: 1.25rem;
    color: var(--theme-color2);
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 0.75rem;
  }

  .services-details__content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--theme-color1);
    border-radius: 3px;
  }

  .services-details__content h3:first-of-type {
    margin-top: 0;
  }

  .services-details__content h4 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--theme-color1);
    letter-spacing: -0.01em;
  }

  .services-details__content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--theme-color2);
  }

  .services-details__content p {
    color: var(--theme-color3);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
  }

  /* ========== MAIN IMAGE - ELEVATED ========== */
  .services-details__content > img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 0 20px 35px -12px rgba(var(--theme-color-black-rgb), 0.15);
    transition: all 0.3s ease;
  }

  .services-details__content > img:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 40px -14px rgba(var(--theme-color-black-rgb), 0.2);
  }

  /* ========== OVERVIEW SECTION ========== */
  .services-details__content > div:has(h3:first-child) p:first-of-type {
    font-size: 1.05rem;
    color: var(--theme-color2);
    font-weight: 450;
  }

  /* ========== KEY HIGHLIGHTS & BENEFITS - CARD STYLE ========== */
  .services-details__content > div:has(> h4) {
    background: var(--theme-color-lighter2);
    border-radius: 20px;
    padding: 1.5rem 1.75rem;
    margin: 1.5rem 0;
    border: 1px solid var(--theme-color-lighter);
  }

  .services-details__content > div:has(> h4) h4 {
    margin-top: 0;
    margin-bottom: 1.25rem;
    font-size: 1.3rem;
  }

  .services-details__content ul:not(.accordion-box) {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 0.75rem;
  }

  .services-details__content ul:not(.accordion-box) li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0;
    color: var(--theme-color2);
    line-height: 1.5;
    font-size: 0.95rem;
  }

  .services-details__content ul:not(.accordion-box) li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 7px;
    height: 7px;
    background-color: var(--theme-color1);
    border-radius: 1px;
    transform: rotate(45deg);
  }

  /* ========== SERVICES INCLUDED - CARD GRID ========== */
  .services-details__content > div:has(> h3):has(.mb-3) {
    margin: 1.75rem 0;
  }

  .services-details__content .mb-3 {
    background: var(--theme-color-white);
    border: 1px solid var(--theme-color-lighter);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem !important;
    transition: all 0.25s ease;
  }

  .services-details__content .mb-3:hover {
    border-color: var(--theme-color1);
    box-shadow: 0 8px 20px rgba(var(--theme-color-black-rgb), 0.06);
    transform: translateY(-2px);
  }

  .services-details__content .mb-3 h5 {
    color: var(--theme-color1);
    margin-bottom: 0.5rem;
    font-weight: 700;
  }

  .services-details__content .mb-3 p {
    margin-bottom: 0;
    font-size: 0.95rem;
  }

  /* ========== PROCESS STEPS - TIMELINE STYLE ========== */
  .services-details__content .mb-2 {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.5rem !important;
  }

  .services-details__content .mb-2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.25rem;
    width: 28px;
    height: 28px;
    background: var(--theme-color-lighter2);
    border: 2px solid var(--theme-color1);
    border-radius: 28px;
    z-index: 1;
  }

  .services-details__content .mb-2::after {
    content: '';
    position: absolute;
    left: 13px;
    top: 32px;
    width: 2px;
    height: calc(100% - 28px);
    background: linear-gradient(to bottom, var(--theme-color1), transparent);
  }

  .services-details__content .mb-2:last-child::after {
    display: none;
  }

  .services-details__content .mb-2 h5 {
    margin-top: 0;
    font-weight: 700;
  }

  /* ========== BLOCKQUOTE - TESTIMONIAL STYLE ========== */
  .services-details__content blockquote.blockquote-one {
    background: linear-gradient(135deg, var(--theme-color-lighter2) 0%, var(--theme-color-white) 100%);
    border-left: 4px solid var(--theme-color1);
    padding: 1.75rem 2rem;
    margin: 2rem 0;
    border-radius: 20px;
    color: var(--theme-color2);
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.65;
    box-shadow: 0 10px 25px -12px rgba(var(--theme-color-black-rgb), 0.08);
    position: relative;
  }

  .services-details__content blockquote.blockquote-one::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 5rem;
    color: var(--theme-color1);
    opacity: 0.15;
    font-family: serif;
    line-height: 1;
  }

  /* ========== FEATURE LIST - MODERN GRID ========== */
  .services-details__content .feature-list {
    margin: 1.75rem 0;
  }

  .services-details__content .feature-list .row {
    row-gap: 1.75rem;
  }

  .services-details__content .feature-list .column {
    background: var(--theme-color-white);
    border-radius: 20px;
    padding: 1.25rem;
    transition: all 0.3s ease;
    border: 1px solid var(--theme-color-lighter);
    height: 100%;
  }

  .services-details__content .feature-list .column:hover {
    transform: translateY(-5px);
    border-color: var(--theme-color1);
    box-shadow: 0 20px 30px -15px rgba(var(--theme-color-black-rgb), 0.1);
  }

  .services-details__content .feature-list img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 1rem;
    aspect-ratio: 16/9;
    object-fit: cover;
  }

  .services-details__content .feature-list h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  .services-details__content .feature-list p {
    font-size: 0.9rem;
    margin-bottom: 0;
  }


  /* ========== SERVICE CENTER SECTION ========== */
  .services-details__content .content.mt-40 {
    background: linear-gradient(135deg, var(--theme-color-dark) 0%, var(--theme-color-dark2) 100%);
    border-radius: 24px;
    padding: 2rem 2rem 1.5rem;
    margin: 2rem 0;
    color: var(--theme-color-white);
  }

  .services-details__content .content.mt-40 h3 {
    color: var(--theme-color-white);
  }

  .services-details__content .content.mt-40 h3::after {
    background: var(--theme-color1);
  }

  .services-details__content .content.mt-40 p {
    color: rgba(255, 255, 255, 0.85);
  }

  /* ========== SPACING & DIVIDERS ========== */
  .services-details__content > div:not(:first-child):not(:has(> img)) {
    margin-top: 2rem;
  }

  /* ========== RESPONSIVE ========== */
  @media (max-width: 992px) {
    .services-details__content h3 {
      font-size: 1.6rem;
    }
    .services-details__content ul:not(.accordion-box) {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 768px) {
    .services-details__content h3 {
      font-size: 1.4rem;
    }
    .services-details__content h4 {
      font-size: 1.2rem;
    }
    .services-details__content > div:has(> h4) {
      padding: 1.25rem;
    }
    .services-details__content blockquote.blockquote-one {
      padding: 1.25rem 1.5rem;
    }
    .services-details__content .content.mt-40 {
      padding: 1.5rem;
    }
    .services-details__content .mb-2 {
      padding-left: 1.75rem;
    }
  }

  /* ========== LINKS ========== */
  .services-details__content a {
    color: var(--theme-color1);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
  }

  .services-details__content a:hover {
    opacity: 0.8;
  }