/* =====================================================
   PRALASH — Home Page Styles
   ===================================================== */

  /* ══ HERO ══ */
  .home-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0 140px;
    clip-path: polygon(0 0, 100% 0, 100% 91%, 0 100%);
  }

  .home-hero-bg-img {
    position: absolute;
    inset: 0;
    background: url('https://pralash.com/assets/images/dental-skin-hair-clinic.jpeg') center/cover no-repeat;
  }

  .home-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,
        rgba(10, 8, 2, 0.92) 0%,
        rgba(20, 16, 4, 0.85) 45%,
        rgba(30, 24, 6, 0.60) 70%,
        rgba(40, 30, 8, 0.20) 100%);
  }

  /* Gold diagonal accent bar in hero */
  .home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #FFCE1B 0%, #F5A623 60%, transparent 100%);
    z-index: 4;
  }

  /* Gold shimmer line */
  .home-hero::after {
    content: '';
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,206,27,0.3) 30%, rgba(255,206,27,0.6) 50%, rgba(255,206,27,0.3) 70%, transparent 100%);
    z-index: 4;
  }

  .hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
  }

  .hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 206, 27, 0.12) 0%, transparent 65%);
    top: -150px;
    right: -50px;
  }

  .hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 206, 27, 0.08) 0%, transparent 70%);
    bottom: 5%;
    left: -80px;
  }

  /* Floating gold geometric accent */
  .hero-gold-diamond {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(255, 206, 27, 0.15);
    transform: rotate(45deg);
    top: 15%;
    right: 12%;
    pointer-events: none;
    z-index: 2;
    animation: diamondFloat 6s ease-in-out infinite;
  }
  .hero-gold-diamond::after {
    content: '';
    position: absolute;
    inset: 15px;
    border: 1px solid rgba(255, 206, 27, 0.08);
  }
  @keyframes diamondFloat {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(-12px); }
  }

  .home-hero-content {
    padding: 20px 0;
  }

  .home-hero-h1 {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    color: white;
    line-height: 1.15;
    letter-spacing: -0.5px;
  }

  .hero-brand-highlight {
    font-size: 0.72em;
    font-weight: 700;
    color: #111111;
    margin-top: 0.3rem;
    background: linear-gradient(135deg, #FFCE1B 0%, #F5A623 100%);
    border-radius: 4px;
  }

  .home-hero-lead {
    color: rgb(255, 255, 255);
    font-size: 1.08rem;
    line-height: 1.75;
    max-width: 540px;
  }

  .home-hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, #1C1C1E 90%);
    pointer-events: none;
  }

  .btn-hero-primary {
    background: linear-gradient(135deg, #FFCE1B 0%, #F5A623 100%);
    color: #111111;
    border: none;
    border-radius: 50px;
    padding: 0.9rem 2.2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 30px rgba(255, 206, 27, 0.4);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
  }

  .btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(255, 206, 27, 0.5);
    background: linear-gradient(135deg, #FFE566 0%, #FFCE1B 100%);
    color: #111111;
  }

  .btn-hero-outline {
    border: 2px solid rgba(255, 206, 27, 0.45);
    color: rgba(255, 206, 27, 0.9);
    background: rgba(255, 206, 27, 0.05);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    padding: 0.88rem 2.2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
  }

  .btn-hero-outline:hover {
    background: rgba(255, 206, 27, 0.15);
    border-color: #FFCE1B;
    color: #FFCE1B;
  }

  .hero-trust-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .hero-trust-item {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .hero-trust-item i {
    color: #FFCE1B;
  }

  .hero-trust-sep {
    color: rgba(255, 206, 27, 0.25);
  }

  /* Hero image stack */
  .hero-img-stack {
    position: relative;
    padding-bottom: 30px;
  }

  .his-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  }

  .his-card {
    position: absolute;
    background: white;
    border-radius: 14px;
    padding: 0.75rem 1.1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .his-card-tl {
    top: 20px;
    left: -20px;
  }

  .his-card-br {
    bottom: 55px;
    right: -20px;
  }

  .his-rating-badge {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 14px;
    padding: 0.7rem 1.4rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
  }

  .his-accent-img {
    position: absolute;
    top: 50%;
    right: -30px;
    width: 80px;
    height: 80px;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
    transform: translateY(-50%);
    display: none;
  }

  .his-accent-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hfc-icon {
    width: 36px;
    height: 36px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
  }

  .hfc-text strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
  }

  .hfc-text span {
    font-size: 0.7rem;
    color: var(--text-muted);
  }

  .hfc-stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .hfc-rating-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
  }

  @media (max-width: 991px) {
    .home-hero {
      min-height: auto;
      padding: 80px 0 110px;
      clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%);
    }

    .his-main img {
      height: 300px;
    }

    .his-card-tl {
      top: 10px;
      left: 10px;
    }

    .his-card-br {
      bottom: 50px;
      right: 10px;
    }

    .home-hero-bottom-fade {
      display: none;
    }
  }

  @media (max-width: 575px) {

    .his-card-tl,
    .his-card-br {
      display: none;
    }
  }

  /* ══ STATS STRIP ══ */
  .home-stats-strip {
    background: #111111;
    padding: 0;
    position: relative;
    margin-top: -60px;
    clip-path: polygon(0 12%, 100% 0, 100% 88%, 0 100%);
    padding: 70px 0;
    z-index: 2;
  }

  /* Gold shimmer top border on stats */
  .stats-diagonal-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(135deg, rgba(255,206,27,0.04) 0%, transparent 50%),
      repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(255,206,27,0.015) 40px,
        rgba(255,206,27,0.015) 41px
      );
  }

  .stat-strip-item {
    padding: 1.5rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(255, 206, 27, 0.12);
    position: relative;
  }

  .stat-strip-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255,206,27,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

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

  .stat-num {
    display: inline-block;
    font-size: 2.6rem;
    font-weight: 900;
    color: #FFCE1B;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    text-shadow: 0 0 30px rgba(255,206,27,0.3);
  }

  .stat-plus {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 206, 27, 0.6);
    vertical-align: top;
    margin-top: 4px;
    display: inline-block;
  }

  .stat-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.6rem;
    font-weight: 600;
  }

  @media (max-width: 767px) {
    .home-stats-strip {
      clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
      padding: 50px 0;
      margin-top: -30px;
    }
  }

  @media (max-width: 575px) {
    .stat-strip-item {
      border-right: none;
      border-bottom: 1px solid rgba(255, 206, 27, 0.08);
    }
    .home-stats-strip {
      clip-path: none;
    }
  }

  /* ══ ABOUT IMAGES ══ */
  .home-about-imgs {
    position: relative;
    padding-bottom: 70px;
    padding-right: 70px;
  }

  .hab-main {
    width: 100%;
    /* height: 420px; */
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }

  .hab-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 58%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    border: 4px solid white;
  }

  .hab-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: white;
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
  }

  .hab-badge div strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
  }

  .hab-badge div span {
    font-size: 0.7rem;
    color: var(--text-muted);
  }

  /* hab-years styles moved to bottom of stylesheet */

  @media (max-width: 767px) {
    .home-about-imgs {
      padding: 0 0 1rem;
    }

    .hab-accent,
    .hab-years {
      display: none;
    }

    .hab-badge {
      top: 12px;
      right: 12px;
    }

    .hab-main {
      height: 280px;
    }
  }

  .about-pillars {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
  }

  .about-pillar {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--bg-light);
    border-radius: var(--radius);
    border-left: 3px solid #FFCE1B;
    transition: var(--transition);
  }

  .about-pillar:hover {
    box-shadow: 0 4px 20px rgba(255,206,27,0.15);
    transform: translateX(3px);
  }

  .ap-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: linear-gradient(135deg, #FFCE1B 0%, #F5A623 100%);
    color: #111111;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
  }

  .about-pillar strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.15rem;
  }

  .about-pillar p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
  }

  /* ══ SERVICES ══ */
  .home-services-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
  }

  .hss-bg-img {
    position: absolute;
    inset: 0;
    background: url('../images/treatment-room.webp') center/cover no-repeat;
  }

  .hss-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(6, 14, 35, 0.97) 0%, rgba(13, 30, 64, 0.96) 50%, rgba(19, 46, 102, 0.94) 100%);
  }

  .section-tag-light {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
  }

  /* Service card with image */
  .home-service-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    height: 100%;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(8px);
  }

  .home-service-card-featured {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.2);
  }

  .home-service-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  }

  .hsc-img-top {
    position: relative;
    height: 180px;
    overflow: hidden;
  }

  .hsc-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .home-service-card:hover .hsc-img-top img {
    transform: scale(1.05);
  }

  .hsc-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(6, 14, 35, 0.1), rgba(6, 14, 35, 0.7));
  }

  .hsc-priority-badge-abs {
    position: absolute;
    bottom: 10px;
    left: 12px;
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: #ffd700;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.22rem 0.75rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .hsc-body {
    padding: 1.5rem;
  }

  .hsc-icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }

  .home-service-card h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
  }

  .home-service-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    margin-bottom: 0.75rem;
  }

  .hsc-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .hsc-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .hsc-list li:last-child {
    border-bottom: none;
  }

  .hsc-list li i {
    color: #4ade80;
    font-size: 0.78rem;
    margin-top: 3px;
    flex-shrink: 0;
  }

  .hsc-list li div {
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.8);
  }

  .hsc-list li div strong {
    color: white;
  }

  .hsc-list-sm li {
    padding: 0.35rem 0;
    font-size: 0.84rem;
  }

  /* Skin/hair horizontal card */
  .home-service-card-skin-hair {
    flex-direction: row !important;
    display: flex;
  }

  .hsch-img {
    width: 200px;
    min-width: 200px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
  }

  .hsch-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .home-service-card:hover .hsch-img img {
    transform: scale(1.05);
  }

  .hsch-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(6, 14, 35, 0.2), rgba(6, 14, 35, 0.75));
  }

  .hsch-img-label {
    position: absolute;
    bottom: 12px;
    left: 10px;
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.3px;
    writing-mode: horizontal-tb;
  }

  .hsch-body {
    padding: 1.5rem;
    flex: 1;
  }

  @media (max-width: 575px) {
    .home-service-card-skin-hair {
      flex-direction: column !important;
    }

    .hsch-img {
      width: 100%;
      min-width: unset;
      height: 160px;
    }

    .hsch-img-label {
      writing-mode: horizontal-tb;
      bottom: 10px;
      left: 10px;
    }
  }

  /* ══ PROCESS SECTION ══ */
  .home-process-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
  }

  .hpp-bg-img {
    position: absolute;
    inset: 0;
    background: url('../images/pralash-treatment-process-hrbr-layout-bangalore.png') center/cover no-repeat;
  }

  .hpp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 8, 2, 0.97) 0%, rgba(20, 16, 4, 0.94) 50%, rgba(30, 24, 6, 0.92) 100%);
  }

  .home-process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .hpg-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    transition: var(--transition);
  }

  .hpg-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-3px);
  }

  .hpg-item-featured {
    background: rgba(255, 206, 27, 0.08);
    border-color: rgba(255, 206, 27, 0.25);
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .hpg-item-featured .hpg-icon {
    margin-bottom: 0;
  }

  .hpg-num {
    position: absolute;
    top: -10px;
    left: 18px;
    background: linear-gradient(135deg, #FFCE1B 0%, #F5A623 100%);
    color: #111111;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
  }

  .hpg-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 0.9rem;
  }

  .hpg-item h3 {
    color: white;
    font-size: 0.97rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
  }

  .hpg-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.84rem;
    margin: 0;
  }

  @media (max-width: 575px) {
    .home-process-grid {
      grid-template-columns: 1fr;
    }

    .hpg-item-featured {
      grid-column: span 1;
      flex-direction: column;
    }
  }

  /* ══ SUITABLE / VISIT ══ */
  .home-suitable-img-block {
    position: relative;
  }

  .hsib-main {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }

  .hsib-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-top: -60px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  @media (max-width: 575px) {
    .hsib-card {
      margin: 0;
      margin-top: -40px;
      border-radius: var(--radius);
    }
  }

  /* ══ COST BLOCKS (image version) ══ */
  .home-cost-block {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
  }

  .home-cost-block:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
  }

  .hcb-img {
    position: relative;
    height: 160px;
    overflow: hidden;
  }

  .hcb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .home-cost-block:hover .hcb-img img {
    transform: scale(1.06);
  }

  .hcb-img-badge {
    position: absolute;
    bottom: 10px;
    left: 12px;
    background: white;
    border-radius: 50px;
    padding: 0.28rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  }

  .hcb-rows {
    padding: 0.25rem 1.25rem;
  }

  .hcb-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
  }

  .hcb-row:last-child {
    border-bottom: none;
  }

  .hcb-row span {
    color: var(--text-body);
  }

  .hcb-row strong {
    color: var(--primary);
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
  }

  .hcb-row-highlight {
    background: var(--bg-light);
    margin: 0 -1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hcb-link {
    display: block;
    text-align: center;
    padding: 0.85rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--bg-light);
    transition: var(--transition);
    border-top: 1px solid var(--border);
  }

  .hcb-link:hover {
    background: var(--primary);
    color: white;
  }

  /* ══ RESULTS SECTION ══ */
  .home-results-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
  }

  .hrs-bg-img {
    position: absolute;
    inset: 0;
    background: url('../images/pralash-consultation-room.webp') center/cover no-repeat;
  }

  .hrs-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 8, 2, 0.97) 0%, rgba(20, 16, 4, 0.94) 100%);
  }

  .home-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .home-tl-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    transition: var(--transition);
  }

  .home-tl-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
  }

  .home-tl-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
  }

  .home-tl-body strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
  }

  .home-tl-body p {
    font-size: 0.855rem;
    margin: 0;
  }

  .home-safety-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
  }

  .home-safety-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
  }

  .home-safety-item i {
    color: #FFCE1B;
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
  }

  .home-safety-item strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.15rem;
  }

  .home-safety-item p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
  }

  @media (max-width: 479px) {
    .home-safety-grid {
      grid-template-columns: 1fr;
    }
  }

  /* ══ WHY SECTION ══ */
  .home-why-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
  }

  .hwy-bg-img {
    position: absolute;
    inset: 0;
    background: url('../images/interior-view-of-pralash.webp') center/cover no-repeat;
  }

  .hwy-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 8, 2, 0.96) 0%, rgba(18, 14, 3, 0.92) 50%, rgba(25, 20, 4, 0.94) 100%);
  }

  .home-why-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 18px;
    padding: 1.75rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
  }

  .home-why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-5px);
  }

  .hwc-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .hwc-icon {
    width: 46px;
    height: 46px;
    background: rgba(255, 206, 27, 0.15);
    color: #FFCE1B;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
  }

  .hwc-stat {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    font-family: 'Poppins', sans-serif;
  }

  .home-why-card h4 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  .home-why-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.855rem;
    margin: 0;
  }

  /* ══ WHEN TO VISIT images ══ */
  .home-visit-imgs {
    position: relative;
    padding-bottom: 60px;
    padding-right: 60px;
  }

  .hvi-main {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }

  .hvi-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 4px solid white;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.2);
  }

  @media (max-width: 767px) {
    .home-visit-imgs {
      padding: 0 0 1rem;
    }

    .hvi-accent {
      display: none;
    }

    .hvi-main {
      height: 260px;
    }
  }

  .home-visit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
  }

  .home-visit-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
  }

  .home-visit-item i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
  }

  .home-visit-item p {
    font-size: 0.875rem;
    color: var(--text-body);
    margin: 0;
  }

  /* ══ CTA ══ */
  .home-cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
  }

  .home-cta-bg-img {
    position: absolute;
    inset: 0;
    background: url('../images/exterior-view-of-pralash.png') center/cover no-repeat;
  }

  .home-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 6, 2, 0.97) 0%, rgba(15, 12, 3, 0.95) 55%, rgba(20, 16, 4, 0.97) 100%);
  }

  .home-cta-info-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(12px);
  }

  .cta-info-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .cta-info-row:first-child {
    padding-top: 0;
  }

  .cta-info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .cta-info-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(255, 206, 27, 0.15);
    color: #FFCE1B;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
  }

  .cta-info-row strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.2rem;
  }

  .cta-info-row p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
  }

  /* ══ SERVICE TILES (new) ══ */
  .home-svc-block-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
  }

  .hsb-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(255, 206, 27, 0.16);
    color: var(--primary-light);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
  }

  .hsb-title {
    color: white;
    font-size: 1.08rem;
    font-weight: 800;
    margin: 0 0 0.1rem;
  }

  .hsb-sub {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.78rem;
    margin: 0;
  }

  .home-svc-tile {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
  }

  .home-svc-tile:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  }

  .hst-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
  }

  .hst-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .home-svc-tile:hover .hst-img img {
    transform: scale(1.08);
  }

  .hst-name {
    display: block;
    padding: 0.65rem 0.8rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: white;
    text-align: center;
    line-height: 1.3;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Skin tile accent */
  .home-svc-tile-skin {
    border-color: rgba(255, 138, 181, 0.15);
  }

  .home-svc-tile-skin:hover {
    border-color: rgba(255, 138, 181, 0.4);
  }

  /* Hair tile accent */
  .home-svc-tile-hair {
    border-color: rgba(74, 222, 128, 0.12);
  }

  .home-svc-tile-hair:hover {
    border-color: rgba(74, 222, 128, 0.35);
  }

  /* Emergency tile */
  .home-svc-tile-emergency {
    border-color: rgba(255, 107, 107, 0.2);
  }

  .home-svc-tile-emergency:hover {
    border-color: rgba(255, 107, 107, 0.5);
  }

  /* "More" placeholder tile */
  .hst-img-more {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.4);
    aspect-ratio: 4 / 3;
    width: 100%;
  }

  .home-svc-tile-skin .hst-img-more {
    background: rgba(255, 100, 150, 0.08);
    color: #ff8ab5;
  }

  @media (max-width: 575px) {
    .home-svc-block-header .ms-auto {
      width: 100%;
    }
  }

  /* ══ BEFORE & AFTER ══ */
  .home-ba-section { padding: 100px 0; background: #111111; }
  .ba-section-tag { display:flex; align-items:center; justify-content:center; gap:0.9rem; font-size:0.72rem; font-weight:800; letter-spacing:2.5px; text-transform:uppercase; color:#FFCE1B; margin-bottom:0.25rem; }
  .ba-line { flex:0 0 36px; height:1px; background:#FFCE1B; display:inline-block; }
  .ba-heading { font-family:'Poppins',sans-serif; font-size:clamp(1.6rem,3vw,2.2rem); font-weight:800; color:white; margin-bottom:0.6rem; }
  .ba-sub { font-size:0.95rem; color:rgba(255,255,255,0.5); max-width:480px; margin:0 auto; line-height:1.7; }
  .ba-card { background:#1a1a1a; border:1px solid rgba(255,206,27,0.1); border-radius:20px; overflow:hidden; box-shadow:0 6px 30px rgba(0,0,0,0.3); transition:var(--transition); height:100%; display:flex; flex-direction:column; }
  .ba-card:hover { transform:translateY(-5px); box-shadow:0 16px 50px rgba(255,206,27,0.15); border-color:rgba(255,206,27,0.3); }
  .ba-split { display:flex; height:250px; }
  .ba-half { flex:1; position:relative; overflow:hidden; }
  .ba-half img { width:100%; height:100%; object-fit:cover; object-position:top center; transition:transform 0.5s ease; }
  .ba-card:hover .ba-half img { transform:scale(1.04); }
  .ba-before { border-right:1px solid rgba(255,206,27,0.15); }
  .ba-label { position:absolute; top:10px; padding:0.25rem 0.65rem; font-size:0.67rem; font-weight:800; letter-spacing:1px; color:#111111; border-radius:6px; z-index:2; }
  .ba-label-before { left:8px; background:#FFCE1B; }
  .ba-label-after { right:8px; background:#F5A623; }
  .ba-footer { display:flex; align-items:center; gap:0.6rem; padding:0.9rem 1.1rem; font-size:0.9rem; font-weight:700; color:white; font-family:'Poppins',sans-serif; background:#1a1a1a; }
  .ba-arrow { color:#FFCE1B; font-size:1.2rem; flex-shrink:0; }
  .ba-cta-note { font-size:0.82rem; color:rgba(255,255,255,0.4); }

  @media (max-width:575px) {
    .ba-split { height:160px; }
    .ba-heading { font-size:1.5rem; }
    .ba-footer { font-size:0.8rem; padding:0.75rem 0.9rem; }
  }

  /* ══ SERVICES V2 ══ */
  .home-services-v2 {
    padding: 100px 0;
    background: #FAFAF7;
  }

  .hsv2-cat-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
  }

  .hsv2-cat-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
  }

  .hsv2-cat-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0;
    color: var(--text-dark);
  }

  .hsv2-cat-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0;
  }

  .hsv2-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
  }

  .hsv2-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-color: var(--primary);
  }

  .hsv2-icon {
    width: 85px;
    height: 85px;
    /* background: var(--primary); */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
  }

  .hsv2-card h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
  }

  .hsv2-card>p {
    font-size: 0.845rem;
    color: var(--text-muted);
    margin-bottom: 0;
  }

  .hsv2-divider {
    height: 1px;
    background: var(--border);
    margin: 1.1rem 0;
  }

  .hsv2-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    flex: 1;
    margin-bottom: 1.25rem;
  }

  .hsv2-list a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 500;
    color: grey;
    text-decoration: none;
    transition: var(--transition);
  }

  .hsv2-list a:hover {
    color: var(--primary-dark);
  }

  .hsv2-list a i {
    font-size: 0.6rem;
  }

  .hsv2-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.75rem;
    border: 2px solid var(--primary);
    /* border-radius: 50px; */
    color: var(--primary);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition);
  }

  .hsv2-btn:hover {
    background: var(--primary);
    color: white;
  }

  .hsv2-outline-skin {
    border: 2px solid #c2185b;
    color: #c2185b;
    border-radius: 50px;
    padding: 0.4rem 1.1rem;
    font-weight: 600;
    font-size: 0.82rem;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    transition: var(--transition);
  }

  .hsv2-outline-skin:hover {
    background: #c2185b;
    color: white;
  }

  .hsv2-outline-hair {
    border: 2px solid #2e7d32;
    color: #2e7d32;
    border-radius: 50px;
    padding: 0.4rem 1.1rem;
    font-weight: 600;
    font-size: 0.82rem;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    transition: var(--transition);
  }

  .hsv2-outline-hair:hover {
    background: #2e7d32;
    color: white;
  }

  /* Skin accent */
  .hsv2-skin .hsv2-cat-icon,
  .hsv2-skin .hsv2-icon {
    background: #c2185b;
  }


  .hsv2-skin .hsv2-card:hover {
    border-color: #c2185b;
  }

  .hsv2-skin .hsv2-btn {
    color: white;
    border-color: black;
    background: black;
}

  /* .hsv2-skin .hsv2-btn:hover {
    background: #c2185b;
    color: white;
  } */

  /* Hair accent */
  .hsv2-hair .hsv2-cat-icon,
  .hsv2-hair .hsv2-icon {
    background: #2e7d32;
  }

  .hsv2-hair .hsv2-card:hover {
    border-color: #2e7d32;
  }

  .hsv2-hair .hsv2-btn {
    color: #2e7d32;
    /* border-color: #2e7d32; */
  }

  .hsv2-hair .hsv2-btn:hover {
    background: #2e7d32;
    color: white;
  }

  /* CTA card variant */
  .hsv2-card-cta {
    background: var(--primary-gradient);
    border: none;
  }

  .hsv2-card-cta h4,
  .hsv2-card-cta p {
    color: white;
  }

  .hsv2-icon-cta {
    background: rgba(255, 255, 255, 0.2);
  }

  .hsv2-cta-info p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
  }

  .hsv2-btn-cta {
    background: white;
    color: var(--primary);
    border: none;
  }

  .hsv2-btn-cta:hover {
    background: var(--bg-light);
    color: var(--primary-dark);
  }

  /* ══ DOCTOR CARDS V2 ══ */
  .home-doc-v2 {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.09);
    transition: var(--transition);
    height: 100%;
  }

  .home-doc-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
  }

  .hdv2-accent-bar {
    height: 5px;
  }

  .hdv2-dental {
    background: linear-gradient(90deg, #FFCE1B, #F5A623);
  }

  .hdv2-skin {
    background: linear-gradient(90deg, #A9A9A9, #888888);
  }

  .hdv2-hair-bar {
    background: linear-gradient(90deg, #D4A800, #FFCE1B);
  }

  /* Hair founder card overrides */
  .hdv2-hair-tags span {
    background: #FFFBEC;
    color: #D4A800;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
  }

  .hdv2-hair-stats {
    background: #FFFBEC;
  }

  .hdv2-cta-hair {
    background: linear-gradient(135deg, #FFCE1B 0%, #F5A623 100%);
    color: #111111 !important;
  }

  .hdv2-cta-hair:hover {
    opacity: 0.92;
    color: #111111 !important;
  }

  .hdv2-img-wrap {
    height: 300px;
    overflow: hidden;
  }

  .hdv2-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
  }

  .home-doc-v2:hover .hdv2-img {
    transform: scale(1.04);
  }

  .hdv2-body {
    padding: 1.75rem;
  }

  .hdv2-verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #2e7d32;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.6rem;
  }

  .hdv2-name {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
  }

  .hdv2-qual {
    font-size: 0.82rem;
    font-weight: 600;
    color: #D4A800;
    margin-bottom: 0.15rem;
  }

  .hdv2-role {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 600;
    margin-bottom: 0.85rem;
  }

  .hdv2-bio {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .hdv2-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.1rem;
  }

  .hdv2-tags span {
    background: #FFFBEC;
    color: #D4A800;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
  }

  .hdv2-stats {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: #FFFBEC;
    border-radius: var(--radius);
  }

  .hdv2-stat {
    flex: 1;
    text-align: center;
  }

  .hdv2-stat strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 900;
    color: #D4A800;
    font-family: 'Poppins', sans-serif;
  }

  .hdv2-stat span {
    font-size: 0.67rem;
    color: var(--text-muted);
    text-transform: uppercase;
  }

  .hdv2-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.85rem;
    background: linear-gradient(135deg, #FFCE1B 0%, #F5A623 100%);
    color: #111111;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition);
  }

  .hdv2-cta:hover {
    opacity: 0.92;
    color: #111111;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255,206,27,0.4);
  }

  /* Skin doctor overrides — gray secondary */
  .hdv2-skin-card .hdv2-qual {
    color: #707070;
  }

  .hdv2-skin-card .hdv2-tags span {
    background: #f5f5f5;
    color: #555555;
  }

  .hdv2-skin-card .hdv2-stats {
    background: #f5f5f5;
  }

  .hdv2-skin-card .hdv2-stat strong {
    color: #555555;
  }

  .hdv2-skin-card .hdv2-cta {
    background: linear-gradient(135deg, #A9A9A9 0%, #888888 100%);
    color: white;
  }

  .hdv2-skin-card .hdv2-cta:hover {
    color: white;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  }

  @media (max-width: 575px) {
    .hdv2-img-wrap {
      height: 240px;
    }

    .hdv2-body {
      padding: 1.25rem;
    }

    .hsv2-list {
      grid-template-columns: 1fr;
    }
  }

  /* ══ HERO BADGE ══ */
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 206, 27, 0.12);
    border: 1px solid rgba(255, 206, 27, 0.3);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    backdrop-filter: blur(8px);
  }

  /* ══ ABOUT YEARS BADGE ══ */
  .hab-years {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: linear-gradient(135deg, #FFCE1B 0%, #F5A623 100%);
    border-radius: var(--radius);
    padding: 0.85rem 1.1rem;
    color: #111111;
    text-align: center;
    box-shadow: 0 8px 24px rgba(255, 206, 27, 0.4);
    z-index: 2;
  }

  .hay-num {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    color: #111111;
  }

  .hay-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
  }

  /* ══ VISIT ITEM HOVER ══ */
  .home-visit-item:hover {
    border-color: #FFCE1B;
    box-shadow: 0 4px 20px rgba(255,206,27,0.15);
  }

  /* ══ SERVICE v2 ICONS (dental) ══ */
  .hsv2-icon img {
    width:100%
    /* height: 55px; */
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  }

  /* ══ WHY CARD HOVER (gold border) ══ */
  .home-why-card:hover {
    border-color: rgba(255, 206, 27, 0.3);
    box-shadow: 0 12px 40px rgba(255, 206, 27, 0.08);
  }

  /* ══ COMPARE TABLE ══ */
  .compare-wrap .table thead th {
    background: #111111;
    color: #FFCE1B;
  }
  .compare-wrap .table .check {
    color: #D4A800;
    font-weight: 700;
  }

  /* ══ DOCTOR SECTION BG ══ */
  .section-bg-light {
    background: #FAFAF5;
  }

  /* ══ DIAGONAL SEPARATOR ON DARK SECTIONS ══ */
  .home-process-section,
  .home-results-section,
  .home-why-section,
  .home-cta-section {
    clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
    margin: -2px 0;
    padding: 110px 0;
  }

  @media (max-width: 767px) {
    .home-process-section,
    .home-results-section,
    .home-why-section,
    .home-cta-section {
      clip-path: polygon(0 1.5%, 100% 0, 100% 98.5%, 0 100%);
      padding: 80px 0;
    }
  }

