/* ==========================================================================
   5-13. Homepage Sections
   - 5. Hero Section
   - 6. Stats / Trust Bar
   - 7. Mūsų Paslaugos
   - 8. Kodėl Rinktis Vilnius Dental
   - 9. Mūsų Gydytojai
   - 10. Pacientų Istorijos (Reviews / Before-After)
   - 11. Implantacijos Procesas
   - 12. Promo Banner & Loan Calculator
   - 13. Contact & Booking Form
   ========================================================================== */
@layer components {
  /* --------------------------------------------------------------------------
     5. Hero Section
     -------------------------------------------------------------------------- */
  .hero-section {
    padding-block: 56px 90px;
    background-color: #FFFFFF;
    position: relative;
    overflow: hidden;
    width: 100%;
  }

  .hero-full-bleed-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 52vw;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }

  .hero-full-bleed-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-bottom-left-radius: 40px;
  }

  .hero-img-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(to right, #FFFFFF 0%, rgba(255, 255, 255, 0.85) 30%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
  }

  .hero-waves-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;

    svg {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }

  .hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 4;
  }

  .hero-content {
    max-width: 480px;
    z-index: 4;
  }

  .hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.2rem;
    line-height: 1.14;
    font-weight: 700;
    color: var(--navy-dark);
    letter-spacing: -0.01em;
    margin-bottom: 18px;
  }

  .hero-highlight {
    color: var(--navy-dark);
  }

  .hero-description {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 440px;
    margin-bottom: 28px;
  }

  .hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
    flex-wrap: wrap;
  }

  .btn-hero-cta {
    padding: 13px 26px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: 6px;
    background-color: #005B60;
    color: #FFFFFF;
    border: none;
    transition: all var(--transition-normal);

    &:hover {
      background-color: #02484C;
      color: #FFFFFF;
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(0, 91, 96, 0.25);
    }
  }

  .btn-hero-prices {
    padding: 12px 24px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: 6px;
    background-color: transparent;
    color: #C5A059;
    border: 1.5px solid #C5A059;
    transition: all var(--transition-normal);

    &:hover {
      background-color: #C5A059;
      color: #FFFFFF;
      transform: translateY(-1px);
    }
  }

  .hero-video-trigger {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 6px 0;
    transition: opacity var(--transition-fast);

    &:hover {
      opacity: 0.85;

      .play-icon-circle {
        transform: scale(1.1);
      }
    }
  }

  .play-icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid #005B60;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #005B60;
    transition: transform var(--transition-normal);
  }

  .video-trigger-text {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--navy-dark);
  }

  /* Hero Visual & Floating Badges */
  .hero-visual-badges {
    position: relative;
    height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 5;
  }

  .floating-badge {
    position: absolute;
    background: #FFFFFF;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 10;
    min-width: 195px;
    transition: transform var(--transition-bounce);

    &:hover {
      transform: translateY(-4px) scale(1.02);
    }
  }

  .badge-top-left {
    top: 10%;
    left: -20px;
  }

  .badge-middle-left {
    top: 40%;
    left: -20px;
  }

  .badge-bottom-left {
    bottom: 12%;
    left: -20px;
  }

  .badge-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .badge-info {
    display: flex;
    flex-direction: column;
  }

  .badge-val {
    font-weight: 800;
    font-size: 0.92rem;
    color: var(--navy-dark);
    line-height: 1.15;
  }

  .badge-lbl {
    font-size: 0.66rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.04em;
  }

  /* --------------------------------------------------------------------------
     6. Stats / Trust Bar
     -------------------------------------------------------------------------- */
  .stats-bar-section {
    position: relative;
    z-index: 20;
    margin-top: -45px;
    margin-bottom: 20px;
  }

  .stats-bar-grid {
    background: #08182B;
    border-radius: 16px;
    padding: 26px 36px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    box-shadow: 0 15px 35px rgba(8, 24, 43, 0.2);
  }

  .stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    padding: 6px 16px;

    &:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0;
      top: 15%;
      height: 70%;
      width: 1px;
      background: rgba(255, 255, 255, 0.12);
    }
  }

  .stat-icon-wrap {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #C5A059;
  }

  .stat-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .stat-number {
    color: #FFFFFF;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }

  .stat-number-with-star {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .stat-star {
    color: var(--gold-primary, #C5A059);
    font-size: 1.2rem;
    line-height: 1;
  }

  .stat-label {
    color: #E2E8F0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-top: 4px;
    text-transform: uppercase;
    line-height: 1.2;
  }

  /* --------------------------------------------------------------------------
     7. Mūsų Paslaugos (Our Services)
     -------------------------------------------------------------------------- */
  .services-section {
    padding: 60px 0;
    background-color: #FFFFFF;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
  }

  .service-card {
    background: #FFFFFF;
    border: 1px solid #EAEFF2;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);

    &:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 24px rgba(10, 25, 47, 0.08);
      border-color: rgba(0, 91, 96, 0.25);

      .service-img {
        transform: scale(1.03);
      }

      .service-icon-badge {
        transform: scale(1.08);
      }

      .service-action-link .arrow {
        transform: translateX(4px);
      }
    }
  }

  .service-img-wrap {
    position: relative;
    width: 100%;
    height: 160px;
    background: #F8FAFC;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    overflow: visible;
  }

  .service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    transition: transform var(--transition-normal);
    display: block;
  }

  .service-icon-badge {
    position: absolute;
    bottom: -21px;
    left: 18px;
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    border-radius: 50%;
    background: #005B60;
    border: 2.5px solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 91, 96, 0.3);
    z-index: 30;
    transition: transform var(--transition-fast);
  }

  .service-body {
    padding: 30px 16px 18px 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .service-title {
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #0A192F;
    margin-bottom: 8px;
    min-height: 2.3em;
    display: flex;
    align-items: flex-end;
  }

  .service-text {
    font-size: 0.76rem;
    color: #64748B;
    line-height: 1.45;
    margin-bottom: 16px;
    flex-grow: 1;
    min-height: 48px;
  }

  .service-price {
    font-size: 0.74rem;
    color: #64748B;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 12px;

    strong {
      font-size: 0.88rem;
      font-weight: 800;
      color: #0A192F;
    }
  }

  .service-action-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.74rem;
    font-weight: 700;
    color: #0A192F;
    letter-spacing: 0.04em;
    text-align: left;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;

    .arrow {
      color: #C5A059;
      font-size: 1.15rem;
      font-weight: 800;
      line-height: 1;
      display: inline-block;
      transition: transform var(--transition-fast);
    }

    &:hover {
      color: #005B60;
    }
  }

  /* --------------------------------------------------------------------------
     8. Kodėl Rinktis Vilnius Dental? (Why Choose Us)
     -------------------------------------------------------------------------- */
  .why-us-section {
    padding: 64px 0 0 0;
    background-color: #FFFFFF;
    position: relative;
  }

  .why-us-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 36px;
    align-items: flex-start;
    padding-bottom: 56px;
    border-bottom: 1px solid #EAEFF2;
  }

  .why-us-intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 4px;
  }

  .why-us-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #0A192F;
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .why-us-description {
    font-size: 0.84rem;
    color: #64748B;
    line-height: 1.5;
    margin-bottom: 22px;
  }

  .btn-about-us {
    padding: 10px 22px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 6px;
    border: 1.5px solid #005B60;
    color: #005B60;
    background: transparent;
    transition: all var(--transition-fast);
    display: inline-block;
    cursor: pointer;

    &:hover {
      background: #005B60;
      color: #FFFFFF;
    }
  }

  /* Timeline Layout */
  .why-us-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: flex-start;
  }

  .why-step-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;

    &:last-child .why-connector-after {
      display: none;
    }

    &:hover .why-step-icon {
      transform: translateY(-3px);
      box-shadow: 0 6px 16px rgba(0, 91, 96, 0.15);
    }
  }

  .why-step-header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 72px;
    position: relative;
  }

  .why-connector-before,
  .why-connector-mid {
    display: none;
  }

  .why-step-badge {
    position: absolute;
    right: calc(50% + 42px);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1.5px solid #C5A059;
    color: #C5A059;
    font-weight: 700;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  }

  .why-step-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 1.5px solid #005B60;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    box-shadow: 0 2px 8px rgba(0, 91, 96, 0.06);

    svg {
      stroke: #005B60;
    }
  }

  .why-connector-after {
    position: absolute;
    left: calc(50% + 42px);
    right: -24px;
    height: 1.5px;
    background-color: #C5A059;
    z-index: 1;

    &::after {
      content: '';
      position: absolute;
      right: 0;
      top: -3.5px;
      width: 0;
      height: 0;
      border-top: 4px solid transparent;
      border-bottom: 4px solid transparent;
      border-left: 6px solid #C5A059;
    }
  }

  .why-step-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 14px 6px 0 6px;
    width: 100%;
  }

  .why-step-title {
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    color: #0A192F;
    line-height: 1.25;
    margin-bottom: 8px;
    min-height: 2.5em;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .why-step-desc {
    font-size: 0.74rem;
    color: #64748B;
    line-height: 1.45;
    max-width: 175px;
  }

  /* --------------------------------------------------------------------------
     9. Mūsų Gydytojai (Our Doctors)
     -------------------------------------------------------------------------- */
  .doctors-section {
    padding: 60px 0;
    background-color: #FFFFFF;
  }

  .doctors-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
  }

  .doctor-card {
    background: #FFFFFF;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #EAEFF2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;

    &:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 24px rgba(10, 25, 47, 0.08);

      .doctor-img {
        transform: scale(1.03);
      }

      .doctor-modal-btn {
        background: #C5A059;
        color: #FFFFFF;
        transform: scale(1.08);
      }
    }
  }

  .doctor-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #E8ECEF;
  }

  .doctor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform var(--transition-normal);
    display: block;
  }

  .doctor-info-wrap {
    padding: 16px 14px 14px 14px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    flex: 1;
    background: #FFFFFF;
  }

  .doctor-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
  }

  .doctor-name {
    font-size: 0.84rem;
    font-weight: 800;
    color: #0A192F;
    letter-spacing: 0.02em;
    margin-bottom: 5px;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .doctor-role {
    display: block;
    font-size: 0.75rem;
    color: #005B60;
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 2px;
  }

  .doctor-exp {
    font-size: 0.73rem;
    color: #005B60;
    opacity: 0.88;
    margin: 0;
    line-height: 1.35;
  }

  .doctor-modal-btn {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    border-radius: 50%;
    border: 1.5px solid #C5A059;
    background: #FAF5ED;
    color: #C5A059;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
    padding: 0;
    margin-bottom: 2px;
    box-shadow: 0 2px 6px rgba(197, 160, 89, 0.12);

    .plus-sign {
      font-size: 1.25rem;
      font-weight: 300;
      line-height: 1;
      display: block;
      margin-top: -2px;
    }

    &:hover {
      background: #C5A059;
      color: #FFFFFF;
      transform: scale(1.08);
      box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
    }
  }

  /* --------------------------------------------------------------------------
     10. Pacientų Istorijos (Patient Stories / Before & After)
     -------------------------------------------------------------------------- */
  .patient-stories-section {
    padding: 60px 0;
    background-color: #FFFFFF;
  }

  .patient-stories-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 20px;
    align-items: stretch;
  }

  /* Col 1: Google Reviews Summary Card */
  .reviews-summary-card {
    background: #08182B;
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #FFFFFF;
    box-shadow: 0 4px 16px rgba(8, 24, 43, 0.08);
  }

  .stories-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
    color: #FFFFFF;
  }

  .stories-subheading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 0.92rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
  }

  .google-badge-box {
    margin-bottom: 24px;
  }

  .google-logo-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
  }

  .google-logo-text {
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.02em;
  }

  .g-blue {
    color: #4285F4;
  }

  .g-red {
    color: #EA4335;
  }

  .g-yellow {
    color: #FBBC05;
  }

  .g-green {
    color: #34A853;
  }

  .stars-row {
    display: flex;
    gap: 2px;
  }

  .star-gold {
    color: #FBBC05;
    font-size: 1rem;
  }

  .google-score-row {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .g-score {
    font-weight: 800;
    font-size: 0.95rem;
    color: #FFFFFF;
  }

  .g-score-divider {
    width: 1px;
    height: 13px;
    background-color: rgba(255, 255, 255, 0.25);
    margin: 0 2px;
  }

  .g-count {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.65);
  }

  .btn-reviews {
    width: 100%;
    background: #FFFFFF;
    color: #08182B;
    font-weight: 700;
    font-size: 0.76rem;
    letter-spacing: 0.04em;
    border-radius: 6px;
    border: none;
    padding: 11px 18px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);

    &:hover {
      background: #FAF5ED;
      color: #005B60;
    }
  }

  /* Col 2: White Story Content Panel */
  .story-content-panel {
    background: #FFFFFF;
    border: 1px solid #EAEFF2;
    border-radius: 14px;
    padding: 20px 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    display: grid;
    grid-template-columns: 215px 1fr 195px;
    gap: 24px;
    align-items: center;
  }

  /* Sub-col 1: Before / After Clinical Result */
  .before-after-card {
    background: transparent;
    border: none;
    padding: 0 24px 0 0;
    border-right: 1px solid #EAEFF2;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }

  .ba-comparison-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .ba-image-box {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 84px;
    background: #F1F5F9;
  }

  .ba-tag {
    position: absolute;
    top: 6px;
    left: 6px;
    background: #FFFFFF;
    color: #0A192F;
    font-weight: 800;
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    padding: 2px 7px;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  }

  .ba-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .ba-slider-line-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 4px;
    color: #C5A059;
    font-size: 0.65rem;
  }

  .ba-line-bar {
    flex-grow: 1;
    height: 1px;
    background-color: #C5A059;
  }

  /* Sub-col 2: Testimonial Quote Box */
  .testimonial-quote-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
  }

  .ba-quote {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0A192F;
    line-height: 1.35;
    margin-bottom: 12px;
  }

  .ba-subquote {
    font-size: 0.76rem;
    color: #64748B;
    line-height: 1.45;
    margin-bottom: 14px;
  }

  .ba-author {
    font-size: 0.82rem;
    font-weight: 800;
    color: #0A192F;
  }

  /* Sub-col 3: Video Testimonial */
  .video-testimonial-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .video-thumbnail-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 155px;
    width: 100%;
    cursor: pointer;
    background: #E8ECEF;

    &:hover {
      .video-thumb-img {
        transform: scale(1.03);
      }

      .play-btn-overlay {
        transform: translate(-50%, -50%) scale(1.1);
      }
    }
  }

  .video-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
    display: block;
  }

  .play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
  }

  .testimonial-arrows {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    padding: 0 4px;
  }

  .arrow-connector-line {
    flex-grow: 1;
    height: 1px;
    background-color: #E8DFCF;
    margin: 0 8px;
  }

  .arrow-btn {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    border-radius: 50%;
    border: 1.2px solid #C5A059;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C5A059;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 2;

    &:hover {
      background: #C5A059;
      color: #FFFFFF;
      transform: scale(1.08);
    }
  }

  .carousel-dots {
    display: flex;
    gap: 6px;

    .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #CBD5E1;
      transition: all var(--transition-fast);

      &.active {
        width: 18px;
        border-radius: 4px;
        background: var(--navy-dark);
      }
    }
  }

  /* --------------------------------------------------------------------------
     11. Implantacijos Procesas (Implant Process)
     -------------------------------------------------------------------------- */
  .implant-process-section {
    padding: 20px 0 60px 0;
    background-color: #FFFFFF;
  }

  .implant-process-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 34px 28px 26px 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    border: 1px solid #EAEFF2;
    position: relative;
    margin-top: 12px;
  }

  .implant-process-title {
    position: absolute;
    top: 0;
    left: 32px;
    transform: translateY(-50%);
    background: #FFFFFF;
    padding: 0 12px;
    margin: 0;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0A192F;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    white-space: nowrap;
    line-height: 1;
    z-index: 2;
  }

  .process-steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    align-items: center;
  }

  .process-step-item {
    display: flex;
    align-items: center;
    gap: 14px;

    &:hover .pstep-icon-wrap {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 91, 96, 0.15);
    }
  }

  .pstep-icon-wrap {
    width: 62px;
    height: 62px;
    min-width: 62px;
    min-height: 62px;
    border-radius: 50%;
    border: 1.5px solid #005B60;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);

    svg {
      stroke: #005B60;
    }
  }

  .pstep-text-wrap {
    display: flex;
    flex-direction: column;
  }

  .pstep-number {
    font-weight: 800;
    font-size: 1.1rem;
    color: #0A192F;
    line-height: 1.1;
    margin-bottom: 2px;
  }

  .pstep-name {
    font-size: 0.76rem;
    font-weight: 800;
    color: #0A192F;
    letter-spacing: 0.03em;
    margin-bottom: 2px;
    line-height: 1.2;
  }

  .pstep-description {
    font-size: 0.72rem;
    color: #64748B;
    line-height: 1.35;
    margin: 0;
  }

  /* --------------------------------------------------------------------------
     12. Promo Banner & Loan Calculator
     -------------------------------------------------------------------------- */
  .promo-financing-section {
    padding: 0;
    margin-top: 24px;
    margin-bottom: 40px;
    background-color: #FFFFFF;
  }

  .promo-financing-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 24px;
    align-items: stretch;
    margin-top: 16px;
    margin-bottom: 16px;
  }

  /* Left Promo Card */
  .promo-banner-card {
    background: #08182B;
    border-radius: 14px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    min-height: 260px;
    box-shadow: 0 4px 16px rgba(8, 24, 43, 0.08);
  }

  .promo-content {
    display: flex;
    flex-direction: column;
    z-index: 3;
    max-width: 58%;
  }

  .promo-tag {
    color: #C5A059;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
    display: block;
  }

  .promo-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 8px;
    color: #FFFFFF;
  }

  .promo-pricing-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 10px;
  }

  .promo-pricing-badge .new-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: #C5A059;
    letter-spacing: -0.02em;
    line-height: 1;
  }

  .promo-pricing-badge .old-price {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: line-through;
    font-weight: 500;
  }

  .promo-subtext {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    margin-bottom: 22px;
  }

  .btn-promo-cta {
    background: #FFFFFF;
    color: #08182B;
    font-weight: 700;
    font-size: 0.76rem;
    letter-spacing: 0.04em;
    border-radius: 6px;
    border: none;
    padding: 11px 22px;
    align-self: flex-start;
    cursor: pointer;
    transition: all var(--transition-fast);

    &:hover {
      background: #FAF5ED;
      color: #005B60;
    }
  }

  .promo-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
  }

  .promo-implant-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
  }

  /* Right Financing Card */
  .financing-calculator-card {
    background: #FFFFFF;
    border-radius: 14px;
    border: 1px solid #EAEFF2;
    padding: 24px 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .calculator-body-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
    align-items: center;
  }

  .calc-left-col {
    padding-right: 28px;
    border-right: 1px solid #EAEFF2;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .calculator-header {
    margin-bottom: 16px;
  }

  .calc-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #0A192F;
    letter-spacing: 0.03em;
    margin-bottom: 4px;
  }

  .calc-subtitle {
    font-size: 0.76rem;
    color: #64748B;
  }

  .calc-amount-control {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .amount-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .btn-step-circle {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    border-radius: 50%;
    border: 1.2px solid #005B60;
    background: #FFFFFF;
    color: #005B60;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;

    &:hover {
      background: #005B60;
      color: #FFFFFF;
    }
  }

  .current-amount-display {
    font-size: 1.55rem;
    font-weight: 800;
    color: #0A192F;
    letter-spacing: -0.02em;
    min-width: 110px;
    text-align: center;
  }

  /* Custom Range Slider */
  .slider-wrapper {
    padding: 0 4px;
  }

  .custom-range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: #E2E8F0;
    outline: none;

    &::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: #005B60;
      cursor: pointer;
      border: 2px solid #FFFFFF;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
      transition: transform var(--transition-fast);

      &:hover {
        transform: scale(1.2);
      }
    }
  }

  /* Right Sub-column */
  .calc-right-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
  }

  .output-top {
    display: flex;
    flex-direction: column;
  }

  .calc-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #475569;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
    display: block;
  }

  .calc-monthly-val {
    font-size: 2rem;
    font-weight: 800;
    color: #0A192F;
    line-height: 1;
    letter-spacing: -0.02em;
  }

  .calc-unit {
    font-size: 0.85rem;
    font-weight: 500;
    color: #64748B;
  }

  .calc-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;

    li {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.76rem;
      color: #334155;
      font-weight: 500;
    }
  }

  .btn-teal-primary {
    background: #005B60;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    border-radius: 6px;
    border: none;
    padding: 12px 20px;
    text-align: center;
    cursor: pointer;
    width: 100%;
    transition: all var(--transition-fast);

    &:hover {
      background: #02484C;
    }
  }

  /* --------------------------------------------------------------------------
     13. Contact & Booking Form
     -------------------------------------------------------------------------- */
  .contact-booking-section {
    padding: 60px 0;
    background-color: #FFFFFF;
  }

  .contact-booking-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 24px;
    align-items: stretch;
  }

  /* Left Combined Card: Contact Details + Map */
  .contact-combined-card {
    background: #FFFFFF;
    border: 1px solid #EAEFF2;
    border-radius: 14px;
    padding: 22px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    align-items: stretch;
  }

  .contact-details-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .contact-col-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #0A192F;
    margin-bottom: 18px;
  }

  .contact-items-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 18px;
  }

  .contact-entry {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .contact-icon-bubble {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
    border-radius: 50%;
    border: 1.2px solid #D2E3E1;
    background: #F8FBFB;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .contact-text {
    font-size: 0.82rem;
    font-weight: 600;
    color: #0A192F;
  }

  .hours-text {
    font-size: 0.78rem;
    font-weight: 600;
    color: #0A192F;
    line-height: 1.35;
  }

  .btn-whatsapp-outline {
    display: block;
    width: 100%;
    border: 1.5px solid #005B60;
    background: #FFFFFF;
    color: #005B60;
    font-weight: 700;
    font-size: 0.76rem;
    letter-spacing: 0.04em;
    border-radius: 6px;
    padding: 11px 16px;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-fast);

    &:hover {
      background: #005B60;
      color: #FFFFFF;
    }
  }

  /* Map Column */
  .contact-map-col {
    height: 100%;
    min-height: 220px;
  }

  .map-card-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    min-height: 220px;
    border: 1px solid #EAEFF2;
  }

  .map-iframe {
    width: 100%;
    height: 100%;
    min-height: 220px;
    border: 0;
    display: block;
  }

  .map-pin-pill {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFFFFF;
    padding: 8px 14px;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    z-index: 5;
    pointer-events: none;
    border: 1px solid #EAEFF2;
    transition: transform var(--transition-fast);
  }

  .pin-gold-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C5A059;
  }

  .pin-info {
    display: flex;
    flex-direction: column;
    text-align: left;
  }

  .pin-title {
    font-size: 0.82rem;
    font-weight: 800;
    color: #0A192F;
    line-height: 1.2;
  }

  .pin-subtitle {
    font-size: 0.7rem;
    color: #64748B;
    line-height: 1.2;
  }

  /* Right Card: Consultation Booking Form */
  .contact-form-card {
    background: #FFFFFF;
    border: 1px solid #EAEFF2;
    border-radius: 14px;
    padding: 22px 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .consultation-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .form-group {
    position: relative;
  }

  .form-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    font-size: 0.78rem;
    font-family: inherit;
    color: #0A192F;
    background: #FFFFFF;
    transition: border-color var(--transition-fast);

    &:focus {
      outline: none;
      border-color: #005B60;
    }
  }

  .form-select {
    cursor: pointer;
    color: #475569;
  }

  .btn-teal-submit {
    background: #005B60;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    border-radius: 6px;
    border: none;
    padding: 12px 20px;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    transition: all var(--transition-fast);
    margin-top: 4px;

    &:hover {
      background: #02484C;
    }
  }

}
