  :root {
    --services-hero-height: 100vh;
  }

  /* ===============================
    HERO CONTAINER
  ================================ */
  .about-hero.services-hero {
    position: relative;
    min-height: var(--services-hero-height);
    display: flex;
    overflow: hidden;
  }

  /* ===============================
    BACKGROUND
  ================================ */
  .about-hero.services-hero .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }

  .about-hero.services-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 40, 0.8);
    z-index: 1;
  }

  /* ===============================
    HERO GRID (NEUTRAL)
  ================================ */
  .about-hero.services-hero .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: none;
    padding-top: 150px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  /* ===============================
    LEFT CONTENT (LOCKED)
  ================================ */
  .services-hero .hero-text {
    padding-left: 16%;
    padding-right: 0;
    text-align: left;
  }

  .services-hero .hero-text h1,
  .services-hero .hero-text p {
    margin-left: 0;
  }

  .services-hero .hero-content h1 {
    color: var(--white);
    font-family: 'Merriweather', serif;
    font-size: 50px;
    letter-spacing: 0.4px;
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .services-hero .hero-content p {
    color: var(--gold);
    opacity: 0.95;
    font-size: 20px;
    line-height: 1.6;
  }

  /* ===============================
    RIGHT SIDE (FORM WRAPPER)
  ================================ */
  .services-hero .hero-action {
    display: flex;
    justify-content: flex-end;
    margin-right: 16%;
  }

  /* ===============================
    FORM (INDEPENDENT)
  ================================ */
  .services-hero .appointment-form {
    width: 100%;
    max-width: 400px;
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.30);
    padding: 16px;
  }

  /* ===============================
    FORM CONTENT
  ================================ */
  .services-hero .appointment-form .modal-header h2 {
    color: var(--gold);
    text-align: center;
    margin-bottom: 10px;
  }

  .services-hero .appointment-form .form-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .services-hero .appointment-form .form-content .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .services-hero .appointment-form .form-group {
    margin-bottom: 5px;
  }

  .services-hero .appointment-form .form-group label {
    color: var(--dark-blue);
    font-size: 13px;
    text-align: start;
  }

  .services-hero .appointment-form .form-group input,
  .services-hero .appointment-form .form-group textarea,
  .services-hero .appointment-form .form-group select {
    width: 100%;
    padding: 8px;
    font-size: 13px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: var(--dark-blue);
  }

  .services-hero .appointment-form .form-group input:focus,
  .services-hero .appointment-form .form-group textarea:focus,
  .services-hero .appointment-form .form-group select:focus {
    outline: none;
    border-color: var(--gold);
  }

  .services-hero .appointment-form .btn-primary {
    margin-top: 10px;
    font-size: 16px;
    padding: 9px 12px;
    width: 100%;
  }

  .ra-section {
    width: 100%;
    background: var(--white);
    color: var(--dark-blue);
    padding: 80px 0;
  }

  .ra-container {
    width: 80%;
    margin: 0 10%;
  }

  .ra-container h2 {
    font-family: 'Georgia', serif;
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 52px;
    color: var(--dark-blue);
    text-align: center;
  }

  .ra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
  }

  .ra-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 18px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    background-image:
      linear-gradient(135deg, #ffffff 0%, #fbfaf5 50%, #ffffff 100%),
      radial-gradient(800px circle at 0% 0%, rgba(214, 186, 118, 0.20), transparent 40%),
      radial-gradient(600px circle at 100% 100%, rgba(214, 186, 118, 0.14), transparent 45%);
    background-size: 200% 200%, auto, auto;
    background-position: 0% 50%, 0% 0%, 100% 100%;
    animation: premiumShift 8s ease-in-out infinite alternate;
  }

  .ra-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--dark-blue);
    text-align: center;
  }

  .ra-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
    margin-bottom: 8px;
  }

  .ra-icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
  }



  .ra-card p {
    line-height: 1.7;
    color: var(--dark-blue);
    font-size: 19px;
  }

  .ra-card .btn-primary {
    margin-top: auto;
    width: 100%;
    text-align: center;
    font-size: 16px;
    padding: 10px 14px;
    background: var(--gold);
    color: var(--dark-blue);
  }

  .ra-cta .ra-cta-btn.btn-outline {
    border-radius: 10px;
    font-size: 18px;
    padding: 12px 20px;
  }

  .ra-cta {
    margin-top: 80px;
    display: flex;
    justify-content: center;
  }

  .ra-cta .ra-cta-btn {
    border-radius: 10px;
    font-size: 25px;
    padding: 12px 20px;
    color: #000;
  }

  .ra-cta .ra-cta-btn.btn-outline:hover {
    color: var(--dark-blue);
  }

  .ra-info {
    width: 100%;
    background: var(--white);
    color: var(--dark-blue);
    padding: 90px 0;
    text-align: center;
  }

  .ra-info-container {
    width: 80%;
    margin: 0 10%;
  }

  .ra-info h2 {
    font-family: 'Georgia', serif;
    font-size: 40px;
    line-height: 1.25;
    margin-bottom: 32px;
    color: var(--dark-blue);
    font-weight: 900;
    letter-spacing: 0.2px;
  }

  .ra-info>.ra-info-container>p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-size: 19px;
    line-height: 1.9;
  }

  .ra-info h3 {
    font-size: 26px;
    font-weight: 800;
    margin-top: 38px;
    margin-bottom: 22px;
    color: var(--dark-blue);
    text-transform: uppercase;
    letter-spacing: 0.3px;
  }

  .ra-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
    margin-bottom: 18px;
  }

  .ra-feature {
    position: relative;
    padding: 18px 16px 16px;
    border: 2px solid var(--dark-blue);
    border-radius: 6px;
    background: #f9fafb;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 160px;
    background-image:
      linear-gradient(135deg, #ffffff 0%, #fbfaf5 50%, #ffffff 100%),
      radial-gradient(800px circle at 0% 0%, rgba(214, 186, 118, 0.20), transparent 40%),
      radial-gradient(600px circle at 100% 100%, rgba(214, 186, 118, 0.14), transparent 45%);
    background-size: 200% 200%, auto, auto;
    background-position: 0% 50%, 0% 0%, 100% 100%;
    animation: premiumShift 8s ease-in-out infinite alternate;
  }

  .ra-feature::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold);
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
  }

  .ra-feature h4 {
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
  }

  .ra-feature p {
    font-size: 17px;
    line-height: 1.7;
  }

  .ra-checks {
    list-style: none;
    padding: 0;
    margin: 10px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 700px;
  }

  .ra-checks li {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 700;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
  }

  .ra-checks li::before {
    content: "✔";
    color: var(--gold);
    font-weight: 900;
    margin-top: 2px;
  }

  @media (max-width: 768px) {
    .ra-info-container {
      width: 90%;
      margin: 0 5%;
    }

    .ra-info h2 {
      font-size: 32px;
    }

    .ra-features {
      grid-template-columns: 1fr 1fr;
    }

    .ra-checks {
      grid-template-columns: 1fr;
    }

    .ra-checks li {
      justify-content: flex-start;
      text-align: left;
    }
  }

  .ra-types {
    width: 100%;
    background: var(--white);
    color: var(--dark-blue);
    padding: 80px 0;
    text-align: center;
  }

  .ra-types-container {
    width: 80%;
    margin: 0 10%;
  }

  .ra-types h2 {
    font-family: 'Georgia', serif;
    font-size: 36px;
    line-height: 1.25;
    margin-bottom: 42px;
    color: var(--dark-blue);
  }

  .ra-types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
  }

  .ra-type-card {
    border: 2px solid var(--dark-blue);
    border-radius: 6px;
    background: #ffffff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 320px;
    background-image:
      linear-gradient(135deg, #ffffff 0%, #fbfaf5 50%, #ffffff 100%),
      radial-gradient(800px circle at 0% 0%, rgba(214, 186, 118, 0.20), transparent 40%),
      radial-gradient(600px circle at 100% 100%, rgba(214, 186, 118, 0.14), transparent 45%);
    background-size: 200% 200%, auto, auto;
    background-position: 0% 50%, 0% 0%, 100% 100%;
    animation: premiumShift 8s ease-in-out infinite alternate;
  }

  .ra-type-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
  }

  .ra-type-card h4 {
    font-size: 16px;
    font-weight: 800;
    margin: 10px 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
  }

  .ra-type-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
  }

  .ra-type-card li {
    font-size: 15px;
    line-height: 1.6;
  }

  /* ===============================
   SALE DEED PAGE OVERRIDES
================================ */
  .sale-deed-page .ra-type-card {
    min-height: 160px;
    padding: 12px;
  }

  .sale-deed-page .ra-type-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .sale-deed-page .ra-type-card h4 {
    font-size: 14px;
    margin: 8px 0 4px;
  }

  .sale-deed-page .ra-type-card li {
    font-size: 14px;
    line-height: 1.5;
  }

  .sale-deed-page .sd-services {
    grid-template-columns: repeat(5, 1fr);
  }

  @media (max-width: 1200px) {
    .sale-deed-page .sd-services {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 768px) {
    .sale-deed-page .sd-services {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 480px) {
    .sale-deed-page .sd-services {
      grid-template-columns: 1fr;
    }
  }

  .ra-additional {
    width: 100%;
    background: var(--white);
    color: var(--dark-blue);
    padding: 70px 0;
    text-align: center;
  }

  .ra-additional-container {
    width: 80%;
    margin: 0 10%;
  }

  .ra-additional h2 {
    font-family: 'Georgia', serif;
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 42px;
    color: var(--dark-blue);
  }

  .ra-additional-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: stretch;
  }

  .ra-add-card {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    background: #f9fafb;
    padding: 12px;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-image:
      linear-gradient(135deg, #ffffff 0%, #fbfaf5 50%, #ffffff 100%),
      radial-gradient(800px circle at 0% 0%, rgba(214, 186, 118, 0.18), transparent 42%),
      radial-gradient(600px circle at 100% 100%, rgba(214, 186, 118, 0.12), transparent 48%);
    background-size: 200% 200%, auto, auto;
    background-position: 0% 50%, 0% 0%, 100% 100%;
    animation: premiumShift 10s ease-in-out infinite alternate;
  }

  @keyframes premiumShift {
    0% {
      background-position: 0% 50%, 0% 0%, 100% 100%;
    }

    50% {
      background-position: 100% 50%, 0% 0%, 100% 100%;
    }

    100% {
      background-position: 0% 50%, 0% 0%, 100% 100%;
    }
  }

  .ra-add-card h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 6px;
  }

  .ra-add-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .ra-add-card li {
    font-size: 15px;
    line-height: 1.6;
  }

  .ra-process {
    width: 100%;
    background: var(--white);
    color: var(--dark-blue);
    padding: 80px 0;
    text-align: center;
  }

  .ra-process-container {
    width: 80%;
    margin: 0 10%;
  }

  .ra-process h2 {
    font-family: 'Georgia', serif;
    font-size: 42px;
    line-height: 1.25;
    margin-bottom: 30px;
    color: var(--dark-blue);
  }

  .ra-process-intro {
    color: var(--dark-blue);
    line-height: 1.8;
    margin-bottom: 22px;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }

  .ra-process-track {
    display: flex;
    gap: 12px;
    align-items: stretch;
    overflow-x: auto;
    padding-bottom: 6px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding-inline: 0;
    justify-content: flex-start;
  }

  .ra-process-track::-webkit-scrollbar {
    display: none;
  }

  .ra-step {
    flex: 0 0 auto;
    width: 160px;
    border: 2px solid #2b6cb0;
    border-radius: 8px;
    background: #0e2744;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 170px;
    color: var(--white);
    background-image:
      linear-gradient(135deg, #0e2744 0%, #143b6b 50%, #0e2744 100%),
      radial-gradient(800px circle at 0% 0%, rgba(78, 168, 255, 0.22), transparent 42%),
      radial-gradient(600px circle at 100% 100%, rgba(78, 168, 255, 0.14), transparent 48%);
    background-size: 200% 200%, auto, auto;
    background-position: 0% 50%, 0% 0%, 100% 100%;
    animation: premiumShift 10s ease-in-out infinite alternate;
    transition: width 400ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 320ms ease, box-shadow 320ms ease;
    will-change: width, transform;
    scroll-snap-align: start;
    position: relative;
  }

  .ra-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: #4ea8ff;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    pointer-events: none;
    z-index: 1;
  }

  .ra-step-head {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    padding-top: 5px;
    padding-bottom: none;
    text-align: center;
  }

  .ra-step-number {
    color: #aeddff;
    font-weight: 900;
    font-size: 26px;
  }

  .ra-step-title {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--white);
  }

  .ra-step-body {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 400ms cubic-bezier(0.2, 0.8, 0.2, 1) 140ms, opacity 360ms ease 140ms;
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
    margin-top: 12px;
    color: var(--white);
  }

  .ra-step-body p {
    margin: 6px 0 8px;
  }

  .ra-step-body ul {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
  }

  .ra-step-body li {
    margin: 4px 0;
    padding-left: 16px;
    position: relative;
  }

  .ra-step-body li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4ea8ff;
    font-weight: 900;
  }

  .ra-step.open,
  .ra-step:focus-within {
    width: 300px;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  }

  .ra-step.open .ra-step-body,
  .ra-step:focus-within .ra-step-body {
    max-height: 340px;
    opacity: 1;
  }

  .ra-process-chain {
    margin-top: 18px;
    font-size: 15px;
    color: var(--dark-blue);
  }

  .ra-image {
    width: 100%;
    background: var(--white);
    color: var(--dark-blue);
    padding: 0;
    text-align: center;
  }

  .ra-image-container {
    width: 80%;
    margin: 0 10%;
  }

  .ra-image-container img {
    width: 92%;
    height: auto;
    display: block;
    object-fit: cover;
    margin: 0 auto;
    border: none;
    box-shadow: none;
  }

  @media (max-width: 992px) {
    .ra-process h2 {
      font-size: 34px;
    }

    .ra-step {
      width: 180px;
    }

    .ra-step.open,
    .ra-step:focus-within {
      width: 400px;
    }
  }

  @media (max-width: 600px) {
    .ra-process-container {
      width: 90%;
      margin: 0 5%;
    }

    .ra-process h2 {
      font-size: 30px;
    }

    .ra-step {
      width: 72%;
    }

    .ra-step.open,
    .ra-step:focus-within {
      width: 88%;
    }
  }

  @media (max-width: 768px) {
    .ra-image-container {
      width: 90%;
      margin: 0 5%;
    }

    .ra-image-container img {
      width: 92%;
    }
  }

  .ra-apply {
    width: 100%;
    background: var(--white);
    color: var(--dark-blue);
    padding: 18px 0 36px;
  }

  .ra-apply-banner {
    width: 100%;
    margin: 0;
    height: 160px;
    position: relative;
    background-image: url('../images/close-up-law-scale.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 0;
    cursor: pointer;
    overflow: hidden;
  }

  .ra-apply-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 25, 40, 0.55);
  }

  .ra-apply-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    pointer-events: none;
  }

  .ra-apply-content p {
    color: #ffffff;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-shadow: 0 0 6px rgba(255, 0, 0, 0.1), 0 0 16px rgba(255, 0, 0, 0.1);
    animation: applyMotion 3.6s ease-in-out infinite, applyGlow 2.4s ease-in-out infinite alternate;
    will-change: transform, text-shadow;
  }

  @keyframes applyMotion {
    0% {
      transform: translateY(0) scale(1);
    }

    50% {
      transform: translateY(-2px) scale(1.06);
    }

    100% {
      transform: translateY(0) scale(1);
    }
  }

  @keyframes applyGlow {
    0% {
      text-shadow: 0 0 6px rgba(255, 0, 0, 0.5), 0 0 12px rgba(255, 0, 0, 0.25);
    }

    50% {
      text-shadow: 0 0 8px rgba(255, 0, 0, 0.7), 0 0 20px rgba(255, 0, 0, 0.45);
    }

    100% {
      text-shadow: 0 0 6px rgba(255, 0, 0, 0.5), 0 0 12px rgba(255, 0, 0, 0.25);
    }
  }

  @media (max-width: 768px) {
    .ra-apply-banner {
      width: 100%;
      margin: 0;
      height: 130px;
    }

    .ra-apply-content p {
      font-size: 18px;
      font-weight: 800;
    }
  }

  .hy-hero-info {
    width: 100%;
    background: var(--white);
    color: var(--dark-blue);
    padding: 70px 0;
    text-align: center;
  }

  .hy-hero-info-container {
    width: 80%;
    margin: 0 10%;
  }

  .hy-readmore {
    display: none;
  }

  .hy-hero-info h2 {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 32px;
  }

  .hy-hero-info-body p {
    font-size: 20px;
    line-height: 1.75;
    margin: 0 auto 18px;
    max-width: none;
  }

  @media (max-width: 768px) {
    .hy-hero-info-container {
      width: 90%;
      margin: 0 5%;
    }

    .hy-hero-info-body {
      max-height: 260px;
      overflow: hidden;
      position: relative;
    }

    .hy-hero-info-body::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 80px;
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, var(--white) 80%);
    }

    .hy-readmore {
      display: inline-block;
      margin-top: 8px;
      font-size: 13px;
      font-weight: 700;
      padding: 8px 14px;
      border-radius: 999px;
      line-height: 1;
      letter-spacing: 0.2px;
      border: 1px solid var(--dark-blue);
      color: var(--dark-blue);
      background: var(--white);
    }

    .hy-hero-info .hy-hero-info-body.expanded {
      max-height: none;
    }

    .hy-hero-info .hy-hero-info-body.expanded::after {
      display: none;
    }

    .hy-hero-info h2 {
      font-size: 32px;
      margin-bottom: 26px;
    }

    .hy-hero-info-body p {
      font-size: 18px;
      line-height: 1.7;
      margin-bottom: 16px;
    }
  }

  .ra-faq {
    width: 100%;
    background: var(--white);
    color: var(--dark-blue);
    padding: 40px 0 70px;
  }

  .ra-faq-container {
    width: 80%;
    margin: 0 10%;
  }

  .ra-faq h2 {
    font-family: 'Georgia', serif;
    font-size: 36px;
    line-height: 1.25;
    margin-bottom: 60px;
    color: var(--dark-blue);
    text-align: center;
  }

  .faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .faq-item {
    border: none;
    border-radius: 6px;
    background: #ffffff;
  }

  .faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.4;
    background: transparent;
    border: none;
    color: var(--dark-blue);
    cursor: pointer;
  }

  .faq-toggle {
    display: inline-block;
    font-weight: 900;
    font-size: 20px;
  }

  .faq-a {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 300ms ease, opacity 300ms ease;
    padding: 0 16px;
  }

  .faq-a p {
    margin: 10px 0 14px;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.7;
  }

  .faq-item.open .faq-a {
    max-height: 220px;
    opacity: 1;
    padding-bottom: 12px;
  }

  .faq-item.open .faq-toggle {
    transform: rotate(45deg);
  }

  @media (max-width: 768px) {
    .ra-faq-container {
      width: 90%;
      margin: 0 5%;
    }

    .ra-faq h2 {
      font-size: 28px;
      margin-bottom: 32px;
      text-align: left;
    }

    .faq-q {
      padding: 14px 0;
      text-align: left;
    }

    .faq-a {
      padding: 0;
    }
  }

  @media (max-width: 992px) {
    .ra-types-grid {
      grid-template-columns: 1fr 1fr;
    }

    .ra-additional-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 600px) {
    .ra-types-grid {
      grid-template-columns: 1fr;
    }

    .ra-additional-grid {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 768px) {
    .ra-container {
      width: 90%;
      margin: 0 5%;
    }

    .ra-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .ra-container h2 {
      font-size: 32px;
      text-align: center;
    }
  }

  /* ===============================
    MOBILE FIX (STACK SAFELY)
  ================================ */
  @media (max-width: 768px) {
    .about-hero.services-hero {
      min-height: auto;
      padding-bottom: 40px;
    }

    .about-hero.services-hero .hero-content {
      grid-template-columns: 1fr;
      padding-top: calc(var(--mobile-safe-top, 56px) + 20px);
      row-gap: 24px;
    }

    .services-hero .hero-text {
      padding-left: 5%;
      padding-right: 5%;
      text-align: center;
    }

    .services-hero .hero-content h1 {
      font-size: 32px;
    }

    .services-hero .hero-action {
      padding-right: 0;
      margin-right: 0;
      justify-content: center;
    }

    .services-hero .appointment-form {
      margin-left: 5%;
      margin-right: 5%;
    }

    .services-hero .appointment-form .form-content .form-row {
      grid-template-columns: 1fr;
      gap: 8px;
    }
  }