    /* ========================================
       CSS VARIABLES
    ======================================== */
    :root {
      --color-primary: #263e70;
      --color-secondary: #34a7b1;
      --color-accent: #f0ad03;
      --color-text: #000f26;
      --color-text-light: #666;
      --color-white: #ffffff;
      --color-bg-light: #f8f9fa;
      --color-bg-blue: #e8f4f8;
      --font-family: 'Raleway', sans-serif;
      --transition-fast: 0.2s ease;
      --transition-medium: 0.3s ease;
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
      --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
      --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
      --radius-sm: 4px;
      --radius-md: 8px;
      --radius-lg: 12px;
      --container-max: 1200px;
      --container-narrow: 800px;
      --container-padding: 20px;
    }

    /* ========================================
       RESET & BASE STYLES
    ======================================== */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-family);
      font-size: 18px;
      line-height: 1.8;
      color: var(--color-text);
      background-color: var(--color-white);
      -webkit-font-smoothing: antialiased;
      cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cellipse cx='16' cy='18' rx='8' ry='10' fill='%23f0ad03'/%3E%3Cellipse cx='16' cy='18' rx='8' ry='10' fill='none' stroke='%23000' stroke-width='0.5'/%3E%3Cline x1='8' y1='14' x2='24' y2='14' stroke='%23000' stroke-width='1.5'/%3E%3Cline x1='8' y1='18' x2='24' y2='18' stroke='%23000' stroke-width='1.5'/%3E%3Cline x1='8' y1='22' x2='24' y2='22' stroke='%23000' stroke-width='1.5'/%3E%3Cellipse cx='16' cy='8' rx='5' ry='4' fill='%23000'/%3E%3Cellipse cx='12' cy='7' rx='2' ry='1.5' fill='%23fff'/%3E%3Cellipse cx='20' cy='7' rx='2' ry='1.5' fill='%23fff'/%3E%3Cellipse cx='6' cy='10' rx='4' ry='6' fill='%23d4e4ff' opacity='0.7' transform='rotate(-30 6 10)'/%3E%3Cellipse cx='26' cy='10' rx='4' ry='6' fill='%23d4e4ff' opacity='0.7' transform='rotate(30 26 10)'/%3E%3C/svg%3E") 16 16, auto;
    }

    a, button, .btn, input[type="submit"] {
      cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cellipse cx='16' cy='18' rx='8' ry='10' fill='%23f0ad03'/%3E%3Cellipse cx='16' cy='18' rx='8' ry='10' fill='none' stroke='%23000' stroke-width='0.5'/%3E%3Cline x1='8' y1='14' x2='24' y2='14' stroke='%23000' stroke-width='1.5'/%3E%3Cline x1='8' y1='18' x2='24' y2='18' stroke='%23000' stroke-width='1.5'/%3E%3Cline x1='8' y1='22' x2='24' y2='22' stroke='%23000' stroke-width='1.5'/%3E%3Cellipse cx='16' cy='8' rx='5' ry='4' fill='%23000'/%3E%3Cellipse cx='12' cy='7' rx='2' ry='1.5' fill='%23fff'/%3E%3Cellipse cx='20' cy='7' rx='2' ry='1.5' fill='%23fff'/%3E%3Cellipse cx='6' cy='10' rx='4' ry='6' fill='%23d4e4ff' opacity='0.7' transform='rotate(-30 6 10)'/%3E%3Cellipse cx='26' cy='10' rx='4' ry='6' fill='%23d4e4ff' opacity='0.7' transform='rotate(30 26 10)'/%3E%3C/svg%3E") 16 16, pointer;
    }

    p {
      font-size: 1.25rem;
      line-height: 1.8;
      color: #333;
      margin-bottom: 1rem;
    }

    p:last-child { margin-bottom: 0; }

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

    a {
      color: var(--color-secondary);
      text-decoration: none;
      transition: color var(--transition-fast);
    }

    a:hover { color: var(--color-accent); }

    h1, h2, h3, h4 {
      font-weight: 700;
      line-height: 1.2;
      color: var(--color-primary);
    }

    h1 { font-size: clamp(2rem, 5vw, 3rem); }
    h2 { font-size: clamp(1.75rem, 4vw, 2.25rem); margin-bottom: 20px; }
    h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); margin-bottom: 15px; color: var(--color-secondary); }

    ul, ol { list-style: none; }

    .container {
      width: 100%;
      max-width: var(--container-max);
      margin: 0 auto;
      padding: 0 var(--container-padding);
    }

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

    /* ========================================
       COMPONENT: BUTTONS
    ======================================== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 30px;
      font-family: var(--font-family);
      font-size: 1rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      border: none;
      border-radius: var(--radius-sm);
      cursor: pointer;
      transition: all var(--transition-medium);
      text-decoration: none;
      line-height: 1;
      height: 52px;
    }

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

    .btn-primary:hover {
      background-color: #d99b03;
      color: var(--color-white);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .btn-secondary {
      background-color: var(--color-secondary);
      color: var(--color-white);
    }

    .btn-secondary:hover {
      background-color: #2d929b;
      color: var(--color-white);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .btn.btn-phone {
      background-color: var(--color-secondary);
      color: var(--color-white);
    }

    .btn.btn-phone:hover {
      background-color: #2d929b;
      color: var(--color-white);
    }

    .btn.btn-phone--outline {
      background-color: transparent;
      border: 2px solid var(--color-white);
      color: var(--color-white);
    }

    .btn.btn-phone--outline:hover {
      background-color: var(--color-white);
      color: var(--color-secondary);
    }

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

    .btn-white:hover {
      background-color: var(--color-accent);
      color: var(--color-white);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .btn-group {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
      align-items: center;
      margin-top: 30px;
    }

    @media (max-width: 576px) {
      .btn-group {
        flex-direction: column;
      }
      .btn-group .btn {
        width: 100%;
      }
    }

    /* ========================================
       COMPONENT: HEADER
    ======================================== */
    .header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background-color: var(--color-white);
      padding: 8px 0;
      transition: box-shadow var(--transition-medium);
    }

    .header__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
    }

    .header__logo img { height: 62px; width: auto; }

    .header__nav { display: none; }

    .header__nav-list { display: flex; gap: 30px; }

    .header__nav-item { position: relative; }

    .header__nav-link {
      font-weight: 600;
      color: var(--color-primary);
      padding: 10px 0;
      display: block;
    }

    .header__nav-link:hover { color: var(--color-secondary); }

    .header__dropdown {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 200px;
      background: var(--color-white);
      box-shadow: var(--shadow-lg);
      border-radius: var(--radius-md);
      padding: 10px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all var(--transition-medium);
    }

    .header__nav-item:hover .header__dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .header__dropdown-link {
      display: block;
      padding: 10px 20px;
      color: var(--color-text);
      font-weight: 500;
    }

    .header__dropdown-link:hover {
      background-color: var(--color-bg-light);
      color: var(--color-secondary);
    }

    .header__cta { display: none; }

    .header__mobile-toggle {
      display: flex;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 5px;
    }

    .header__mobile-toggle span {
      width: 25px;
      height: 3px;
      background-color: var(--color-primary);
      border-radius: 2px;
    }

    @media (min-width: 992px) {
      .header__nav { display: flex; }
      .header__cta { display: inline-flex; }
      .header__mobile-toggle { display: none; }
    }

    /* ========================================
       COMPONENT: MOBILE MENU (Full Screen Overlay)
    ======================================== */
    .mobile-menu {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: var(--color-primary);
      z-index: 9999;
      transform: translateY(100%);
      transition: transform var(--transition-medium);
      overflow-y: auto;
      padding: 30px;
    }

    .mobile-menu.is-open {
      transform: translateY(0);
    }

    .mobile-menu__close {
      position: absolute;
      top: 20px;
      left: 20px;
      background: none;
      border: none;
      color: var(--color-white);
      font-size: 2rem;
      cursor: pointer;
    }

    .mobile-menu__content {
      display: flex;
      flex-direction: column;
      gap: 40px;
      padding-top: 60px;
    }

    @media (min-width: 768px) {
      .mobile-menu__content {
        flex-direction: row;
        justify-content: space-between;
        padding: 80px 60px;
      }
    }

    .mobile-menu__item {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu__item-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .mobile-menu__item--simple {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu__link {
      display: block;
      padding: 12px 0;
      color: var(--color-white);
      font-size: 1.25rem;
      font-weight: 600;
      flex: 1;
    }

    .mobile-menu__link:hover {
      color: var(--color-accent);
    }

    .mobile-menu__toggle {
      background: none;
      border: none;
      color: var(--color-white);
      padding: 12px 0 12px 20px;
      font-size: 1.25rem;
      cursor: pointer;
      transition: transform var(--transition-fast);
    }

    .mobile-menu__toggle:hover {
      color: var(--color-accent);
    }

    .mobile-menu__toggle.is-open {
      transform: rotate(180deg);
    }

    .mobile-menu__submenu {
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--transition-medium);
      padding-left: 20px;
    }

    .mobile-menu__submenu.is-open {
      max-height: 300px;
    }

    .mobile-menu__submenu-link {
      display: block;
      padding: 10px 0;
      color: rgba(255, 255, 255, 0.85);
      font-size: 1rem;
      font-weight: 400;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mobile-menu__submenu-link:last-child {
      border-bottom: none;
    }

    .mobile-menu__submenu-link:hover {
      color: var(--color-accent);
    }

    .mobile-menu__locations {
      color: var(--color-white);
    }

    .mobile-menu__location {
      margin-bottom: 25px;
    }

    .mobile-menu__location:last-child {
      margin-bottom: 0;
    }

    .mobile-menu__location-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--color-white);
      margin-bottom: 5px;
    }

    .mobile-menu__location p {
      font-size: 0.95rem;
      margin-bottom: 3px;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.5;
    }

    .mobile-menu__location a {
      color: var(--color-accent);
    }

    .mobile-menu__location a:hover {
      color: var(--color-secondary);
    }

    /* ========================================
       COMPONENT: PAGE HERO
    ======================================== */
    .page-hero {
      background-color: var(--color-primary);
      padding: 60px 0;
      position: relative;
      overflow: hidden;
    }

    .page-hero .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      z-index: 2;
    }

    .page-hero__content { max-width: 700px; }

    .page-hero__title {
      color: var(--color-white);
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 700;
      margin-bottom: 10px;
    }

    .page-hero__subtitle {
      color: var(--color-accent);
      font-size: clamp(1.25rem, 3vw, 1.75rem);
      font-weight: 500;
    }

    .page-hero__bee {
      position: absolute;
      right: calc(-5% + 100px);
      top: 50%;
      transform: translateY(-50%);
      height: 300px;
      width: auto;
      opacity: 1;
      z-index: 1;
      pointer-events: none;
    }

    @media (max-width: 768px) {
      .page-hero__bee {
        height: 200px;
        right: 0;
        top: auto;
        bottom: -85px;
        transform: none;
      }
    }

    /* ========================================
       COMPONENT: BREADCRUMB BAR
    ======================================== */
    .breadcrumb-bar {
      background-color: var(--color-bg-light);
      padding: 15px 0;
      border-bottom: 1px solid #e0e0e0;
    }

    .breadcrumb {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      font-size: 0.9rem;
      color: var(--color-text-light);
    }

    .breadcrumb__item {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .breadcrumb__link {
      color: var(--color-text-light);
      transition: color var(--transition-fast);
    }

    .breadcrumb__link:hover { color: var(--color-secondary); }

    .breadcrumb__separator { color: #ccc; font-size: 0.8rem; }

    .breadcrumb__current {
      color: var(--color-primary);
      font-weight: 600;
    }

    /* ========================================
       COMPONENT: CONTENT SECTIONS
    ======================================== */
    .content-section { padding: 80px 0; }
    .content-section--alt { background-color: var(--color-bg-light); }
    .content-section--blue { background-color: var(--color-bg-blue); }

    /* ========================================
       COMPONENT: CONTENT GRID (Text + Image)
    ======================================== */
    .content-grid {
      display: grid;
      gap: 50px;
      align-items: center;
    }

    @media (min-width: 768px) {
      .content-grid { grid-template-columns: 1fr 1fr; }
      .content-grid--reverse .content-grid__image { order: -1; }
    }

    .content-grid__content h2 { margin-bottom: 20px; }
    .content-grid__content h3 {
      margin-bottom: 15px;
      margin-top: 25px;
      color: var(--color-secondary);
    }
    .content-grid__content p {
      color: #333;
      margin-bottom: 15px;
      font-size: 1.25rem;
      line-height: 1.8;
    }

    .content-grid__image {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    .content-grid__image img {
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    /* ========================================
       COMPONENT: CONTENT FULL (Full Width Text)
    ======================================== */
    .content-full { padding: 80px 0; }
    .content-full--alt { background-color: var(--color-bg-light); }

    .content-full__inner {
      max-width: 900px;
      margin: 0 auto;
    }

    .content-full h2 { margin-bottom: 25px; }
    .content-full h3 {
      margin-bottom: 15px;
      margin-top: 30px;
      color: var(--color-secondary);
    }
    .content-full p {
      color: #333;
      margin-bottom: 15px;
      font-size: 1.25rem;
      line-height: 1.8;
    }

    /* ========================================
       COMPONENT: BULLET LISTS
    ======================================== */
    .bullet-list { margin: 20px 0; }

    .bullet-list li {
      padding-left: 25px;
      position: relative;
      margin-bottom: 10px;
      font-size: 1.1rem;
      line-height: 1.7;
      color: #333;
    }

    .bullet-list li::before {
      content: '•';
      position: absolute;
      left: 0;
      color: var(--color-secondary);
      font-weight: bold;
    }

    .bullet-list--caution li::before { color: var(--color-accent); }

    /* ========================================
       COMPONENT: CONTENT CALLOUT (Light Blue BG)
    ======================================== */
    .content-callout {
      padding: 80px 0;
      background-color: var(--color-bg-blue);
    }

    .content-callout__grid {
      display: grid;
      gap: 40px;
      align-items: center;
    }

    @media (min-width: 768px) {
      .content-callout__grid { grid-template-columns: 1fr 1fr; }
    }

    .content-callout__content h2 { margin-bottom: 20px; }
    .content-callout__content h3 { margin-bottom: 15px; margin-top: 25px; }
    .content-callout__content p {
      color: #333;
      font-size: 1.25rem;
      line-height: 1.8;
    }

    .content-callout__image img {
      width: 100%;
      height: auto;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
    }

    /* ========================================
       COMPONENT: CONTENT CTA (Navy Background)
    ======================================== */
    .content-cta {
      padding: 100px 0;
      background-color: var(--color-primary);
    }

    .content-cta__grid {
      display: grid;
      gap: 50px;
      align-items: center;
    }

    @media (min-width: 768px) {
      .content-cta__grid { grid-template-columns: 1fr 1fr; }
    }

    .content-cta__content { color: var(--color-white); }

    .content-cta__bee {
      max-width: 300px;
      margin-bottom: 25px;
    }

    .content-cta__tagline {
      font-size: clamp(1.5rem, 4vw, 2rem);
      font-weight: 700;
      margin-bottom: 25px;
      line-height: 1.4;
      color: var(--color-white);
    }

    .content-cta__content h3 {
      color: var(--color-white);
      margin: 25px 0 15px;
    }

    .content-cta__content p {
      margin-bottom: 15px;
      opacity: 0.95;
      line-height: 1.7;
      color: var(--color-white) !important;
      font-size: 1.25rem;
    }

    .content-cta__content a { color: var(--color-accent); }
    .content-cta__content a:hover { color: var(--color-white); }

    .content-cta__image {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }


    /* Fix bullet list in navy CTA sections */
    .content-cta__content .bullet-list li {
        color: var(--color-white);
    }

    .content-cta__content .bullet-list li::before {
        color: var(--color-white);
    }

    /* Ensure btn-primary text is white in CTA */
    .content-cta .btn-primary {
        color: var(--color-white) !important;
    }
    /* ========================================
       COMPONENT: LOCATION CARDS
    ======================================== */
    .block-locations { padding: 80px 0; }
    .block-locations--alt { background-color: var(--color-bg-light); }

    .block-locations__header {
      text-align: center;
      margin-bottom: 60px;
    }

    .block-locations__header h2 { margin-bottom: 10px; }

    .block-locations__grid { display: grid; gap: 30px; }

    @media (min-width: 768px) {
      .block-locations__grid { grid-template-columns: repeat(3, 1fr); }
    }

    .location-card {
      background: var(--color-white);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: all var(--transition-medium);
    }

    .location-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }

    .location-card__image {
      aspect-ratio: 16/9;
      overflow: hidden;
    }

    .location-card__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform var(--transition-medium);
    }

    .location-card:hover .location-card__image img { transform: scale(1.05); }

    .location-card__content { padding: 25px; }

    .location-card__title {
      font-size: 1.25rem;
      margin-bottom: 15px;
      color: var(--color-primary);
    }

    .location-card__title a { color: inherit; }
    .location-card__title a:hover { color: var(--color-secondary); }

    .location-card__address {
      font-size: 1rem;
      color: var(--color-text-light);
      margin-bottom: 15px;
      line-height: 1.6;
    }

    .location-card__hours {
      font-size: 0.9rem;
      color: var(--color-text-light);
      margin-bottom: 20px;
    }

    .location-card__hours strong { color: var(--color-primary); }

    .location-card__actions { display: flex; gap: 10px; flex-wrap: wrap; }

    .location-card__btn {
      flex: 1;
      min-width: 120px;
      padding: 10px 15px;
      text-align: center;
      font-size: 0.85rem;
      font-weight: 600;
      border-radius: var(--radius-sm);
      transition: all var(--transition-fast);
    }

    .location-card__btn--primary {
      background: var(--color-accent);
      color: var(--color-white);
    }

    .location-card__btn--primary:hover {
      background: #d99b03;
      color: var(--color-white);
    }

    .location-card__btn--secondary {
      background: var(--color-bg-light);
      color: var(--color-primary);
    }

    .location-card__btn--secondary:hover {
      background: var(--color-primary);
      color: var(--color-white);
    }

    .location-card__name {
      font-size: 1.25rem;
      margin-bottom: 15px;
      color: var(--color-primary);
      font-weight: 700;
    }

    .location-card__phone {
      margin-bottom: 8px;
    }

    .location-card__phone a {
      color: var(--color-secondary);
      font-weight: 600;
    }

    .location-card__fax {
      font-size: 0.9rem;
      color: var(--color-text-light);
      margin-bottom: 8px;
    }

    .location-card__email {
      font-size: 0.85rem;
      margin-bottom: 15px;
      word-break: break-all;
    }

    .location-card__email a {
      color: var(--color-secondary);
    }

    .location-card__email a:hover {
      color: var(--color-primary);
    }

    /* Mobile Location Jump Nav */
    .mobile-location-nav {
      display: none;
      padding: 1rem 0;
    }

    .mobile-location-nav .container {
      display: flex;
      gap: 10px;
    }

    .mobile-location-nav__btn {
      flex: 1;
      text-align: center;
      padding: 12px 10px;
      background: var(--color-primary);
      color: var(--color-white);
      border-radius: var(--radius-sm);
      font-size: 0.9rem;
      font-weight: 600;
      transition: background var(--transition-fast);
    }

    .mobile-location-nav__btn:hover {
      background: var(--color-secondary);
      color: var(--color-white);
    }

    @media (max-width: 767px) {
      .mobile-location-nav {
        display: block;
      }
    }

    /* ========================================
       COMPONENT: REVIEWS SECTION
    ======================================== */
    .block-reviews {
      padding: 80px 0;
      background-color: var(--color-bg-light);
    }

    .block-reviews__inner {
      text-align: center;
      max-width: 700px;
      margin: 0 auto;
    }

    .block-reviews__stars {
      font-size: 2.5rem;
      color: var(--color-accent);
      margin-bottom: 20px;
      letter-spacing: 5px;
    }

    .block-reviews__title {
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      margin-bottom: 20px;
    }

    .block-reviews__text {
      font-size: 1.25rem;
      color: #333;
      margin-bottom: 30px;
      line-height: 1.8;
    }

    .block-reviews__cta { margin-bottom: 25px; }

    .block-reviews__rating {
      font-size: 1.1rem;
      color: var(--color-text-light);
    }

    .block-reviews__rating strong {
      color: var(--color-accent);
      font-weight: 700;
    }

    /* Screen reader only - hidden from visitors, visible to bots */
    .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;
    }

    /* ========================================
       COMPONENT: FAQ SECTION
    ======================================== */
    .block-faq { padding: 80px 0; }
    .block-faq--alt { background-color: var(--color-bg-light); }

    .block-faq__header {
      text-align: center;
      margin-bottom: 50px;
    }

    .block-faq__header h2 { margin-bottom: 15px; }

    .block-faq__list {
      max-width: 800px;
      margin: 0 auto;
    }

    .faq-item { border-bottom: 1px solid #e0e0e0; }
    .faq-item:first-child { border-top: 1px solid #e0e0e0; }

    .faq-item__question {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 25px 0;
      background: none;
      border: none;
      text-align: left;
      font-family: var(--font-family);
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--color-primary);
      cursor: pointer;
      transition: color var(--transition-fast);
    }

    .faq-item__question:hover { color: var(--color-secondary); }

    .faq-item__icon {
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--color-secondary);
      transition: transform var(--transition-fast);
    }

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

    .faq-item__answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--transition-medium), padding var(--transition-medium);
    }

    .faq-item.is-open .faq-item__answer {
      max-height: 500px;
      padding-bottom: 25px;
    }

    .faq-item__answer p {
      color: #333;
      font-size: 1.1rem;
      line-height: 1.8;
    }

    /* ========================================
       COMPONENT: CONTACT CTA (Blue Background)
    ======================================== */
    .block-contact-cta {
      padding: 80px 0;
      background-color: var(--color-bg-blue);
    }

    .block-contact-cta__inner {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

    .block-contact-cta__inner h2 { margin-bottom: 20px; }
    .block-contact-cta__inner p { font-size: 1.25rem; margin-bottom: 15px; }

    .block-contact-cta__details { margin: 30px 0; font-size: 1.1rem; }
    .block-contact-cta__details p { margin-bottom: 10px; font-size: 1.1rem; }
    .block-contact-cta__details strong { color: var(--color-primary); }
    .block-contact-cta__details a { color: var(--color-secondary); }

    /* ========================================
       COMPONENT: TAGLINE
    ======================================== */
    .tagline {
      padding: 40px 0;
      text-align: center;
      background-color: var(--color-white);
      font-style: italic;
      font-size: 1.25rem;
      color: var(--color-primary);
    }

    /* ========================================
       COMPONENT: FOOTER
    ======================================== */
    .footer {
      background-color: var(--color-primary);
      color: var(--color-white);
      padding: 60px 0 30px;
    }

    .footer__logo { display: block; margin-bottom: 15px; }
    .footer__logo img { height: 72px; width: auto; }

    @media (max-width: 768px) {
      .footer__logo { display: flex; justify-content: center; }
    }

    .footer__grid {
      display: grid;
      gap: 40px;
      margin-bottom: 40px;
      text-align: center;
    }

    @media (min-width: 768px) {
      .footer__grid { grid-template-columns: repeat(3, 1fr); text-align: left; }
    }

    .footer__column h3 {
      color: var(--color-accent);
      font-size: 1.1rem;
      margin-bottom: 20px;
    }

    .footer__link {
      display: block;
      color: var(--color-white);
      opacity: 0.9;
      margin-bottom: 10px;
      transition: opacity var(--transition-fast);
    }

    .footer__link:hover { opacity: 1; color: var(--color-accent); }

    .footer__social {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-bottom: 40px;
    }

    .footer__social-link {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-white);
      transition: all var(--transition-fast);
    }

    .footer__social-link:hover {
      background: var(--color-accent);
      color: var(--color-primary);
      transform: translateY(-3px);
    }

    .footer__social-link svg { width: 20px; height: 20px; }

    .footer__copyright {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer__copyright p {
      color: var(--color-white);
      opacity: 0.7;
      font-size: 0.9rem;
      margin-bottom: 10px;
    }

    .footer__legal {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .footer__legal a {
      color: var(--color-white);
      opacity: 0.7;
      font-size: 0.85rem;
    }

    .footer__legal a:hover { opacity: 1; color: var(--color-accent); }

    /* ========================================
       COMPONENT: MOBILE ACTION BAR
    ======================================== */
    .mobile-action-bar {
      display: flex;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 998;
      background: var(--color-white);
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }

    .mobile-action-btn {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 10px;
      font-family: var(--font-family);
      font-size: 0.9rem;
      font-weight: 600;
      text-decoration: none;
      border: none;
      transition: background-color var(--transition-fast);
    }

    .mobile-action-btn svg { width: 20px; height: 20px; flex-shrink: 0; }

    .mobile-action-btn--phone {
      background-color: var(--color-secondary);
      color: var(--color-white);
    }

    .mobile-action-btn--phone:hover {
      background-color: #2d929b;
      color: var(--color-white);
    }

    .mobile-action-btn--location {
      background-color: var(--color-accent);
      color: var(--color-white);
    }

    .mobile-action-btn--location:hover {
      background-color: #d99b03;
      color: var(--color-white);
    }

    @media (min-width: 768px) {
      .mobile-action-bar { display: none; }
    }

    @media (max-width: 767px) {
      .footer { padding-bottom: 80px; }
    }

    /* ========================================
       UTILITY: Component Section Divider (for demo)
    ======================================== */
    .component-demo {
      border: 3px dashed var(--color-secondary);
      margin: 40px 0;
      padding: 20px;
      position: relative;
    }
    .component-demo::before {
      content: attr(data-component);
      position: absolute;
      top: -12px;
      left: 20px;
      background: var(--color-secondary);
      color: white;
      padding: 2px 12px;
      font-size: 0.8rem;
      font-weight: 600;
      border-radius: 4px;
    }

    /* ========================================
       COMPONENT: TABLES (All Types)
    ======================================== */
    .table-wrapper {
      overflow-x: auto;
      margin: 20px 0;
    }

    /* Basic Table */
    .content-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 1rem;
    }

    .content-table th,
    .content-table td {
      padding: 15px;
      text-align: left;
      border-bottom: 1px solid #e0e0e0;
    }

    .content-table th {
      background-color: var(--color-primary);
      color: var(--color-white);
      font-weight: 600;
    }

    .content-table td {
      color: #333;
    }

    .content-table.table--striped tbody tr:nth-child(even) {
      background-color: var(--color-bg-light);
    }

    .content-table.table--compact th,
    .content-table.table--compact td {
      padding: 10px;
    }

    /* Comparison Table */
    .comparison-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 1rem;
    }

    .comparison-table th,
    .comparison-table td {
      padding: 15px;
      text-align: center;
      border: 1px solid #e0e0e0;
    }

    .comparison-table th {
      background-color: var(--color-bg-light);
      font-weight: 600;
      color: var(--color-primary);
    }

    .comparison-table .comparison-table__feature {
      text-align: left;
      font-weight: 500;
    }

    .comparison-table__option--highlight {
      background-color: rgba(52, 167, 177, 0.1);
    }

    .comparison-table thead .comparison-table__option--highlight {
      background-color: var(--color-secondary);
      color: var(--color-white);
    }

    /* Pricing Table */
    .pricing-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 1rem;
    }

    .pricing-table th,
    .pricing-table td {
      padding: 15px;
      text-align: left;
      border-bottom: 1px solid #e0e0e0;
    }

    .pricing-table th {
      background-color: var(--color-primary);
      color: var(--color-white);
      font-weight: 600;
    }

    .pricing-table__service {
      font-weight: 500;
      color: var(--color-primary);
    }

    .pricing-table__price {
      font-weight: 600;
      color: var(--color-secondary);
    }

    .pricing-table__note {
      color: var(--color-text-light);
      font-size: 0.9rem;
    }

    .pricing-table__disclaimer {
      margin-top: 15px;
      font-size: 0.9rem;
      color: var(--color-text-light);
      font-style: italic;
    }

    /* Hours Table */
    .hours-table-wrapper {
      max-width: 400px;
    }

    .hours-table__title {
      color: var(--color-primary);
      font-size: 1.1rem;
      margin-bottom: 15px;
    }

    .hours-table {
      width: 100%;
      border-collapse: collapse;
    }

    .hours-table td {
      padding: 10px 0;
      border-bottom: 1px solid #e0e0e0;
    }

    .hours-table__day {
      font-weight: 500;
      color: var(--color-primary);
    }

    .hours-table__time {
      text-align: right;
      color: #333;
    }

    .hours-table__closed td {
      color: var(--color-text-light);
    }

    /* Features Table */
    .features-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 1rem;
    }

    .features-table th,
    .features-table td {
      padding: 15px;
      text-align: center;
      border: 1px solid #e0e0e0;
    }

    .features-table th {
      background-color: var(--color-primary);
      color: var(--color-white);
      font-weight: 600;
    }

    .features-table th:first-child {
      text-align: left;
    }

    .features-table td:first-child {
      text-align: left;
      font-weight: 500;
    }

    .features-table__check {
      font-size: 1.25rem;
    }

    .check-yes {
      color: var(--color-secondary);
      font-weight: bold;
    }

    .check-no {
      color: #cc4444;
      font-weight: bold;
    }

    /* ========================================
       COMPONENT: SERVICE LIST (compact, no images)
    ======================================== */
    .service-list {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .service-list__item {
      display: flex;
      align-items: baseline;
      gap: 12px;
      padding: 16px 0;
      border-bottom: 1px solid #e5e7eb;
      text-decoration: none;
      color: inherit;
      transition: background 0.2s;
    }
    .service-list__item:first-child {
      border-top: 1px solid #e5e7eb;
    }
    .service-list__item:hover {
      background: rgba(59, 130, 182, 0.04);
      padding-left: 8px;
    }
    .service-list__title {
      font-weight: 600;
      color: var(--color-primary, #1a365d);
      white-space: nowrap;
      min-width: 180px;
    }
    .service-list__desc {
      color: var(--color-text, #4a5568);
      font-size: 0.92rem;
      flex: 1;
    }
    .service-list__arrow {
      color: var(--color-accent, #4a90d9);
      font-weight: 600;
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    @media (max-width: 768px) {
      .service-list__item {
        flex-direction: column;
        gap: 4px;
      }
      .service-list__title {
        min-width: unset;
      }
      .service-list__arrow {
        display: none;
      }
    }

    /* ========================================
       COMPONENT: SERVICE CARDS
    ======================================== */
    .service-cards-grid {
      display: grid;
      gap: 30px;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .service-card {
      background: var(--color-white);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
      transition: all var(--transition-medium);
      overflow: hidden;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }

    .service-card__image {
      position: relative;
      height: 200px;
      overflow: hidden;
    }

    .service-card__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform var(--transition-medium);
    }

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

    .service-card__content {
      padding: 25px;
      text-align: center;
    }

    .service-card__icon {
      font-size: 2.5rem;
      margin-bottom: 10px;
    }

    .service-card__title {
      font-size: 1.25rem;
      margin-bottom: 10px;
      color: var(--color-primary);
    }

    .service-card__title a {
      color: inherit;
    }

    .service-card__title a:hover {
      color: var(--color-secondary);
    }

    .service-card__description {
      font-size: 0.95rem;
      color: var(--color-text-light);
      margin-bottom: 15px;
      line-height: 1.6;
    }

    .service-card__link {
      font-weight: 600;
      color: var(--color-secondary);
    }

    .service-card__link:hover {
      color: var(--color-accent);
    }

    /* ========================================
       COMPONENT: TEAM GRID
    ======================================== */
    .block-team-grid {
      padding: 60px 0;
    }

    .block-team-grid + .block-team-grid {
      border-top: 1px solid #e5e7eb;
    }

    .team-grid__heading {
      text-align: center;
      margin-bottom: 40px;
      color: var(--color-primary);
    }

    .team-grid {
      display: grid;
      gap: 30px;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .team-card {
      text-align: center;
      transition: transform var(--transition-medium);
    }

    .team-card:hover {
      transform: translateY(-3px);
    }

    .team-card__image {
      width: 180px;
      height: 180px;
      margin: 0 auto 15px;
      border-radius: 50%;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      border: 3px solid var(--color-accent);
    }

    .team-card__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }

    .team-card__name {
      font-size: 1rem;
      font-weight: 700;
      color: var(--color-primary);
      margin-bottom: 4px;
    }

    .team-card__title {
      font-size: 0.85rem;
      color: var(--color-text-light);
      margin: 0 0 2px;
    }

    .team-card__location {
      font-size: 0.8rem;
      color: var(--color-secondary, #3b82b6);
      margin: 0;
      font-style: italic;
    }

    @media (max-width: 768px) {
      .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 20px;
      }

      .team-card__image {
        width: 130px;
        height: 130px;
      }
    }

    /* ========================================
       COMPONENT: IMAGE WITH CAPTION
    ======================================== */
    .content-image {
      margin: 30px 0;
      max-width: 800px;
    }

    .content-image img {
      width: 100%;
      height: auto;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
    }

    .content-image figcaption {
      margin-top: 10px;
      font-size: 0.9rem;
      color: var(--color-text-light);
      text-align: center;
      font-style: italic;
    }

    /* ========================================
       COMPONENT: VIDEO/HERO ROW
    ======================================== */
    .block-video-row {
      position: relative;
      min-height: 500px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .block-video-row__media {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .block-video-row__media video,
    .block-video-row__media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* YouTube Background Video */
    #yt-player-wrap {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      overflow: hidden;
    }

    #yt-player-wrap iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 300%;
      height: 300%;
      min-width: 177.78vh; /* 16:9 ratio */
      min-height: 56.25vw;  /* 16:9 ratio */
      transform: translate(-50%, -50%);
    }

    .block-video-row__poster {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      transition: opacity 1s ease;
    }

    .block-video-row__overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to right, rgba(0, 15, 38, 0.7) 0%, rgba(0, 15, 38, 0.3) 50%, transparent 100%);
      z-index: 2;
    }

    .block-video-row__content {
      position: relative;
      z-index: 3;
      max-width: 600px;
      padding: 60px 0;
    }

    .block-video-row__subtitle {
      color: var(--color-secondary);
      font-size: 1.1rem;
      font-weight: 600;
      font-style: italic;
      margin-bottom: 15px;
    }

    .block-video-row__title {
      color: var(--color-white);
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 30px;
    }

    .block-video-row .btn-group {
      margin-top: 30px;
    }

    /* ========================================
       COMPONENT: PARALLAX SECTION
    ======================================== */
    .block-parallax {
      position: relative;
      min-height: 600px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .block-parallax__bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 120%;
      z-index: 1;
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
    }

    @media (max-width: 768px) {
      .block-parallax__bg {
        background-attachment: scroll;
      }
    }

    .block-parallax__card {
      position: relative;
      z-index: 2;
      background: var(--color-white);
      border-radius: var(--radius-lg);
      padding: 50px;
      max-width: 550px;
      box-shadow: var(--shadow-lg);
    }

    @media (max-width: 576px) {
      .block-parallax__card {
        padding: 30px;
        margin: 20px;
      }
    }

    .block-parallax__title {
      color: var(--color-primary);
      font-size: clamp(1.75rem, 4vw, 2.25rem);
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 25px;
    }

    .block-parallax__list {
      margin-bottom: 30px;
    }

    .block-parallax__list-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 20px;
      font-size: 1rem;
      line-height: 1.6;
      color: #333;
    }

    .block-parallax__list-item:last-child {
      margin-bottom: 0;
    }

    .block-parallax__check {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      background-color: var(--color-secondary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-white);
      font-size: 0.8rem;
      margin-top: 2px;
    }

    .block-parallax__list-item strong {
      color: var(--color-primary);
    }

    /* ========================================
       COMPONENT: EXPERT ADVICE (Articles)
    ======================================== */
    .block-articles {
      padding: 80px 0;
    }

    .block-articles--alt {
      background-color: var(--color-bg-light);
    }

    .block-articles__header {
      text-align: center;
      margin-bottom: 50px;
    }

    .block-articles__header h2 {
      margin-bottom: 10px;
    }

    .block-articles__header p {
      color: var(--color-text-light);
      font-size: 1.1rem;
    }

    .block-articles__grid {
      display: grid;
      gap: 30px;
    }

    @media (min-width: 768px) {
      .block-articles__grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .article-card {
      background: var(--color-white);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: all var(--transition-medium);
      display: flex;
      flex-direction: column;
      border-left: 4px solid var(--color-secondary);
    }

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

    .article-card__content {
      padding: 25px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .article-card__category {
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: var(--color-secondary);
      margin-bottom: 10px;
    }

    .article-card__title {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--color-primary);
      margin-bottom: 12px;
      line-height: 1.4;
    }

    .article-card__title a {
      color: inherit;
    }

    .article-card__title a:hover {
      color: var(--color-secondary);
    }

    .article-card__excerpt {
      font-size: 0.95rem;
      color: var(--color-text-light);
      line-height: 1.6;
      margin-bottom: 15px;
      flex-grow: 1;
    }

    .article-card__meta {
      font-size: 0.85rem;
      color: var(--color-text-light);
      padding-top: 15px;
      border-top: 1px solid #eee;
      margin-top: auto;
    }

    .article-card__read-time {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .article-card__link {
      font-weight: 600;
      color: var(--color-secondary);
      font-size: 0.9rem;
    }

    .article-card__link:hover {
      color: var(--color-accent);
    }

    .block-articles__cta {
      text-align: center;
      margin-top: 50px;
    }

    /* ========================================
       RELATED LINKS SECTION
    ======================================== */
    .block-related-links {
      padding: 60px 0;
      background-color: var(--color-light-gray);
      border-top: 1px solid #e9ecef;
    }

    .block-related-links h3 {
      text-align: center;
      margin-bottom: 30px;
      color: var(--color-primary);
    }

    .related-links__grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
      max-width: 900px;
      margin: 0 auto;
    }

    .related-links__grid a {
      display: inline-block;
      padding: 10px 20px;
      background: var(--color-white);
      border-radius: var(--radius-md);
      color: var(--color-primary);
      font-size: 0.9rem;
      font-weight: 500;
      box-shadow: var(--shadow-sm);
      transition: all var(--transition-fast);
    }

    .related-links__grid a:hover {
      background: var(--color-secondary);
      color: var(--color-white);
      transform: translateY(-2px);
    }

    /* ========================================
       COMPONENT: SERVICES JUMP NAV
       (Reuses .related-links__grid pill styles)
    ======================================== */
    .services-jump-nav {
      padding: 50px 0;
      background-color: var(--color-bg-light);
      border-bottom: 1px solid #e9ecef;
    }

    .services-jump-nav h3 {
      text-align: center;
      margin-bottom: 25px;
      color: var(--color-primary);
    }

    /* Offset anchor targets to account for sticky header */
    [id="general"],
    [id="cosmetic"],
    [id="restorative"],
    [id="surgery"],
    [id="emergency"],
    [id="sedation"],
    [id="family"],
    [id="sleep"],
    [id="technology"] {
      scroll-margin-top: 100px;
    }
