﻿:root {
      --primary: #D41418;
      --dark: #083C7C;
      --accent: #000000;
      --light: #ffffff;
      --surface: #ffffff;
      --text: #111111;
      --muted: #2f2f2f;
      --border: #d6d6d6;
      --max: 1200px;
      --shadow-soft: 0 16px 36px rgba(8, 60, 124, 0.14);
      --shadow-strong: 0 24px 46px rgba(0, 0, 0, 0.28);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Manrope", sans-serif;
      color: var(--text);
      background: linear-gradient(180deg, #ffffff 0%, #f6f6f6 100%);
      line-height: 1.55;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .container {
      width: min(var(--max), calc(100% - 2rem));
      margin: 0 auto;
    }

    .utility-bar {
      background: #ffffff;
      border-bottom: 1px solid var(--border);
      position: relative;
      top: 0;
      z-index: 80;
    }

    .utility-wrap {
      min-height: 108px;
      display: grid;
      grid-template-columns: auto 1fr 1fr auto;
      align-items: center;
      gap: 1.2rem;
      padding: 0;
    }

    .brand {
      display: inline-flex;
      align-items: center;
    }

    .brand-logo {
      width: 390px;
      height: 88px;
      object-fit: contain;
      object-position: left center;
      flex: 0 0 auto;
    }

    .utility-info {
      display: flex;
      justify-content: center;
      gap: 0.2rem;
      flex-direction: column;
      min-width: 0;
    }

    .utility-info .info-title {
      font-family: "Outfit", sans-serif;
      font-size: 0.95rem;
      color: var(--dark);
      font-weight: 700;
      line-height: 1;
    }

    .utility-info a {
      color: var(--dark);
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      line-height: 1.15;
      overflow-wrap: anywhere;
    }

    .phone-links {
      display: flex;
      align-items: center;
      gap: 0.25rem;
      flex-wrap: wrap;
    }

    .phone-links span {
      color: var(--dark);
      font-weight: 600;
      font-size: 0.9rem;
      line-height: 1.15;
    }

    .top-appointment {
      align-self: center;
      background: linear-gradient(145deg, #ef1b20 0%, #c00f14 100%);
      color: #fff;
      min-width: 228px;
      min-height: 66px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      font-family: "Outfit", sans-serif;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      font-weight: 800;
      font-size: 0.9rem;
      padding: 0 1.2rem;
      border-radius: 20px;
      border: 1.5px solid #083C7C;
      box-shadow: 0 0 0 3px #083C7C, 0 14px 28px rgba(212, 20, 24, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.28);
      position: relative;
      overflow: hidden;
      white-space: nowrap;
      transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
    }

    .top-appointment::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.06) 38%, rgba(255, 255, 255, 0) 72%);
      pointer-events: none;
    }

    .top-appointment::after {
      content: "";
      position: absolute;
      left: 10px;
      top: 14px;
      bottom: 14px;
      width: 2px;
      background: rgba(255, 255, 255, 0.42);
      border-radius: 999px;
      pointer-events: none;
    }

    .top-appointment:hover {
      transform: translateY(-2px);
      filter: saturate(1.06);
      box-shadow: 0 0 0 3px #083C7C, 0 18px 34px rgba(212, 20, 24, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.34);
    }

    .site-header {
      position: relative;
      top: 0;
      z-index: 140;
    }

    .nav-shell {
      width: min(var(--max), 100%);
      margin: 0 auto;
      background: linear-gradient(115deg, #062d60 0%, #083C7C 58%, #0a4b99 100%);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 18px;
      box-shadow: 0 18px 34px rgba(8, 60, 124, 0.3);
      position: relative;
      overflow: visible;
      margin-top: -2px;
    }

    .nav-shell::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
    }

    .nav-wrap {
      min-height: 70px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.5rem 1rem;
    }

    .menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, 0.68);
      background: rgba(255, 255, 255, 0.14);
      color: #fff;
      font-size: 1.05rem;
      cursor: pointer;
      flex: 0 0 auto;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 0.44rem;
      flex-wrap: wrap;
      justify-content: flex-start;
    }

    .main-nav a,
    .main-nav .nav-dropdown-toggle {
      padding: 0.62rem 0.94rem;
      border-radius: 999px;
      font-size: 0.94rem;
      font-weight: 700;
      color: #ffffff;
      transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
      position: relative;
      letter-spacing: 0.01em;
      border: none;
      background: transparent;
      cursor: pointer;
      font-family: inherit;
      line-height: 1.2;
    }

    .main-nav a:hover,
    .main-nav .nav-dropdown-toggle:hover {
      background: var(--primary);
      box-shadow: 0 10px 22px rgba(212, 20, 24, 0.3);
      transform: translateY(-1px);
      color: #fff;
    }

    .main-nav a.active,
    .main-nav .nav-dropdown-toggle.active {
      background: var(--primary);
      color: #fff;
      box-shadow: 0 10px 22px rgba(212, 20, 24, 0.36);
    }

    .main-nav .nav-dropdown {
      position: relative;
    }

    .main-nav .nav-dropdown-toggle {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
    }

    .main-nav .nav-dropdown-toggle i {
      font-size: 0.8rem;
      transition: transform 0.22s ease;
    }

    .nav-dropdown-menu {
      position: absolute;
      left: 0;
      top: calc(100% + 0.4rem);
      min-width: 280px;
      padding: 0.45rem;
      border-radius: 12px;
      background: #ffffff;
      border: 1px solid rgba(8, 60, 124, 0.14);
      box-shadow: 0 16px 32px rgba(8, 60, 124, 0.24);
      display: none;
      z-index: 999;
    }

    .nav-dropdown-menu a {
      display: block;
      color: var(--dark);
      font-size: 0.88rem;
      font-weight: 700;
      padding: 0.56rem 0.72rem;
      border-radius: 9px;
      line-height: 1.3;
    }

    .nav-dropdown-menu a:hover {
      background: var(--primary);
      color: #fff;
      box-shadow: none;
      transform: none;
    }

    .main-nav .nav-dropdown.open .nav-dropdown-menu {
      display: block;
    }

    .main-nav .nav-dropdown.open .nav-dropdown-toggle i {
      transform: rotate(180deg);
    }

    @media (hover: hover) and (pointer: fine) {
      .main-nav .nav-dropdown:hover .nav-dropdown-menu {
        display: block;
      }

      .main-nav .nav-dropdown:hover .nav-dropdown-toggle i {
        transform: rotate(180deg);
      }
    }

    .nav-social {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
    }

    .nav-social a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      background: rgba(255, 255, 255, 0.16);
      border: 1px solid rgba(255, 255, 255, 0.2);
      font-size: 0.9rem;
      transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    }

    .nav-social a:hover {
      transform: translateY(-2px);
      background: var(--primary);
      border-color: rgba(255, 255, 255, 0.3);
    }

    .hero {
      margin-top: -14px;
      padding: 0 0 2.2rem;
    }

    .hero-full {
      width: 100%;
    }

    .hero-grid {
      display: block;
    }

    .hero-slider {
      position: relative;
      border-radius: 0;
      overflow: hidden;
      min-height: calc(100vh - 178px);
      max-height: 760px;
      box-shadow: var(--shadow-strong);
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.55s ease;
    }

    .hero-slide.active {
      opacity: 1;
      pointer-events: auto;
    }

    .hero-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(105deg, rgba(0, 0, 0, 0.75) 0%, rgba(8, 60, 124, 0.72) 52%, rgba(212, 20, 24, 0.34) 100%);
      display: flex;
      align-items: center;
      padding: 1.8rem 2.4rem 2.6rem;
    }

    .hero-copy {
      max-width: min(760px, 58vw);
      color: #fff;
    }

    .hero-copy .kicker {
      font-size: 0.78rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--primary);
      font-weight: 700;
      margin-bottom: 0.6rem;
    }

    .hero-copy h2 {
      font-family: "Outfit", sans-serif;
      font-size: clamp(1.85rem, 3.25vw, 3rem);
      line-height: 1.1;
      margin-bottom: 0.7rem;
      text-wrap: balance;
    }

    .hero-copy h2 .hero-line-nowrap {
      white-space: nowrap;
    }

    .hero-copy p {
      color: rgba(235, 248, 255, 0.95);
      max-width: 54ch;
      margin-bottom: 0.95rem;
    }

    .hero-actions {
      display: flex;
      gap: 0.6rem;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.72rem 1.1rem;
      border-radius: 12px;
      font-weight: 700;
      border: 1px solid transparent;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: linear-gradient(125deg, var(--primary), var(--dark));
      color: #fff;
      box-shadow: 0 10px 20px rgba(212, 20, 24, 0.28);
    }

    .hero-actions .btn-primary {
      background: var(--primary);
      border-color: var(--primary);
      color: #fff;
      box-shadow: 0 10px 22px rgba(212, 20, 24, 0.36);
    }

    .btn-ghost {
      color: #fff;
      border-color: rgba(255, 255, 255, 0.4);
      background: rgba(255, 255, 255, 0.12);
    }

    .hero-dots {
      position: absolute;
      left: 2rem;
      bottom: 1.15rem;
      display: flex;
      gap: 0.48rem;
      z-index: 3;
    }

    .hero-dot {
      width: 11px;
      height: 11px;
      border-radius: 999px;
      border: 0;
      background: rgba(255, 255, 255, 0.48);
      cursor: pointer;
      transition: width 0.2s ease, background 0.2s ease;
    }

    .hero-dot.active {
      width: 34px;
      background: var(--primary);
    }

    .hero-panel {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 22px;
      padding: 1.2rem;
      box-shadow: var(--shadow-soft);
      display: grid;
      gap: 0.9rem;
    }

    .panel-card {
      border-radius: 14px;
      border: 1px solid var(--border);
      background: #ffffff;
      padding: 1rem;
    }

    .panel-card h3 {
      font-family: "Outfit", sans-serif;
      font-size: 1.05rem;
      color: var(--dark);
      margin-bottom: 0.28rem;
    }

    .panel-card p {
      font-size: 0.9rem;
      color: var(--muted);
    }

    .hours-list {
      list-style: none;
      display: grid;
      gap: 0.45rem;
      margin-top: 0.55rem;
    }

    .hours-list li {
      display: flex;
      justify-content: space-between;
      font-size: 0.88rem;
      color: #1f1f1f;
      font-weight: 600;
      gap: 0.8rem;
    }

    .stats {
      margin-top: 1.3rem;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.9rem;
    }

    .stat-item {
      background: linear-gradient(135deg, var(--dark) 0%, var(--dark) 50%, var(--primary) 100%);
      color: #fff;
      border-radius: 16px;
      padding: 1rem 0.95rem;
      box-shadow: var(--shadow-soft);
    }

    .stat-item h3 {
      font-family: "Outfit", sans-serif;
      font-size: 1.65rem;
      line-height: 1;
      margin-bottom: 0.28rem;
    }

    .stat-item p {
      font-size: 0.9rem;
      color: rgba(243, 255, 255, 0.92);
      font-weight: 600;
    }

    section:not(.hero) {
      padding: 4rem 0;
    }

    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      border-radius: 999px;
      background: rgba(212, 20, 24, 0.12);
      color: var(--primary);
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-weight: 800;
      padding: 0.4rem 0.7rem;
      margin-bottom: 0.75rem;
    }

    .section-head {
      margin-bottom: 1.5rem;
      max-width: 660px;
    }

    .section-head h2 {
      font-family: "Outfit", sans-serif;
      color: var(--dark);
      font-size: clamp(1.7rem, 3.2vw, 2.55rem);
      line-height: 1.1;
      margin-bottom: 0.55rem;
    }

    .section-head p {
      color: var(--muted);
    }

    .about-page-hero {
      position: relative;
      background: #0d2b55 url("../slider/banner2.jpeg") center / cover no-repeat;
      min-height: 470px;
      display: grid;
      align-items: end;
      margin-top: 0.2rem;
    }

    .about-page-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(7, 28, 56, 0.64);
    }

    .about-page-hero-wrap {
      position: relative;
      z-index: 1;
      min-height: 470px;
      display: flex;
      align-items: center;
      padding: 1.4rem 0 1.8rem;
    }

    .about-page-copy {
      max-width: 760px;
      color: #ffffff;
    }

    .about-page-copy .kicker {
      color: #ff4b4f;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-size: 0.72rem;
      font-weight: 800;
      margin-bottom: 0.4rem;
    }

    .about-page-copy h1 {
      font-family: "Outfit", sans-serif;
      font-size: clamp(1.85rem, 3.8vw, 3.1rem);
      line-height: 1.1;
      margin-bottom: 0.7rem;
      text-wrap: balance;
    }

    .about-page-copy p {
      color: rgba(238, 248, 255, 0.95);
      max-width: 62ch;
      margin-bottom: 0.95rem;
      font-size: 1rem;
    }

    .about-page-main {
      background: #ffffff;
    }

    .about-page .about-content {
      border-color: #d6dfec;
      padding: 1.5rem;
    }

    .about-page .about-content p {
      font-size: 0.96rem;
      line-height: 1.68;
      color: #24364d;
    }

    .about-page .about-content .about-lead {
      font-size: 1.02rem;
      color: #1b2e48;
    }

    .about-page .about-buttons .btn {
      min-width: 170px;
      justify-content: center;
    }

    .about-page .about-highlights {
      border-top: 4px solid #083C7C;
    }

    .about-page .about-cards {
      gap: 0.85rem;
    }

    .about-page .about-card {
      background: #083C7C;
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-top: 3px solid #D41418;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .about-page .about-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 28px rgba(8, 60, 124, 0.24);
    }

    .about-trust-grid {
      margin-top: 1rem;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.85rem;
    }

    .about-trust-item {
      background: #ffffff;
      border: 1px solid #d6dfec;
      border-radius: 14px;
      padding: 0.85rem 0.82rem;
      display: flex;
      align-items: flex-start;
      gap: 0.62rem;
      box-shadow: 0 10px 20px rgba(8, 60, 124, 0.08);
    }

    .about-trust-item i {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #083C7C;
      border: 1px solid #D41418;
      color: #ffffff;
      flex: 0 0 auto;
      font-size: 0.95rem;
    }

    .about-trust-item h4 {
      font-family: "Outfit", sans-serif;
      color: #083C7C;
      font-size: 1rem;
      line-height: 1.2;
      margin-bottom: 0.28rem;
    }

    .about-trust-item p {
      font-size: 0.88rem;
      line-height: 1.5;
      color: #2a3d56;
    }

    .about-breadcrumb {
      position: relative;
      background: #083C7C url("../slider/banner1.jpeg") center / cover no-repeat;
      border-top: 1px solid #062f62;
      border-bottom: 1px solid #062f62;
      min-height: 230px;
      display: flex;
      align-items: center;
      padding: 1.25rem 0;
      overflow: hidden;
    }

    .about-breadcrumb::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(5, 25, 52, 0.74);
    }

    .about-breadcrumb-wrap {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.8rem;
      flex-wrap: wrap;
    }

    .about-breadcrumb-title {
      max-width: 760px;
    }

    .about-breadcrumb h1 {
      font-family: "Outfit", sans-serif;
      color: #ffffff;
      font-size: clamp(1.25rem, 2.5vw, 1.8rem);
      line-height: 1.1;
      margin-bottom: 0.45rem;
    }

    .about-breadcrumb-title p {
      color: rgba(236, 246, 255, 0.92);
      font-size: 0.98rem;
      line-height: 1.52;
      max-width: 62ch;
    }

    .about-breadcrumb nav {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: rgba(240, 248, 255, 0.9);
      font-size: 0.9rem;
      font-weight: 600;
    }

    .about-breadcrumb nav a {
      color: #ffffff;
    }

    .about-breadcrumb nav a:hover {
      color: #ffd7d8;
    }

    .about-breadcrumb nav i {
      font-size: 0.7rem;
      color: rgba(255, 255, 255, 0.75);
      margin-top: 1px;
    }

    .about-page-values {
      background: #f6f9fd;
      border-top: 1px solid #d9e1ee;
      border-bottom: 1px solid #d9e1ee;
    }

    .about-page-values .section-head {
      text-align: center;
      margin: 0 auto 1.3rem;
      max-width: 780px;
    }

    .about-page-values .section-tag {
      margin-left: auto;
      margin-right: auto;
    }

    .about-page-value-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.1rem;
    }

    .about-page-value-card {
      background: #ffffff;
      border: 1px solid #d5dfec;
      border-radius: 16px;
      padding: 1.35rem 1.2rem 1.25rem;
      box-shadow: 0 12px 24px rgba(8, 60, 124, 0.1);
      min-height: 290px;
    }

    .about-page-value-head {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 0.72rem;
    }

    .about-page-value-icon {
      width: 64px;
      height: 64px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #083C7C;
      color: #ffffff;
      border: 2px solid #D41418;
      font-size: 1.55rem;
      flex: 0 0 auto;
    }

    .about-page-value-card h3 {
      font-family: "Outfit", sans-serif;
      color: #083C7C;
      font-size: 1.68rem;
      line-height: 1.05;
    }

    .about-page-value-card p {
      color: #2b3f58;
      font-size: 0.95rem;
      line-height: 1.65;
    }

    .about-page .why-choose {
      background: #ffffff;
    }

    .about-page .why-card {
      border-top: 3px solid #083C7C;
      min-height: 146px;
    }

    .treatment-hero {
      background: linear-gradient(180deg, #f6f9fe 0%, #ffffff 100%);
      border-top: 1px solid #dbe5f2;
      border-bottom: 1px solid #dbe5f2;
      position: relative;
      overflow: hidden;
    }

    .treatment-hero::before {
      content: "";
      position: absolute;
      width: 380px;
      height: 380px;
      right: -120px;
      top: -140px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(212, 20, 24, 0.16) 0%, rgba(212, 20, 24, 0) 70%);
      pointer-events: none;
      animation: treatmentFloat 9s ease-in-out infinite;
    }

    .treatment-hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
      gap: 1.2rem;
      align-items: center;
    }

    .treatment-hero-content h2 {
      margin-top: 0.58rem;
      margin-bottom: 0.68rem;
      color: #083C7C;
      font-family: "Outfit", sans-serif;
      font-size: clamp(1.8rem, 3vw, 2.45rem);
      line-height: 1.1;
      animation: treatmentFadeUp 0.55s ease both;
    }

    .treatment-points {
      display: grid;
      gap: 0.45rem;
      margin-top: 0.85rem;
      list-style: none;
      padding: 0;
      animation: treatmentFadeUp 0.7s ease both;
    }

    .treatment-points li {
      color: #1f3854;
      font-size: 0.97rem;
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      line-height: 1.5;
    }

    .treatment-points i {
      color: #D41418;
      margin-top: 0.16rem;
      flex: 0 0 auto;
    }

    .treatment-meta {
      margin-top: 1rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .treatment-meta span {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: #ffffff;
      border: 1px solid #d3deee;
      border-radius: 999px;
      padding: 0.42rem 0.78rem;
      color: #083C7C;
      font-weight: 700;
      font-size: 0.84rem;
    }

    .treatment-meta i {
      color: #D41418;
    }

    .treatment-hero-content .about-buttons {
      margin-top: 1.12rem;
    }

    .treatment-hero-image {
      position: relative;
      border-radius: 22px;
      overflow: hidden;
      border: 1px solid #cfddef;
      box-shadow: 0 18px 34px rgba(8, 60, 124, 0.18);
      min-height: 320px;
      animation: treatmentFadeUp 0.65s ease both;
    }

    .treatment-hero-image img,
    .treatment-hero-image video {
      width: 100%;
      height: 100%;
      min-height: 320px;
      object-fit: cover;
      transition: transform 0.45s ease;
    }

    .treatment-hero-image video {
      display: block;
      height: auto;
      min-height: 0;
      object-fit: contain;
      background: #000000;
    }

    .treatment-hero-image:hover img,
    .treatment-hero-image:hover video {
      transform: scale(1.04);
    }

    .treatment-image-badge {
      position: absolute;
      left: 0.9rem;
      right: 0.9rem;
      bottom: 0.9rem;
      background: rgba(8, 60, 124, 0.92);
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 14px;
      padding: 0.75rem 0.9rem;
      color: #ffffff;
      display: grid;
      gap: 0.18rem;
    }

    .treatment-image-badge strong {
      font-family: "Outfit", sans-serif;
      font-size: 1.05rem;
      line-height: 1.1;
    }

    .treatment-image-badge span {
      color: #d8e6f8;
      font-size: 0.86rem;
    }

    .treatment-info-block {
      background: #ffffff;
      border-bottom: 1px solid #e2e9f4;
    }

    .treatment-info-block .section-head,
    .treatment-knowledge .section-head,
    .treatment-process .section-head,
    .treatment-benefits .section-head {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }

    .treatment-info-block .section-head .section-tag,
    .treatment-knowledge .section-head .section-tag,
    .treatment-process .section-head .section-tag,
    .treatment-benefits .section-head .section-tag {
      margin-left: auto;
      margin-right: auto;
    }

    .treatment-process .section-head {
      max-width: 100%;
    }

    .treatment-process .section-head h2 {
      font-size: clamp(1.4rem, 2.35vw, 1.95rem);
      white-space: nowrap;
    }

    .treatment-info-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.95rem;
    }

    .treatment-info-card {
      background: #ffffff;
      border: 1px solid #d6e1ef;
      border-radius: 16px;
      padding: 1rem 0.95rem;
      box-shadow: 0 12px 24px rgba(8, 60, 124, 0.1);
      transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    }

    .treatment-info-card:hover {
      transform: translateY(-4px);
      border-color: #b8cbe5;
      box-shadow: 0 16px 28px rgba(8, 60, 124, 0.16);
    }

    .treatment-info-card h3 {
      color: #083C7C;
      font-family: "Outfit", sans-serif;
      font-size: 1.18rem;
      line-height: 1.2;
      margin-bottom: 0.56rem;
      display: flex;
      gap: 0.5rem;
      align-items: center;
    }

    .treatment-info-card h3 i {
      color: #D41418;
      font-size: 1rem;
    }

    .treatment-info-card ul {
      list-style: none;
      display: grid;
      gap: 0.44rem;
      margin: 0;
      padding: 0;
    }

    .treatment-info-card li {
      color: #27415c;
      font-size: 0.93rem;
      line-height: 1.5;
      position: relative;
      padding-left: 0.95rem;
    }

    .treatment-info-card li::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #D41418;
      position: absolute;
      left: 0.06rem;
      top: 0.46rem;
    }

    .treatment-process {
      background: #f4f8ff;
      border-top: 1px solid #dfe9f7;
      border-bottom: 1px solid #dfe9f7;
    }

    .vein-comparison {
      background: #f7fbff;
      border-top: 1px solid #dbe6f3;
      border-bottom: 1px solid #dbe6f3;
    }

    .vein-comparison .section-head {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
      max-width: 860px;
    }

    .vein-comparison .section-head .section-tag {
      margin-left: auto;
      margin-right: auto;
    }

    .vein-comparison .section-head h2 .comparison-vs {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin: 0 0.24rem;
      padding: 0.08rem 0.58rem;
      border-radius: 999px;
      background: linear-gradient(135deg, #ff4a4f 0%, #d41418 100%);
      border: 1px solid #b90f13;
      color: #ffffff;
      font-family: "Outfit", sans-serif;
      font-size: 0.8em;
      font-weight: 800;
      letter-spacing: 0.04em;
      line-height: 1;
      text-transform: uppercase;
      box-shadow: 0 8px 16px rgba(212, 20, 24, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.28);
      transform: translateY(-2px);
    }

    .vein-comparison-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.95rem;
    }

    .vein-comparison-card {
      background: #ffffff;
      border: 1px solid #d8e3f1;
      border-radius: 16px;
      padding: 1rem 0.95rem;
      box-shadow: 0 12px 24px rgba(8, 60, 124, 0.1);
      transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    }

    .vein-comparison-card:hover {
      transform: translateY(-3px);
      border-color: #c2d5eb;
      box-shadow: 0 16px 28px rgba(8, 60, 124, 0.16);
    }

    .vein-comparison-image {
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid #d5e1ee;
      margin-bottom: 0.72rem;
      box-shadow: 0 10px 18px rgba(8, 60, 124, 0.1);
    }

    .vein-comparison-image img {
      width: 100%;
      height: 245px;
      object-fit: cover;
      display: block;
      transition: transform 0.28s ease;
    }

    .vein-comparison-card:hover .vein-comparison-image img {
      transform: scale(1.02);
    }

    .vein-comparison-card h3 {
      font-family: "Outfit", sans-serif;
      color: #083C7C;
      font-size: 1.2rem;
      line-height: 1.2;
      margin-bottom: 0.48rem;
    }

    .vein-comparison-card p {
      color: #2f4761;
      font-size: 0.93rem;
      line-height: 1.62;
      font-weight: 400;
      margin: 0 0 0.7rem;
    }

    .vein-comparison-card ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 0.38rem;
    }

    .vein-comparison-card li {
      position: relative;
      color: #2a425b;
      font-size: 0.92rem;
      line-height: 1.5;
      font-weight: 400;
      padding-left: 0.88rem;
    }

    .vein-comparison-card li::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #D41418;
      position: absolute;
      left: 0.05rem;
      top: 0.45rem;
    }

    .treatment-knowledge {
      background: #ffffff;
      border-top: 1px solid #dbe6f3;
      border-bottom: 1px solid #dbe6f3;
    }

    .treatment-knowledge .section-head h2 {
      font-size: clamp(1.55rem, 2.65vw, 2.2rem);
      max-width: 34ch;
      margin-left: auto;
      margin-right: auto;
      text-wrap: balance;
    }

    .treatment-knowledge .section-head {
      max-width: 100%;
    }

    .treatment-knowledge .section-head p {
      font-size: 0.92rem;
      white-space: nowrap;
    }

    .treatment-knowledge-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.9rem;
    }

    .treatment-knowledge-card {
      background: #ffffff;
      border: 1px solid #d8e3f1;
      border-radius: 16px;
      padding: 1rem 0.95rem;
      box-shadow: 0 12px 24px rgba(8, 60, 124, 0.1);
      transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
    }

    .treatment-knowledge-card:hover {
      transform: translateY(-3px);
      border-color: #c2d5eb;
      box-shadow: 0 16px 28px rgba(8, 60, 124, 0.16);
    }

    .knowledge-head {
      margin-bottom: 0.55rem;
    }

    .knowledge-no {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 86px;
      padding: 0.22rem 0.6rem;
      border-radius: 999px;
      background: rgba(8, 60, 124, 0.12);
      color: #083C7C;
      font-weight: 800;
      font-size: 0.73rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 0.42rem;
    }

    .treatment-knowledge-card h3 {
      font-family: "Outfit", sans-serif;
      color: #083C7C;
      font-size: 1.22rem;
      line-height: 1.2;
      margin-bottom: 0.5rem;
    }

    .knowledge-image {
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid #d5e1ee;
      margin-bottom: 0.72rem;
      box-shadow: 0 10px 18px rgba(8, 60, 124, 0.1);
    }

    .knowledge-image img {
      width: 100%;
      height: 230px;
      object-fit: cover;
      display: block;
      transition: transform 0.28s ease;
    }

    .knowledge-image img.knowledge-image-fit-contain {
      object-fit: contain;
      background: #f8fbff;
    }

    .treatment-knowledge-card:hover .knowledge-image img {
      transform: scale(1.02);
    }

    .treatment-knowledge-card h4 {
      font-family: "Outfit", sans-serif;
      color: #D41418;
      font-size: 0.98rem;
      line-height: 1.2;
      margin: 0.62rem 0 0.38rem;
    }

    .treatment-knowledge-card p {
      color: #2b445e;
      font-size: 0.93rem;
      line-height: 1.62;
      margin: 0;
    }

    .treatment-knowledge-card ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 0.38rem;
    }

    .treatment-knowledge-card li {
      position: relative;
      color: #2a425b;
      font-size: 0.9rem;
      line-height: 1.5;
      padding-left: 0.88rem;
    }

    .treatment-knowledge-card li::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #D41418;
      position: absolute;
      left: 0.05rem;
      top: 0.45rem;
    }

    .treatment-step-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.8rem;
    }

    .treatment-step-card {
      background: #ffffff;
      border: 1px solid #d6e2f1;
      border-radius: 16px;
      padding: 1rem 0.9rem;
      box-shadow: 0 12px 22px rgba(8, 60, 124, 0.08);
      transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    }

    .treatment-step-card:hover {
      transform: translateY(-4px);
      border-color: #b8cbe5;
      box-shadow: 0 16px 28px rgba(8, 60, 124, 0.15);
    }

    .step-no {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 46px;
      height: 34px;
      border-radius: 999px;
      background: #083C7C;
      color: #ffffff;
      font-family: "Outfit", sans-serif;
      font-weight: 800;
      font-size: 0.92rem;
      margin-bottom: 0.55rem;
    }

    .treatment-step-card h3 {
      font-family: "Outfit", sans-serif;
      color: #083C7C;
      font-size: 1.12rem;
      margin-bottom: 0.42rem;
      line-height: 1.2;
    }

    .treatment-step-card p {
      color: #314b67;
      font-size: 0.92rem;
      line-height: 1.6;
    }

    .treatment-benefits {
      background: #ffffff;
    }

    .treatment-benefit-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.75rem;
    }

    .treatment-benefit-card {
      background: #083C7C;
      border: 1px solid #0b4c9b;
      border-radius: 14px;
      padding: 0.85rem 0.78rem;
      color: #ffffff;
      display: flex;
      align-items: flex-start;
      gap: 0.52rem;
      box-shadow: 0 14px 24px rgba(8, 60, 124, 0.22);
      font-size: 0.91rem;
      line-height: 1.45;
      font-weight: 600;
      transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
    }

    .treatment-benefit-card:hover {
      transform: translateY(-3px);
      border-color: #3f71ad;
      background: #0a4a96;
      box-shadow: 0 18px 30px rgba(8, 60, 124, 0.28);
    }

    .treatment-benefit-card i {
      color: #f7c24d;
      margin-top: 0.16rem;
      flex: 0 0 auto;
    }

    .treatment-faq {
      border-top: 1px solid #dbe5f2;
    }

    .treatment-faq .faq-item {
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .treatment-faq .faq-item:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 26px rgba(8, 60, 124, 0.12);
    }

    section.treatment-cta-strip {
      background: #083C7C;
      border-top: 1px solid #0a3a76;
      border-bottom: 1px solid #0a3a76;
      position: relative;
      overflow: hidden;
      isolation: isolate;
      padding: 0.35rem 0;
    }

    .treatment-cta-strip::before {
      content: "";
      position: absolute;
      width: 300px;
      height: 300px;
      left: -150px;
      bottom: -170px;
      border-radius: 50%;
      background: rgba(164, 89, 180, 0.34);
      z-index: 0;
      pointer-events: none;
    }

    .treatment-cta-strip::after {
      content: "";
      position: absolute;
      width: 300px;
      height: 300px;
      right: -120px;
      top: -150px;
      border-radius: 50%;
      background: rgba(65, 116, 179, 0.46);
      z-index: 0;
      pointer-events: none;
    }

    .treatment-cta-wrap {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
      gap: 1rem;
      align-items: center;
      position: relative;
      z-index: 1;
      min-height: 138px;
      padding-top: 0.25rem;
      padding-bottom: 0.25rem;
    }

    .treatment-cta-wrap h2 {
      color: #ffffff;
      font-family: "Outfit", sans-serif;
      font-size: clamp(1.95rem, 3vw, 3rem);
      line-height: 1.08;
      margin-bottom: 0.65rem;
    }

    .treatment-cta-wrap p {
      color: #dfe9f8;
      font-size: clamp(1rem, 1.05vw, 1.2rem);
      line-height: 1.55;
      max-width: 680px;
    }

    .treatment-cta-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 0.55rem;
    }

    .treatment-call-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.55rem;
      min-width: 230px;
      min-height: 66px;
      padding: 0.8rem 1.5rem;
      border-radius: 14px;
      background: #D41418;
      border: 1px solid #ffffff;
      color: #ffffff;
      font-family: "Outfit", sans-serif;
      font-size: 1.05rem;
      font-weight: 800;
      box-shadow: 0 14px 24px rgba(10, 26, 56, 0.28);
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .treatment-call-btn:hover {
      transform: translateY(-2px);
      background: #b90f13;
      box-shadow: 0 18px 30px rgba(10, 26, 56, 0.34);
    }

    @keyframes treatmentFadeUp {
      from {
        opacity: 0;
        transform: translateY(12px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes treatmentFloat {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(12px);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .treatment-hero::before,
      .treatment-hero-content h2,
      .treatment-points,
      .treatment-hero-image {
        animation: none;
      }
    }

    @media (max-width: 980px) {
      .treatment-hero-grid {
        grid-template-columns: 1fr;
      }

      .treatment-info-grid {
        grid-template-columns: 1fr 1fr;
      }

      .treatment-step-grid {
        grid-template-columns: 1fr 1fr;
      }

      .treatment-knowledge-grid {
        grid-template-columns: 1fr;
      }

      .vein-comparison-grid {
        grid-template-columns: 1fr;
      }

      .vein-comparison-image img {
        height: 250px;
      }

      .knowledge-image img {
        height: 250px;
      }

      .treatment-benefit-grid {
        grid-template-columns: 1fr 1fr;
      }

      .treatment-cta-wrap {
        grid-template-columns: 1fr;
      }

      .treatment-cta-actions {
        justify-content: flex-start;
      }

      .treatment-call-btn {
        min-width: 210px;
      }
    }

    @media (max-width: 640px) {
      .treatment-hero-content h2 {
        font-size: clamp(1.5rem, 6vw, 1.95rem);
      }

      .treatment-knowledge .section-head p {
        white-space: normal;
      }

      .treatment-process .section-head h2 {
        white-space: normal;
      }

      .treatment-info-grid,
      .treatment-step-grid,
      .treatment-benefit-grid {
        grid-template-columns: 1fr;
      }

      .knowledge-image img {
        height: auto;
        max-height: 360px;
        object-fit: contain;
        background: #f8fbff;
      }

      .vein-comparison-image img {
        height: auto;
        max-height: 360px;
        object-fit: contain;
        background: #f8fbff;
      }

      .treatment-hero-image,
      .treatment-hero-image img,
      .treatment-hero-image video {
        min-height: 230px;
      }

      .treatment-hero-image video {
        min-height: 0;
      }

      .treatment-cta-wrap {
        min-height: 0;
      }

      .treatment-cta-wrap h2 {
        font-size: clamp(1.45rem, 6vw, 1.9rem);
      }

      .treatment-cta-wrap p {
        font-size: 0.95rem;
      }

      .treatment-call-btn {
        width: 100%;
        min-height: 56px;
        font-size: 1.02rem;
        border-radius: 12px;
      }
    }

    .gallery-page .gallery-breadcrumb {
      background: #083C7C url("../slider/banner2.jpeg") center / cover no-repeat;
    }

    .contact-page .contact-breadcrumb {
      background: #083C7C url("../slider/banner1.jpeg") center / cover no-repeat;
    }

    .contact-page .about-breadcrumb::before {
      background: rgba(5, 25, 52, 0.78);
    }

    .contact-quick-section {
      background: radial-gradient(circle at 12% 10%, #dfe8f3 0%, #f4f7fb 40%, #f6f1f3 100%);
      border-top: 1px solid #d9e1ee;
      border-bottom: 1px solid #d9e1ee;
    }

    .contact-quick-head {
      text-align: center;
      margin-bottom: 1.2rem;
    }

    .contact-quick-head h2 {
      font-family: "Outfit", sans-serif;
      color: #083C7C;
      font-size: clamp(2rem, 4vw, 3.3rem);
      line-height: 1.05;
      letter-spacing: 0.01em;
    }

    .contact-quick-head h2 span {
      color: #D41418;
    }

    .contact-quick-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
    }

    .contact-quick-card {
      background: #ffffff;
      border: 1px solid #dbe4f0;
      border-radius: 20px;
      padding: 1.32rem 1.2rem;
      box-shadow: 0 14px 28px rgba(8, 60, 124, 0.12);
      display: flex;
      align-items: flex-start;
      gap: 0.95rem;
    }

    .contact-quick-icon {
      width: 54px;
      height: 54px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #083C7C;
      color: #ffffff;
      border: 2px solid #2f69b7;
      font-size: 1.18rem;
      flex: 0 0 auto;
      box-shadow: 0 14px 24px rgba(8, 60, 124, 0.24);
    }

    .contact-quick-card h3 {
      font-family: "Outfit", sans-serif;
      color: #083C7C;
      font-size: clamp(1.35rem, 2vw, 1.7rem);
      margin-bottom: 0.35rem;
      line-height: 1.2;
    }

    .contact-quick-card p,
    .contact-quick-card a {
      color: #2a3f58;
      font-size: 1rem;
      line-height: 1.5;
    }

    .contact-quick-card a:hover {
      color: #D41418;
    }

    .contact-quick-note {
      text-align: center;
      margin-top: 1rem;
      color: #3f5878;
      font-size: 1.02rem;
    }

    .contact-quick-cta {
      margin-top: 0.8rem;
      display: flex;
      justify-content: center;
    }

    .contact-quick-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 255px;
      padding: 0.95rem 1.4rem;
      border-radius: 999px;
      background: #083C7C;
      border: 1px solid #0a3f84;
      color: #ffffff;
      font-family: "Outfit", sans-serif;
      font-size: 1.55rem;
      font-weight: 800;
      letter-spacing: 0.01em;
      box-shadow: 0 12px 22px rgba(8, 60, 124, 0.24);
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .contact-quick-btn:hover {
      background: #0d4d9f;
      box-shadow: 0 16px 28px rgba(8, 60, 124, 0.3);
      transform: translateY(-2px);
    }

    section.contact-main-section {
      background: #f7f9fd;
      padding-top: 2.7rem;
      padding-bottom: 0;
    }

    .contact-page section.contact-main-section {
      padding-top: 1.2rem;
      padding-bottom: 0;
      margin-bottom: 0;
    }

    .contact-faq {
      background: #ffffff;
      border-top: 1px solid #dbe4f0;
      border-bottom: 1px solid #dbe4f0;
    }

    .contact-faq-head {
      max-width: 860px;
      margin: 0 auto 1.2rem;
      text-align: center;
    }

    .contact-faq-head .section-tag {
      margin-left: auto;
      margin-right: auto;
    }

    .contact-faq-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.82rem;
      align-items: start;
    }

    .faq-item {
      background: #ffffff;
      border: 1px solid #d6dfec;
      border-top: 3px solid #083C7C;
      border-radius: 14px;
      box-shadow: 0 10px 20px rgba(8, 60, 124, 0.08);
      overflow: hidden;
    }

    .faq-item[open] {
      border-top-color: #D41418;
      box-shadow: 0 14px 24px rgba(212, 20, 24, 0.1);
    }

    .faq-item summary {
      position: relative;
      list-style: none;
      cursor: pointer;
      padding: 0.95rem 2.3rem 0.95rem 0.88rem;
      font-family: "Outfit", sans-serif;
      color: #083C7C;
      font-size: 1.1rem;
      line-height: 1.3;
      font-weight: 700;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      position: absolute;
      right: 0.88rem;
      top: 50%;
      transform: translateY(-50%);
      color: #D41418;
      font-size: 1.34rem;
      font-weight: 800;
      line-height: 1;
    }

    .faq-item[open] summary::after {
      content: "-";
      color: #083C7C;
    }

    .faq-item p {
      border-top: 1px solid #e2e8f2;
      padding: 0.82rem 0.88rem 0.95rem;
      color: #2a3f58;
      font-size: 0.93rem;
      line-height: 1.58;
    }

    .contact-main-section .location-head {
      margin-bottom: 0.95rem;
    }

    .map-full-bleed {
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
    }

    .map-frame--full {
      border-radius: 0;
      border-left: 0;
      border-right: 0;
      box-shadow: none;
    }

    .map-frame--full iframe {
      height: min(62vh, 560px);
    }

    .contact-page .footer {
      margin-top: 0;
      padding-top: 2.1rem;
    }

    .appointment-showcase {
      background: #083C7C;
      border-top: 1px solid #062f62;
      border-bottom: 1px solid #062f62;
    }

    .appointment-showcase-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: 1.2rem;
      align-items: stretch;
    }

    .appointment-form-card {
      background: #ffffff;
      border: 2px solid #062f62;
      border-radius: 18px;
      padding: 1.2rem 1rem 1rem;
      box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
    }

    .appointment-form-card h2 {
      font-family: "Outfit", sans-serif;
      color: #111111;
      font-size: clamp(1.8rem, 3vw, 2.35rem);
      line-height: 1.1;
      margin-bottom: 0.75rem;
    }

    .appointment-big-form {
      display: grid;
      gap: 0.52rem;
    }

    .appointment-big-form label {
      font-weight: 800;
      color: #111111;
      font-size: 0.92rem;
    }

    .appointment-big-form input,
    .appointment-big-form textarea {
      width: 100%;
      border: 1px solid #ccd7e5;
      border-radius: 10px;
      background: #f8fbff;
      color: #111111;
      padding: 0.7rem 0.78rem;
      font-size: 0.96rem;
      outline: none;
      font-family: inherit;
    }

    .appointment-big-form input {
      min-height: 46px;
    }

    .appointment-big-form textarea {
      resize: vertical;
      min-height: 120px;
    }

    .appointment-big-form input:focus,
    .appointment-big-form textarea:focus {
      border-color: #083C7C;
      box-shadow: 0 0 0 2px rgba(8, 60, 124, 0.12);
      background: #ffffff;
    }

    .appointment-big-submit {
      margin-top: 0.2rem;
      border: 1px solid #a50f13;
      background: #D41418;
      color: #ffffff;
      min-height: 46px;
      border-radius: 12px;
      font-family: "Outfit", sans-serif;
      font-size: 1.02rem;
      font-weight: 800;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      box-shadow: 0 10px 20px rgba(212, 20, 24, 0.24);
    }

    .appointment-big-submit:hover {
      background: #b21014;
      transform: translateY(-2px);
      box-shadow: 0 14px 24px rgba(178, 16, 20, 0.3);
    }

    .appointment-content-card {
      color: #ffffff;
      padding: 0.2rem 0.2rem 0.2rem 0.1rem;
    }

    .appointment-content-card h3 {
      font-family: "Outfit", sans-serif;
      font-size: clamp(1.75rem, 3vw, 2.6rem);
      line-height: 1.14;
      margin-bottom: 0.7rem;
      color: #ffffff;
    }

    .appointment-content-card p {
      color: rgba(236, 245, 255, 0.94);
      font-size: 1.05rem;
      line-height: 1.6;
      margin-bottom: 0.75rem;
      max-width: 64ch;
    }

    .appointment-content-card h4 {
      font-family: "Outfit", sans-serif;
      color: #ffffff;
      font-size: 1.45rem;
      margin: 0.2rem 0 0.55rem;
    }

    .appointment-content-card ul {
      list-style: none;
      display: grid;
      gap: 0.42rem;
      margin-bottom: 0.9rem;
    }

    .appointment-content-card li {
      position: relative;
      padding-left: 1.05rem;
      color: rgba(237, 246, 255, 0.95);
      font-size: 1.02rem;
      line-height: 1.5;
    }

    .appointment-content-card li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.55em;
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #D41418;
    }

    .appointment-info-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 230px;
      padding: 0.74rem 1rem;
      border-radius: 999px;
      background: #ffffff;
      border: 1px solid #ffffff;
      color: #083C7C;
      font-family: "Outfit", sans-serif;
      font-size: 1.02rem;
      font-weight: 800;
      transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .appointment-info-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 24px rgba(0, 0, 0, 0.26);
      color: #D41418;
    }

    .gallery-page .about-breadcrumb::before {
      background: rgba(5, 25, 52, 0.78);
    }

    .gallery-photos-page {
      background: #ffffff;
    }

    .gallery-videos-page {
      background: #f6f9fd;
      border-top: 1px solid #d9e1ee;
      border-bottom: 1px solid #d9e1ee;
    }

    .gallery-photos-page .section-head,
    .gallery-videos-page .section-head {
      max-width: 840px;
      margin: 0 auto 1.25rem;
      text-align: center;
    }

    .gallery-photos-page .section-tag,
    .gallery-videos-page .section-tag {
      margin-left: auto;
      margin-right: auto;
    }

    .gallery-media-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.9rem;
    }

    .media-photo-card {
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid #d9e2ef;
      background: #ffffff;
      box-shadow: var(--shadow-soft);
      transition: transform 0.22s ease, box-shadow 0.22s ease;
    }

    .media-photo-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 26px rgba(8, 60, 124, 0.16);
    }

    .media-photo-card img {
      width: 100%;
      height: 245px;
      display: block;
      object-fit: cover;
    }

    .gallery-video-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.9rem;
    }

    .media-video-card {
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid #d9e2ef;
      background: #ffffff;
      box-shadow: var(--shadow-soft);
      transition: transform 0.22s ease, box-shadow 0.22s ease;
    }

    .media-video-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 26px rgba(8, 60, 124, 0.16);
    }

    .media-video-card video {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
      background: #000;
    }

    .about-wrap {
      display: grid;
      grid-template-columns: 1fr 1.05fr;
      gap: 1.3rem;
      align-items: center;
    }

    .about-image {
      position: relative;
      width: min(430px, 100%);
      border-radius: 20px;
      overflow: visible;
      box-shadow: var(--shadow-soft);
      min-height: 0;
      aspect-ratio: 4 / 5;
      z-index: 1;
    }

    .about-image::before {
      content: "";
      position: absolute;
      left: -26px;
      bottom: -24px;
      width: 86%;
      height: 86%;
      background: #2f3e99;
      border-radius: 22px;
      z-index: -1;
    }

    .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 20px;
    }

    .about-content {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 1.35rem;
      box-shadow: var(--shadow-soft);
    }

    .about-points {
      list-style: none;
      display: grid;
      gap: 0.7rem;
      margin-top: 1rem;
    }

    .about-points li {
      display: flex;
      gap: 0.65rem;
      color: #1f1f1f;
      font-weight: 600;
    }

    .about-points i {
      color: var(--primary);
      margin-top: 0.1rem;
    }

    .about-section {
      background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
    }

    .about-intro-grid {
      display: grid;
      grid-template-columns: 0.76fr 1.24fr;
      gap: 1.2rem;
      align-items: start;
    }

    .about-content h2 {
      font-family: "Outfit", sans-serif;
      color: var(--primary);
      font-size: clamp(2rem, 3.4vw, 3rem);
      line-height: 1.1;
      margin-bottom: 0.72rem;
    }

    .about-content p {
      color: #2e2e2e;
      font-size: 0.95rem;
      margin-bottom: 0.62rem;
    }

    .about-content .about-lead {
      font-weight: 700;
      color: #1a1a1a;
    }

    .about-content {
      align-self: start;
    }

    .about-buttons {
      margin-top: 0.75rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.56rem;
    }

    .btn-outline-red {
      border-color: rgba(212, 20, 24, 0.34);
      background: rgba(212, 20, 24, 0.08);
      color: var(--primary);
    }

    .about-btn-blue {
      background: var(--dark);
      color: #ffffff;
      border-color: var(--dark);
      box-shadow: 0 8px 18px rgba(8, 60, 124, 0.24);
    }

    .about-btn-red {
      background: var(--primary);
      color: #ffffff;
      border-color: var(--primary);
      box-shadow: 0 8px 18px rgba(212, 20, 24, 0.24);
    }

    .about-highlights {
      margin-top: 1.35rem;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 1rem 1rem 0.9rem;
      box-shadow: var(--shadow-soft);
    }

    .about-highlights h3 {
      font-family: "Outfit", sans-serif;
      color: var(--primary);
      font-size: 1.3rem;
      margin-bottom: 0.7rem;
    }

    .about-highlight-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.9rem;
    }

    .about-highlight-grid ul {
      list-style: none;
      display: grid;
      gap: 0.5rem;
    }

    .about-highlight-grid li {
      display: flex;
      gap: 0.5rem;
      font-size: 0.92rem;
      color: #2c2c2c;
      line-height: 1.42;
    }

    .about-highlight-grid i {
      color: var(--dark);
      margin-top: 0.18rem;
      font-size: 0.78rem;
    }

    .about-cards {
      margin-top: 1.15rem;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.75rem;
    }

    .about-card {
      background: linear-gradient(130deg, #082f63 0%, #083C7C 70%, #0c4d9b 100%);
      border-radius: 13px;
      padding: 0.9rem;
      color: #fff;
      box-shadow: var(--shadow-soft);
    }

    .about-card h4 {
      font-family: "Outfit", sans-serif;
      font-size: 1rem;
      line-height: 1.2;
      margin-bottom: 0.38rem;
    }

    .about-card p {
      font-size: 0.86rem;
      line-height: 1.42;
      color: rgba(240, 248, 255, 0.94);
    }

    .services {
      position: relative;
      isolation: isolate;
      background: url("../services/background.jpeg") center / cover no-repeat;
      border-top: 1px solid #dde4ef;
      border-bottom: 1px solid #dde4ef;
    }

    .services > .container {
      position: relative;
      z-index: 1;
    }

    .services .section-head {
      max-width: 100%;
      margin: 0 auto 1.5rem;
      text-align: center;
    }

    .services .section-tag {
      margin-left: auto;
      margin-right: auto;
      background: #ffffff;
      border: 1px solid #d9e1ee;
      color: var(--dark);
    }

    .services .section-head h2 {
      white-space: nowrap;
      font-size: clamp(1.3rem, 2.8vw, 2.45rem);
      letter-spacing: 0.01em;
      color: var(--dark);
    }

    .services .section-head p {
      max-width: 920px;
      margin: 0.56rem auto 0;
      color: #34465f;
    }

    .service-key-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
      margin-bottom: 1.1rem;
    }

    .service-key-card {
      background: linear-gradient(122deg, #072a58 0%, #083C7C 62%, #0f4e99 100%);
      border-radius: 16px;
      padding: 0.82rem 0.82rem 0.98rem;
      color: #fff;
      box-shadow: 0 14px 28px rgba(8, 60, 124, 0.23);
      border: 1px solid rgba(255, 255, 255, 0.18);
      transition: transform 0.22s ease, box-shadow 0.22s ease;
    }

    .service-key-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 32px rgba(8, 60, 124, 0.28);
    }

    .service-key-image {
      height: 230px;
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 0.8rem;
      border: 1px solid rgba(255, 255, 255, 0.22);
      background: #eaf3ff;
    }

    .service-key-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform 0.25s ease;
    }

    .service-key-card:hover .service-key-image img {
      transform: scale(1.01);
    }

    .service-key-badge {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.35);
      color: #fff;
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 800;
      padding: 0.24rem 0.58rem;
      margin-bottom: 0.58rem;
    }

    .service-key-card h3 {
      font-family: "Outfit", sans-serif;
      font-size: 1.22rem;
      line-height: 1.2;
      margin-bottom: 0.45rem;
    }

    .service-key-card p {
      font-size: 0.92rem;
      color: rgba(240, 248, 255, 0.94);
      line-height: 1.45;
    }

    .service-key-actions {
      display: flex;
      gap: 0.55rem;
      flex-wrap: wrap;
      margin-top: 0.72rem;
    }

    .service-key-actions .btn {
      min-height: 42px;
      padding: 0.58rem 0.92rem;
      border-radius: 10px;
      font-size: 0.88rem;
      font-weight: 800;
    }

    .service-key-actions .btn-ghost {
      border-color: rgba(255, 255, 255, 0.45);
      background: rgba(255, 255, 255, 0.14);
      color: #ffffff;
    }

    .service-key-actions .btn-primary {
      background: #D41418;
      border-color: #D41418;
      color: #ffffff;
      box-shadow: 0 8px 18px rgba(212, 20, 24, 0.3);
    }

    .service-list-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0.9rem;
    }

    .service-mini-card {
      background: #fff;
      border: 1px solid var(--border);
      border-top: 3px solid var(--primary);
      border-radius: 15px;
      padding: 0.66rem 0.74rem 0.86rem;
      box-shadow: 0 10px 22px rgba(8, 60, 124, 0.1);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .service-mini-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 24px rgba(8, 60, 124, 0.14);
    }

    .service-mini-image {
      height: 145px;
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 0.62rem;
      border: 1px solid #e4e4e4;
    }

    .service-mini-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.25s ease;
    }

    .service-mini-card:hover .service-mini-image img {
      transform: scale(1.05);
    }

    .service-mini-card h4 {
      font-family: "Outfit", sans-serif;
      color: var(--dark);
      font-size: 1rem;
      line-height: 1.2;
      margin-bottom: 0.36rem;
    }

    .service-mini-card p {
      color: #333;
      font-size: 0.88rem;
      line-height: 1.4;
    }

    .service-mini-points {
      list-style: none;
      margin: 0.45rem 0 0;
      padding: 0;
      display: grid;
      gap: 0.3rem;
    }

    .service-mini-points li {
      display: flex;
      align-items: flex-start;
      gap: 0.35rem;
      color: #123a6b;
      font-size: 0.86rem;
      line-height: 1.35;
      font-weight: 600;
    }

    .service-mini-points li i {
      color: #D41418;
      margin-top: 0.12rem;
      flex: 0 0 auto;
    }

    .service-mini-actions {
      display: flex;
      gap: 0.45rem;
      flex-wrap: wrap;
      margin-top: 0.65rem;
    }

    .service-mini-actions .btn {
      min-height: 38px;
      padding: 0.5rem 0.78rem;
      border-radius: 9px;
      font-size: 0.82rem;
      font-weight: 800;
    }

    .service-mini-actions .btn-ghost {
      color: #083C7C;
      border-color: #b6c9e2;
      background: #f4f8ff;
    }

    .service-mini-actions .btn-primary {
      background: #D41418;
      border-color: #D41418;
      color: #ffffff;
      box-shadow: 0 7px 14px rgba(212, 20, 24, 0.26);
    }

    .center-images {
      background: #ffffff;
    }

    .center-images .section-head {
      max-width: 980px;
      margin: 0 auto 1.55rem;
      text-align: center;
    }

    .center-images .section-tag {
      margin-left: auto;
      margin-right: auto;
    }

    .center-images .section-head h2 {
      font-size: clamp(1.8rem, 3.7vw, 2.9rem);
      letter-spacing: 0.01em;
      color: var(--dark);
    }

    .center-images .section-head p {
      max-width: 900px;
      margin: 0.52rem auto 0;
      font-size: 1rem;
      line-height: 1.55;
      color: #34465f;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.86rem;
      align-items: start;
    }

    .gallery-item {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      transition: transform 0.22s ease, box-shadow 0.22s ease;
      align-self: start;
    }

    .gallery-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 26px rgba(8, 60, 124, 0.16);
    }

    .gallery-item img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .gallery-item--wide {
      grid-column: span 2;
    }

    .gallery-item--wide img {
      height: 260px;
    }

    .gallery-item--match-height img {
      height: 260px;
    }

    .gallery-caption {
      padding: 0.62rem 0.72rem 0.7rem;
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--dark);
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
    }

    .service-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }

    .service-image {
      height: 220px;
      overflow: hidden;
    }

    .service-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.25s ease;
    }

    .service-card:hover .service-image img {
      transform: scale(1.04);
    }

    .service-body {
      padding: 1rem;
      display: grid;
      gap: 0.52rem;
      flex: 1;
    }

    .service-body h3 {
      font-family: "Outfit", sans-serif;
      color: var(--dark);
      font-size: 1.08rem;
      line-height: 1.2;
    }

    .service-body p {
      color: var(--muted);
      font-size: 0.92rem;
    }

    .service-link {
      margin-top: auto;
      color: var(--dark);
      font-weight: 800;
      font-size: 0.88rem;
      letter-spacing: 0.03em;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
    }

    .why-choose {
      background: #f4f8fd;
      border-top: 1px solid #dce5f1;
      border-bottom: 1px solid #dce5f1;
    }

    .why-choose .section-head {
      max-width: 850px;
      margin: 0 auto 1.3rem;
      text-align: center;
    }

    .why-choose .section-head h2 {
      font-size: clamp(1.45rem, 3vw, 2.15rem);
      line-height: 1.12;
    }

    .why-choose .section-tag {
      margin-left: auto;
      margin-right: auto;
    }

    .why-choose .section-head .why-brand-primary {
      color: #D41418;
      display: inline;
    }

    .why-choose .section-head .why-brand-secondary {
      color: #D41418;
      font-size: 1em;
      font-weight: inherit;
      display: inline;
      margin-left: 0.2rem;
      vertical-align: baseline;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
    }

    .why-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 1rem 0.95rem;
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      box-shadow: var(--shadow-soft);
      transition: transform 0.22s ease, box-shadow 0.22s ease;
    }

    .why-card > div {
      flex: 1 1 auto;
      display: grid;
      align-content: start;
      gap: 0.3rem;
      text-align: left;
    }

    .why-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 26px rgba(8, 60, 124, 0.16);
    }

    .why-icon {
      width: 46px;
      height: 46px;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      background: var(--dark);
      border: 1px solid var(--primary);
      flex: 0 0 auto;
      box-shadow: 0 8px 16px rgba(8, 60, 124, 0.24);
      font-size: 1rem;
    }

    .why-card h3 {
      font-size: 1.02rem;
      color: var(--dark);
      margin: 0;
      line-height: 1.28;
      font-family: "Outfit", sans-serif;
    }

    .why-card p {
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.58;
      margin: 0;
    }

    .google-reviews {
      background: #edf2f8;
      border-top: 1px solid #d5deea;
      border-bottom: 1px solid #d5deea;
    }

    .reviews-head {
      max-width: 820px;
      margin: 0 auto 1.3rem;
      text-align: center;
    }

    .reviews-head .section-tag {
      margin-left: auto;
      margin-right: auto;
    }

    .reviews-carousel-wrap {
      position: relative;
      padding: 0 2.8rem;
      margin-bottom: 1.25rem;
    }

    .reviews-track {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: calc((100% - 2.7rem) / 4);
      gap: 0.9rem;
      overflow-x: auto;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;
      padding: 0.15rem;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .reviews-track::-webkit-scrollbar {
      display: none;
    }

    .reviews-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid #b9cae0;
      background: #ffffff;
      color: #083C7C;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      box-shadow: 0 8px 18px rgba(8, 60, 124, 0.14);
      z-index: 3;
      transition: all 0.2s ease;
    }

    .reviews-nav:hover {
      color: #ffffff;
      background: #D41418;
      border-color: #D41418;
    }

    .reviews-nav.prev {
      left: 0;
    }

    .reviews-nav.next {
      right: 0;
    }

    .review-card {
      scroll-snap-align: start;
      min-height: 260px;
      background: #ffffff;
      border: 1px solid #d0dceb;
      border-radius: 20px;
      padding: 1rem 1rem 0.9rem;
      box-shadow: 0 10px 22px rgba(8, 60, 124, 0.08);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .review-card:hover {
      transform: translateY(-3px);
      border-color: #c3d5ed;
      box-shadow: 0 14px 24px rgba(8, 60, 124, 0.14);
    }

    .review-stars {
      color: #e6a600;
      font-size: 0.9rem;
      letter-spacing: 0.02em;
      margin-bottom: 0.6rem;
    }

    .review-card p {
      color: #38506a;
      font-size: 0.98rem;
      line-height: 1.65;
      margin-bottom: 1rem;
    }

    .review-top {
      display: flex;
      align-items: center;
      gap: 0.7rem;
      padding-top: 0.65rem;
      border-top: 1px solid #d7e2ef;
    }

    .review-avatar {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #0d4f8f;
      color: #ffffff;
      font-weight: 800;
      font-family: "Outfit", sans-serif;
      flex: 0 0 auto;
    }

    .review-top h3 {
      font-family: "Outfit", sans-serif;
      color: #083C7C;
      font-size: 1.18rem;
      line-height: 1.2;
    }

    .review-top small {
      color: #5a6f88;
      font-size: 0.84rem;
      font-weight: 600;
    }

    .reviews-footer-panel {
      background: #083C7C;
      border: 1px solid #072f62;
      border-radius: 22px;
      padding: 1.2rem 1.2rem;
      display: grid;
      grid-template-columns: 240px 1fr 255px;
      gap: 1.2rem;
      align-items: center;
      box-shadow: 0 18px 30px rgba(8, 60, 124, 0.24);
    }

    .reviews-score-card strong {
      display: block;
      color: #f7c24d;
      font-family: "Outfit", sans-serif;
      font-size: 3rem;
      line-height: 0.95;
      margin-bottom: 0.22rem;
    }

    .google-word {
      color: #ffffff;
      font-weight: 700;
      margin-bottom: 0.32rem;
      font-family: "Outfit", sans-serif;
      font-size: 1.95rem;
      line-height: 1;
    }

    .google-word small {
      color: #d6e1ef;
      font-size: 0.95rem;
      margin-left: 0.32rem;
    }

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

    .g-red {
      color: #ea4335;
    }

    .g-yellow {
      color: #fbbc05;
    }

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

    .reviews-score-card .reviews-stars {
      margin-bottom: 0.28rem;
    }

    .reviews-stars {
      color: #f7c24d;
    }

    .reviews-score-card p {
      color: #d5e1ef;
      font-size: 0.93rem;
    }

    .reviews-distribution {
      display: grid;
      gap: 0.42rem;
    }

    .dist-row {
      display: grid;
      grid-template-columns: 42px 1fr 34px;
      align-items: center;
      gap: 0.55rem;
      color: #e9f0f8;
      font-size: 0.9rem;
    }

    .dist-row span i {
      color: #f7c24d;
      margin-left: 0.12rem;
      font-size: 0.76rem;
    }

    .dist-bar {
      height: 9px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.16);
      overflow: hidden;
    }

    .dist-bar em {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: #f7c24d;
    }

    .dist-row b {
      font-weight: 700;
      color: #dce7f5;
      text-align: right;
    }

    .reviews-cta p {
      color: #e6edf7;
      font-size: 1rem;
      line-height: 1.55;
      margin-bottom: 0.68rem;
    }

    .reviews-cta a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 190px;
      padding: 0.72rem 1rem;
      border-radius: 12px;
      background: #D41418;
      border: 1px solid #ff6367;
      color: #ffffff;
      font-family: "Outfit", sans-serif;
      font-weight: 800;
      font-size: 0.94rem;
      transition: all 0.2s ease;
    }

    .reviews-cta a:hover {
      background: #ffffff;
      color: #083C7C;
      border-color: #ffffff;
    }

    @media (max-width: 1100px) {
      .reviews-track {
        grid-auto-columns: calc((100% - 0.9rem) / 2);
      }

      .reviews-footer-panel {
        grid-template-columns: 1fr;
        gap: 1rem;
      }
    }

    @media (max-width: 760px) {
      .reviews-carousel-wrap {
        padding: 0;
      }

      .reviews-nav {
        display: none;
      }

      .reviews-track {
        grid-auto-columns: 100%;
      }

      .review-card {
        min-height: 240px;
      }
    }

    .cta {
      background: #edf2f8;
      border-top: 1px solid #d4deea;
      border-bottom: 1px solid #d4deea;
    }

    .cta-wrap {
      display: flex;
      justify-content: space-between;
      gap: 1.6rem;
      align-items: center;
      flex-wrap: wrap;
      width: 100vw;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      padding: 2.1rem 2.5rem;
      border-radius: 0;
      background: #083C7C;
      border: 1px solid #062f62;
      border-left: 6px solid #D41418;
      border-right: 2px solid rgba(255, 255, 255, 0.22);
      box-shadow: 0 18px 36px rgba(8, 60, 124, 0.2);
      position: relative;
      overflow: hidden;
      isolation: isolate;
    }

    .cta-wrap::before {
      content: "";
      position: absolute;
      top: -70px;
      right: -40px;
      width: 250px;
      height: 250px;
      border-radius: 43% 57% 64% 36% / 46% 43% 57% 54%;
      background: rgba(255, 255, 255, 0.1);
      z-index: 0;
    }

    .cta-wrap::after {
      content: "";
      position: absolute;
      bottom: -95px;
      left: -70px;
      width: 280px;
      height: 190px;
      border-radius: 54% 46% 36% 64% / 54% 42% 58% 46%;
      background: rgba(212, 20, 24, 0.25);
      z-index: 0;
    }

    .cta-wrap > * {
      position: relative;
      z-index: 1;
    }

    .cta-content {
      display: grid;
      gap: 0.35rem;
      padding-left: 0;
    }

    .cta-content::before {
      content: none;
    }

    .cta h2 {
      font-family: "Outfit", sans-serif;
      font-size: clamp(1.4rem, 2.3vw, 2.05rem);
      line-height: 1.14;
      margin-bottom: 0.45rem;
      color: #ffffff;
      max-width: 42ch;
      white-space: normal;
    }

    .cta p {
      max-width: 62ch;
      color: rgba(235, 245, 255, 0.92);
      font-size: 1rem;
    }

    .cta .btn-light {
      min-width: 176px;
      padding: 0.82rem 1.18rem;
      background: #D41418;
      color: #ffffff;
      border: 1px solid #ffffff;
      font-weight: 800;
      border-radius: 10px;
      letter-spacing: 0.01em;
      box-shadow: 0 12px 22px rgba(0, 0, 0, 0.25);
    }

    .cta .btn-light:hover {
      background: #b31014;
      border-color: #ffffff;
      box-shadow: 0 16px 26px rgba(0, 0, 0, 0.3);
      transform: translateY(-2px);
    }

    .about-page .cta-content,
    .treatment-page .cta-content {
      margin-left: 9%;
      padding-left: 0;
    }

    .about-page .cta .btn-light,
    .treatment-page .cta .btn-light {
      margin-right: 10%;
    }

    @media (max-width: 1180px) {
      .cta h2 {
        white-space: normal;
      }
    }

    @media (max-width: 860px) {
      .cta-wrap::before,
      .cta-wrap::after {
        opacity: 0.65;
      }
    }

    .cta-callback .cta-wrap {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      align-items: center;
      justify-items: center;
      padding: 1.55rem 2.4rem;
      border-left-width: 0;
      border-right-width: 0;
    }

    .cta-callback .cta-wrap::before {
      top: -86px;
      right: -88px;
      width: 250px;
      height: 250px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      background: rgba(255, 255, 255, 0.06);
    }

    .cta-callback .cta-wrap::after {
      left: -84px;
      bottom: -112px;
      width: 260px;
      height: 200px;
      background: rgba(212, 20, 24, 0.2);
    }

    .cta-visual {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.24);
      border-radius: 999px;
      padding: 0.7rem 0.9rem;
      justify-self: center;
    }

    .cta-visual-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #ffffff;
      color: #083C7C;
      border: 1px solid rgba(8, 60, 124, 0.2);
      font-size: 1.04rem;
    }

    .cta-callback .cta-content {
      gap: 0.7rem;
      text-align: center;
      justify-items: center;
    }

    .cta-callback .cta-title {
      margin: 0;
      font-size: clamp(1.12rem, 1.7vw, 1.6rem);
      max-width: none;
      white-space: nowrap;
      line-height: 1.2;
      color: #f7fbff;
    }

    .cta-callback-form {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      width: min(760px, 100%);
      max-width: 760px;
      border-radius: 999px;
      overflow: hidden;
      background: #ffffff;
      border: 1px solid #dce6f3;
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    }

    .cta-input-icon {
      width: 58px;
      min-height: 54px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #083C7C;
      font-size: 1.06rem;
      border-right: 1px solid #d6e0ed;
      background: #f8fbff;
    }

    .cta-callback-form input {
      border: 0;
      min-height: 54px;
      padding: 0 0.95rem;
      font-size: 1rem;
      color: #183250;
      outline: none;
      width: 100%;
      font-family: "Outfit", sans-serif;
    }

    .cta-callback-form input::placeholder {
      color: #556f8d;
      font-size: 0.95rem;
      letter-spacing: 0.01em;
    }

    .cta-callback-form button {
      border: 0;
      min-height: 54px;
      padding: 0 1.45rem;
      background: #D41418;
      color: #ffffff;
      font-family: "Outfit", sans-serif;
      font-weight: 800;
      font-size: 0.98rem;
      letter-spacing: 0.01em;
      cursor: pointer;
      transition: background 0.22s ease, transform 0.22s ease;
    }

    .cta-callback-form button:hover {
      background: #b21014;
      transform: translateY(-1px);
    }

    .cta-quick-call {
      display: none;
      align-items: center;
      gap: 0.35rem;
      color: #ffffff;
      font-weight: 700;
      font-size: 0.9rem;
      opacity: 0.92;
    }

    @media (max-width: 1180px) {
      .cta-callback .cta-title {
        white-space: normal;
      }
    }

    @media (max-width: 860px) {
      .cta-callback .cta-wrap {
        grid-template-columns: 1fr;
        padding: 1.1rem 0.9rem;
        gap: 0.9rem;
        justify-items: stretch;
      }

      .cta-callback .cta-visual {
        justify-self: center;
      }

      .cta-callback .cta-title {
        font-size: clamp(1.02rem, 4.8vw, 1.34rem);
      }

      .cta-callback .cta-callback-form {
        grid-template-columns: auto 1fr;
        border-radius: 14px;
      }

      .cta-callback .cta-input-icon {
        min-height: 48px;
      }

      .cta-callback .cta-callback-form input {
        min-height: 48px;
      }

      .cta-callback .cta-callback-form button {
        grid-column: 1 / -1;
        min-height: 46px;
      }

      .cta-callback .cta-quick-call {
        display: inline-flex;
      }
    }

    section.location-map {
      background: #ffffff;
      border-top: 1px solid #d6deea;
      border-bottom: 1px solid #d6deea;
      padding-bottom: 0;
    }

    .location-head {
      max-width: 860px;
      margin: 0 auto 1.2rem;
      text-align: center;
    }

    .location-head .section-tag {
      margin-left: auto;
      margin-right: auto;
    }

    .map-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.9fr);
      gap: 1rem;
      align-items: stretch;
    }

    .map-frame {
      border: 1px solid #cfd8e6;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 14px 28px rgba(8, 60, 124, 0.12);
      background: #fff;
    }

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

    .map-contact-card {
      background: #083C7C;
      color: #ffffff;
      border: 1px solid #062f62;
      border-left: 5px solid #D41418;
      border-radius: 16px;
      padding: 1.1rem 1rem;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
      box-shadow: 0 14px 28px rgba(8, 60, 124, 0.18);
    }

    .map-contact-card h3 {
      font-family: "Outfit", sans-serif;
      font-size: 1.2rem;
      line-height: 1.2;
    }

    .map-contact-card p {
      color: rgba(236, 245, 255, 0.92);
      font-size: 0.94rem;
      margin-bottom: 0.18rem;
    }

    .appointment-form {
      display: grid;
      gap: 0.45rem;
    }

    .appointment-form label {
      font-size: 0.82rem;
      color: rgba(240, 248, 255, 0.92);
      font-weight: 700;
    }

    .appointment-form input,
    .appointment-form select {
      width: 100%;
      height: 42px;
      border: 1px solid rgba(255, 255, 255, 0.34);
      border-radius: 9px;
      background: rgba(255, 255, 255, 0.12);
      color: #ffffff;
      padding: 0 0.72rem;
      font-size: 0.9rem;
      outline: none;
    }

    .appointment-form input::placeholder {
      color: rgba(233, 243, 255, 0.75);
    }

    .appointment-form select option {
      color: #111;
    }

    .appointment-form input:focus,
    .appointment-form select:focus {
      border-color: #ffffff;
      background: rgba(255, 255, 255, 0.18);
    }

    .map-contact-card .map-direction-btn,
    .map-contact-card .form-submit-btn {
      margin-top: 0.28rem;
      background: #D41418;
      border: 1px solid #ffffff;
      color: #fff;
      padding: 0.62rem 0.92rem;
      border-radius: 10px;
      font-weight: 800;
      transition: transform 0.2s ease, background 0.2s ease;
      width: fit-content;
      cursor: pointer;
    }

    .map-contact-card .map-direction-btn:hover,
    .map-contact-card .form-submit-btn:hover {
      background: #b21014;
      color: #ffffff;
      transform: translateY(-2px);
    }

    .footer {
      background: #06090e;
      color: #ffffff;
      padding: 3rem 0 1.2rem;
      border-top: 4px solid #083C7C;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.35fr 1fr 1fr 1.2fr;
      gap: 1.2rem;
      margin-bottom: 1.35rem;
    }

    .footer-brand {
      display: grid;
      gap: 0.8rem;
      align-content: start;
    }

    .footer-logo-wrap {
      background: #ffffff;
      border: 1px solid #dbe4ef;
      border-radius: 12px;
      padding: 0.45rem;
      width: fit-content;
      box-shadow: 0 10px 18px rgba(0, 0, 0, 0.22);
    }

    .footer-logo {
      width: 250px;
      max-width: 100%;
      height: auto;
      display: block;
    }

    .footer-col {
      padding-top: 0.2rem;
    }

    .footer h3 {
      font-family: "Outfit", sans-serif;
      margin-bottom: 0.72rem;
      color: #ffffff;
      font-size: 1.06rem;
      letter-spacing: 0.01em;
    }

    .footer p,
    .footer li,
    .footer a {
      color: rgba(228, 240, 255, 0.92);
      font-size: 0.9rem;
    }

    .footer-links {
      list-style: none;
      display: grid;
      gap: 0.58rem;
    }

    .footer-links li,
    .footer-links li a,
    .footer-links li > span {
      display: inline-flex;
      align-items: flex-start;
      gap: 0.52rem;
      line-height: 1.4;
    }

    .footer-links i {
      color: #D41418;
      font-size: 0.8rem;
      margin-top: 0.2rem;
      flex: 0 0 auto;
    }

    .footer-links a:hover {
      color: #ffffff;
    }

    .footer-contact i {
      width: 22px;
      height: 22px;
      border-radius: 999px;
      margin-top: 0.02rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 255, 255, 0.24);
      font-size: 0.72rem;
      color: #ffffff;
      background: rgba(212, 20, 24, 0.92);
    }

    .footer-phone-group {
      display: inline-flex;
      align-items: flex-start;
      gap: 0.35rem;
      flex-wrap: wrap;
      line-height: 1.4;
    }

    .footer-phone-group a {
      display: inline;
    }

    .footer-phone-sep {
      color: rgba(228, 240, 255, 0.92);
      margin-right: 0.1rem;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.14);
      padding-top: 0.82rem;
      display: flex;
      justify-content: space-between;
      gap: 0.8rem;
      flex-wrap: wrap;
      font-size: 0.84rem;
      color: rgba(235, 247, 255, 0.78);
    }

    .sticky-actions {
      position: fixed;
      right: 16px;
      bottom: 16px;
      display: grid;
      gap: 0.55rem;
      z-index: 70;
      background: rgba(255, 255, 255, 0.94);
      border: 1px solid #d7e0ec;
      border-radius: 18px;
      padding: 0.5rem 0.45rem;
      box-shadow: 0 14px 30px rgba(7, 29, 58, 0.2);
      backdrop-filter: blur(6px);
    }

    .sticky-actions a {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #f8fbff;
      border: 1px solid #dbe5f0;
      color: var(--dark);
      box-shadow: 0 6px 14px rgba(8, 60, 124, 0.12);
      transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }

    .sticky-actions a:nth-child(1) {
      color: #1ea959;
    }

    .sticky-actions a:nth-child(2) {
      color: var(--dark);
    }

    .sticky-actions a:nth-child(3) {
      color: var(--primary);
    }

    .sticky-actions a:hover {
      transform: translateY(-2px);
      color: #fff;
      box-shadow: 0 10px 18px rgba(8, 60, 124, 0.2);
    }

    .sticky-actions a:nth-child(1):hover {
      background: #1ea959;
      border-color: #1ea959;
    }

    .sticky-actions a:nth-child(2):hover {
      background: var(--dark);
      border-color: var(--dark);
    }

    .sticky-actions a:nth-child(3):hover {
      background: var(--primary);
      border-color: var(--primary);
    }

    @media (max-width: 1100px) {
      .hero-full {
        width: min(var(--max), calc(100% - 2rem));
        margin: 0 auto;
      }

      .utility-wrap {
        grid-template-columns: 1fr 1fr;
        gap: 0.9rem 1rem;
        padding: 0.8rem 0;
      }

      .brand {
        grid-column: 1 / 2;
      }

      .top-appointment {
        grid-column: 2 / 3;
        min-height: 62px;
        border-radius: 14px;
      }

      .nav-shell {
        border-radius: 14px;
      }

      .nav-wrap {
        min-height: auto;
      }

      .main-nav {
        gap: 0.25rem;
      }

      .hero-slider {
        min-height: 500px;
        max-height: none;
        border-radius: 18px;
      }

      .hero-overlay {
        padding: 1.55rem 1.5rem 2.2rem;
      }

      .hero-copy {
        max-width: min(680px, 78vw);
      }

      .hero-copy h2 {
        font-size: clamp(1.6rem, 4.8vw, 2.35rem);
      }

      .hero-copy h2 .hero-line-nowrap {
        white-space: normal;
      }

      .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .about-wrap {
        grid-template-columns: 1fr;
      }

      .about-page-hero,
      .about-page-hero-wrap {
        min-height: 420px;
      }

      .about-page-value-grid {
        grid-template-columns: 1fr;
      }

      .about-page-value-card {
        min-height: 0;
      }

      .about-trust-grid {
        grid-template-columns: 1fr;
      }

      .gallery-media-grid,
      .gallery-video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .contact-quick-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .contact-faq-grid {
        grid-template-columns: 1fr;
      }

      .appointment-showcase-grid {
        grid-template-columns: 1fr;
      }

      .appointment-form-card {
        order: 2;
      }

      .appointment-content-card {
        order: 1;
      }

      .appointment-content-card h3 {
        font-size: clamp(1.5rem, 4.6vw, 2rem);
      }

      .appointment-content-card p,
      .appointment-content-card li {
        font-size: 0.96rem;
      }

      .contact-quick-card {
        border-radius: 16px;
        padding: 1rem 0.9rem;
      }

      .contact-quick-icon {
        width: 66px;
        height: 66px;
        border-radius: 16px;
        font-size: 1.6rem;
      }

      .contact-quick-btn {
        font-size: 1.28rem;
      }

      .about-page-value-icon {
        width: 56px;
        height: 56px;
        font-size: 1.35rem;
      }

      .about-page-value-card h3 {
        font-size: 1.38rem;
      }

      .about-image {
        width: min(390px, 100%);
        aspect-ratio: 5 / 6;
      }

      .about-image::before {
        left: -18px;
        bottom: -18px;
        width: 82%;
        height: 82%;
      }

      .about-intro-grid {
        grid-template-columns: 1fr;
      }

      .about-highlight-grid {
        grid-template-columns: 1fr;
      }

      .about-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .service-key-grid {
        grid-template-columns: 1fr;
      }

      .service-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .gallery-item--wide {
        grid-column: span 2;
      }

      .service-mini-image {
        height: 132px;
      }

      .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .footer-logo {
        width: 220px;
      }
    }

    @media (max-width: 860px) {
      .site-header {
        position: sticky;
        top: 84px;
        z-index: 240;
      }

      .utility-bar {
        position: sticky;
        top: 0;
        z-index: 260;
      }

      .utility-wrap {
        grid-template-columns: 1fr auto;
        min-height: auto;
        padding: 0.45rem 0;
        justify-items: stretch;
        align-items: center;
      }

      .brand-logo {
        width: 286px;
        height: 74px;
      }

      .utility-info,
      .top-appointment {
        display: none;
      }

      .top-appointment {
        min-height: 58px;
        width: 100%;
        border-radius: 14px;
      }

      .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        justify-self: end;
        width: 40px;
        height: 40px;
        border-radius: 10px;
        border: 1px solid rgba(8, 60, 124, 0.26);
        background: #083C7C;
        color: #fff;
        box-shadow: 0 8px 16px rgba(8, 60, 124, 0.26);
      }

      .nav-shell {
        background: transparent;
        border: none;
        box-shadow: none;
        border-radius: 0;
        margin-top: 0;
        overflow: visible;
      }

      .nav-shell::before {
        display: none;
      }

      .nav-wrap {
        flex-wrap: nowrap;
        min-height: 0;
        padding: 0;
      }

      .main-nav {
        width: 100%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.28rem;
        margin-top: 0.35rem;
        padding: 0.45rem;
        background: linear-gradient(115deg, #062d60 0%, #083C7C 58%, #0a4b99 100%);
        border-radius: 12px;
        box-shadow: 0 12px 24px rgba(8, 60, 124, 0.26);
      }

      .main-nav.open {
        display: flex;
      }

      .main-nav a,
      .main-nav .nav-dropdown-toggle {
        background: rgba(255, 255, 255, 0.14);
        color: #fff;
      }

      .main-nav .nav-dropdown {
        width: 100%;
      }

      .main-nav .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
      }

      .main-nav .nav-dropdown-menu {
        position: static;
        min-width: 0;
        display: none;
        flex-direction: column;
        margin-top: 0.32rem;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: none;
        padding: 0.34rem;
      }

      .main-nav .nav-dropdown-menu a {
        color: #fff;
        background: rgba(255, 255, 255, 0.14);
        font-size: 0.84rem;
        margin-bottom: 0.28rem;
      }

      .main-nav .nav-dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.24);
        color: #fff;
      }

      .main-nav .nav-dropdown-menu a:last-child {
        margin-bottom: 0;
      }

      .main-nav .nav-dropdown-toggle i {
        transform: rotate(0deg);
      }

      .main-nav .nav-dropdown.open .nav-dropdown-menu {
        display: flex;
      }

      .main-nav .nav-dropdown.open .nav-dropdown-toggle i {
        transform: rotate(180deg);
      }

      .nav-social {
        display: none;
      }

      .hero-full {
        width: 100%;
        margin: 0;
      }

      .hero-slider {
        border-radius: 0;
      }

      .hero-overlay {
        align-items: flex-start;
        padding: 1.25rem 1rem 2.2rem;
        background: linear-gradient(112deg, rgba(0, 0, 0, 0.82) 0%, rgba(8, 60, 124, 0.78) 54%, rgba(212, 20, 24, 0.34) 100%);
      }

      .hero-copy {
        max-width: 92%;
      }

      .hero-copy .kicker {
        font-size: 0.72rem;
        margin-bottom: 0.4rem;
      }

      .hero-copy h2 {
        font-size: clamp(1.45rem, 6.1vw, 2.05rem);
        line-height: 1.12;
        margin-bottom: 0.52rem;
      }

      .hero-copy p {
        font-size: 0.92rem;
        margin-bottom: 0.74rem;
        max-width: 46ch;
      }

      .hero-actions .btn {
        padding: 0.56rem 0.82rem;
        font-size: 0.87rem;
      }

      .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .about-content {
        padding: 1rem;
      }

      .about-content h2 {
        font-size: clamp(1.4rem, 5.1vw, 1.9rem);
      }

      .services .section-head h2 {
        white-space: normal;
      }

      .map-layout {
        grid-template-columns: 1fr;
      }

      .map-frame iframe {
        height: 350px;
      }

      .map-frame--full iframe {
        height: 430px;
      }
    }

    @media (max-width: 640px) {
      .site-header {
        top: 74px;
      }

      .container {
        width: min(var(--max), calc(100% - 1.1rem));
      }

      .brand-logo {
        width: 236px;
        height: 62px;
      }

      .utility-info .info-title {
        font-size: 0.98rem;
      }

      .utility-info a {
        font-size: 0.94rem;
      }

      .top-appointment {
        font-size: 0.92rem;
      }

      .hero-slider {
        min-height: calc(100vh - 158px);
        max-height: 560px;
        border-radius: 0;
      }

      .about-page-hero {
        min-height: 360px;
        margin-top: 0;
      }

      .about-breadcrumb {
        min-height: 200px;
        padding: 1rem 0;
      }

      .about-breadcrumb-wrap {
        align-items: flex-start;
      }

      .about-breadcrumb h1 {
        font-size: 1.3rem;
      }

      .about-breadcrumb nav {
        font-size: 0.82rem;
      }

      .about-breadcrumb-title p {
        font-size: 0.84rem;
      }

      .about-page-hero-wrap {
        min-height: 360px;
        padding: 1rem 0 1.25rem;
      }

      .about-page-copy {
        max-width: 94%;
      }

      .about-page-copy h1 {
        font-size: clamp(1.35rem, 6.2vw, 1.85rem);
      }

      .about-page-copy p {
        font-size: 0.86rem;
      }

      .about-page .about-content {
        padding: 1.05rem;
      }

      .about-page .about-content p {
        font-size: 0.9rem;
        line-height: 1.6;
      }

      .about-page .about-content .about-lead {
        font-size: 0.95rem;
      }

      .about-page .about-buttons .btn {
        min-width: 0;
      }

      .about-trust-item {
        padding: 0.78rem 0.72rem;
      }

      .gallery-media-grid,
      .gallery-video-grid {
        grid-template-columns: 1fr;
      }

      .contact-quick-grid {
        grid-template-columns: 1fr;
      }

      .contact-faq-grid {
        gap: 0.66rem;
      }

      .faq-item summary {
        font-size: 1rem;
        padding: 0.8rem 2rem 0.8rem 0.76rem;
      }

      .faq-item p {
        font-size: 0.88rem;
        padding: 0.72rem 0.76rem 0.82rem;
      }

      .appointment-form-card {
        border-radius: 14px;
        padding: 0.95rem 0.78rem 0.86rem;
      }

      .appointment-form-card h2 {
        font-size: clamp(1.45rem, 7vw, 1.85rem);
      }

      .appointment-big-form input {
        min-height: 42px;
      }

      .appointment-big-form textarea {
        min-height: 108px;
      }

      .appointment-big-submit {
        min-height: 42px;
        font-size: 0.95rem;
      }

      .appointment-content-card {
        padding: 0;
      }

      .appointment-content-card h3 {
        font-size: clamp(1.28rem, 6.6vw, 1.68rem);
      }

      .appointment-content-card h4 {
        font-size: 1.15rem;
      }

      .appointment-content-card p,
      .appointment-content-card li {
        font-size: 0.9rem;
      }

      .appointment-info-btn {
        min-width: 188px;
        font-size: 0.9rem;
        padding: 0.64rem 0.86rem;
      }

      .contact-quick-head h2 {
        font-size: clamp(1.62rem, 8vw, 2.15rem);
      }

      .contact-quick-card {
        border-radius: 14px;
        padding: 0.9rem 0.78rem;
        gap: 0.72rem;
      }

      .contact-quick-icon {
        width: 54px;
        height: 54px;
        border-radius: 14px;
        font-size: 1.25rem;
      }

      .contact-quick-card h3 {
        font-size: 1.2rem;
      }

      .contact-quick-card p,
      .contact-quick-card a {
        font-size: 0.9rem;
      }

      .contact-quick-note {
        font-size: 0.9rem;
      }

      .contact-quick-btn {
        min-width: 210px;
        font-size: 1.1rem;
        padding: 0.8rem 1.08rem;
      }

      .media-photo-card img,
      .media-video-card video {
        height: 220px;
      }

      .hero {
        margin-top: -6px;
      }

      .hero-overlay {
        padding: 0.95rem 0.85rem 1.85rem;
      }

      .hero-dots {
        left: 0.9rem;
        bottom: 0.64rem;
      }

      .hero-copy {
        max-width: 88%;
        background: rgba(5, 23, 48, 0.34);
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 12px;
        padding: 0.62rem 0.66rem 0.72rem;
        margin-top: 14px;
      }

      .hero-copy .kicker {
        font-size: 0.62rem;
        letter-spacing: 0.12em;
        margin-bottom: 0.28rem;
      }

      .hero-copy h2 {
        font-size: clamp(1.18rem, 6.2vw, 1.62rem);
        line-height: 1.16;
        margin-bottom: 0.42rem;
      }

      .hero-copy p {
        font-size: 0.8rem;
        line-height: 1.35;
        max-width: 100%;
        margin-bottom: 0.6rem;
      }

      .hero-actions {
        gap: 0.42rem;
      }

      .hero-actions .btn {
        padding: 0.48rem 0.66rem;
        font-size: 0.8rem;
      }

      .service-grid,
      .stats-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .why-grid {
        grid-template-columns: 1fr;
      }

      .footer-logo-wrap {
        margin: 0 auto;
      }

      .footer-brand {
        text-align: center;
      }

      .footer-links li,
      .footer-links li a,
      .footer-links li > span {
        justify-content: flex-start;
      }

      .footer-bottom {
        justify-content: center;
        text-align: center;
      }

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

      .gallery-grid {
        grid-template-columns: 1fr;
      }

      .gallery-item--wide {
        grid-column: span 1;
      }

      .gallery-item img,
      .gallery-item--wide img {
        height: 210px;
      }

      .service-key-image {
        height: auto;
        padding: 0.28rem;
      }

      .service-key-image img {
        height: auto;
        object-fit: contain;
      }

      .service-mini-image {
        height: 158px;
      }

      .about-cards {
        grid-template-columns: 1fr;
      }

      .about-image {
        width: 100%;
        max-width: none;
        aspect-ratio: 4 / 3;
      }

      .about-image::before {
        left: -10px;
        bottom: -10px;
        width: 74%;
        height: 74%;
      }

      .about-image img {
        object-position: center 24%;
      }

      .about-highlights {
        padding: 0.85rem 0.8rem 0.82rem;
      }

      .about-highlight-grid li {
        font-size: 0.88rem;
      }

      .cta-wrap {
        padding: 1.15rem 0.9rem 1rem;
        border-radius: 0;
        gap: 0.7rem;
        border-left-width: 4px;
      }

      .cta-content {
        padding-left: 0;
      }

      .cta-content::before {
        content: none;
      }

      .cta h2 {
        font-size: clamp(1.12rem, 5.7vw, 1.4rem);
        max-width: 100%;
        margin-bottom: 0.28rem;
      }

      .cta p {
        font-size: 0.84rem;
      }

      .cta .btn-light {
        width: 100%;
        min-width: 0;
        border-width: 1px;
        border-radius: 10px;
        padding: 0.68rem 0.84rem;
      }

      .map-frame {
        border-radius: 12px;
      }

      .map-frame iframe {
        height: 285px;
      }

      .map-frame--full {
        border-radius: 0;
      }

      .map-frame--full iframe {
        height: 300px;
      }

      .map-contact-card {
        border-radius: 12px;
        padding: 0.95rem 0.82rem;
        gap: 0.5rem;
      }

      .map-contact-card h3 {
        font-size: 1.04rem;
      }

      .map-contact-card a {
        font-size: 0.9rem;
      }

      section:not(.hero) {
        padding: 3.1rem 0;
      }

      .sticky-actions {
        right: 10px;
        bottom: 10px;
      }

      .sticky-actions a {
        width: 42px;
        height: 42px;
      }
    }

    @media (max-width: 420px) {
      .hero-slider {
        min-height: 352px;
      }

      .hero-copy {
        max-width: 92%;
      }

      .hero-copy h2 {
        font-size: clamp(1.04rem, 5.8vw, 1.35rem);
      }

      .hero-copy p {
        font-size: 0.74rem;
      }
    }
