
    :root {
      --navy: #0B1F3A;
      --teal: #0E7C86;
      --teal-lt: #13A8B4;
      --teal-pale: #E8F6F8;
      --off-white: #F4F9FA;
      --white: #ffffff;
      --text: #1a2b3c;
      --gray: #6b7f93;
      --gray-lt: #dce5ee;
    }

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

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
    }

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

    /* ── TOPBAR ── */
    .topbar {
      background: var(--navy);
      padding: 8px 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: .82rem;
      color: rgba(255,255,255,.7);
    }
    .topbar a { color: rgba(255,255,255,.7); transition: color .2s; }
    .topbar a:hover { color: var(--teal-lt); }
    .topbar-left { display: flex; align-items: center; gap: 6px; }
    .topbar-item {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 0 16px;
    }
    .topbar-item:first-child { padding-left: 0; }
    .topbar-item svg { opacity: .7; flex-shrink: 0; }
    .topbar-item:hover svg { opacity: 1; }
    .topbar-divider {
      width: 1px; height: 14px;
      background: rgba(255,255,255,.18);
    }
    .topbar-right { display: flex; align-items: center; gap: 4px; }
    .topbar-social {
      margin-left: 0; display: flex; align-items: center; padding: 4px;
      color: rgba(255,255,255,.7); transition: color .2s;
    }
    .topbar-social:hover { color: var(--teal-lt); }
    .topbar-social svg { transition: opacity .2s; }
    .topbar-social:hover svg { opacity: 1; }

    /* Phone ring animation */
    .phone-ring {
      display: inline-block; position: relative;
      animation: phone-shake .6s ease-in-out infinite;
    }
    .phone-ring::before, .phone-ring::after {
      content: ''; position: absolute; border-radius: 50%;
      border: 2px solid var(--teal-lt); opacity: 0;
      top: 50%; left: 50%;
      transform: translate(-50%,-50%) scale(0);
    }
    .phone-ring::before { animation: sound-wave 1.4s ease-out .2s infinite; }
    .phone-ring::after  { animation: sound-wave 1.4s ease-out .7s infinite; }
    @keyframes phone-shake {
      0%,100% { transform: rotate(0deg); }
      15%  { transform: rotate(-15deg); }
      30%  { transform: rotate(12deg); }
      45%  { transform: rotate(-10deg); }
      60%  { transform: rotate(8deg); }
      75%  { transform: rotate(-5deg); }
      90%  { transform: rotate(3deg); }
    }
    @keyframes sound-wave {
      0%   { width: 10px; height: 10px; opacity: .8; transform: translate(-50%,-50%) scale(0); }
      100% { width: 40px; height: 40px; opacity: 0;  transform: translate(-50%,-50%) scale(1); }
    }

    /* ── HEADER / NAV ── */
    .header-wrap {
      position: sticky; top: 0; z-index: 1000;
      background: var(--navy);
    }
    header{background:#fff;backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);border-bottom:1px solid rgba(11,31,58,.08);margin:0;border-radius:0}
    .header-inner {
      display: flex; align-items: center;
      justify-content: space-between;
      padding: 14px 5%;
    }
    .logo {
      display: flex; align-items: center;
      cursor: pointer;
    }
    .logo-img {
      height: 80px;
      width: auto;
      object-fit: contain;
      display: block;
    }
    nav { display: flex; align-items: center; gap: 0; }
    .nav-item { position: relative; }
    .nav-link {
      padding: 10px 16px; font-size: .88rem;
      font-weight: 500; color: var(--navy);
      display: block; transition: color .2s; white-space: nowrap;
    }
    .nav-link:hover, .nav-link.active { color: var(--teal); }
    .nav-link.active::after {
      content: ''; position: absolute; bottom: 0;
      left: 16px; right: 16px; height: 2px;
      background: var(--teal); border-radius: 2px;
    }
    .dropdown {
      position: absolute; top: 100%; left: 0;
      background: var(--white);
      border: 1px solid var(--gray-lt);
      border-radius: 8px;
      box-shadow: 0 8px 32px rgba(11,31,58,.12);
      min-width: 240px;
      opacity: 0; pointer-events: none;
      transform: translateY(8px);
      transition: all .2s; z-index: 100;
    }
    .nav-item:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
    .dropdown a {
      display: block; padding: 10px 18px;
      font-size: .86rem; color: var(--navy);
      border-bottom: 1px solid var(--gray-lt);
      transition: background .15s, color .15s;
    }
    .dropdown a:last-child { border-bottom: none; }
    .dropdown a:hover { background: var(--teal-pale); color: var(--teal); }
    .header-cta { margin-left: 12px; }
    .btn-primary {
      display: inline-block; background: var(--teal); color: var(--white);
      padding: 11px 24px; border-radius: 6px; font-size: .88rem;
      font-weight: 600; letter-spacing: .03em;
      transition: background .2s, transform .2s;
    }
    .btn-primary:hover { background: var(--teal-lt); transform: translateY(-2px); }
    .btn-outline {
      display: inline-block; border: 2px solid var(--teal); color: var(--teal);
      padding: 9px 22px; border-radius: 6px; font-size: .88rem;
      font-weight: 600; transition: all .2s;
    }
    .btn-outline:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }

    /* ── PAGE HERO ── */
    .page-hero {
      padding: 140px 5% 130px;
      background: var(--navy);
      position: relative; overflow: hidden;
      background-image: url('../../../images/bes-hero.jpg');
      background-size: cover;
      background-position: center 30%;
      background-repeat: no-repeat;
    }
    .page-hero::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(90deg, rgba(11,31,58,.82) 0%, rgba(11,31,58,.55) 100%);
      pointer-events: none;
      z-index: 0;
    }
    .page-hero-inner {
      max-width: 1200px; margin: 0 auto; position: relative; z-index: 1;
    }
    .page-hero-eyebrow {
      font-size: 11px; font-weight: 600; letter-spacing: .18em;
      text-transform: uppercase; color: var(--teal-lt);
      margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
    }
    .page-hero-eyebrow::before {
      content: ''; display: block; width: 24px; height: 2px; background: var(--teal-lt);
    }
    .page-hero h1 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      color: var(--white); margin-bottom: 16px; line-height: 1.2;
    }
    .page-hero h1 em { font-style: italic; color: var(--teal-lt); }
    .page-hero-sub {
      font-size: 1.05rem; color: rgba(255,255,255,.72);
      max-width: 580px; line-height: 1.65;
    }

    /* ── SERVICES GRID ── */
    .services-section {
      padding: 80px 5% 100px;
      background: var(--white);
    }
    .services-inner { max-width: 1200px; margin: 0 auto; }

    .section-label {
      font-size: 11px; font-weight: 600; letter-spacing: .18em;
      text-transform: uppercase; color: var(--teal);
      display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
    }
    .section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--teal); }
    .section-title {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      color: var(--navy); margin-bottom: 48px; line-height: 1.2;
    }

    /* ── SERVICE CARD ── */
    .service-card {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      background: var(--white);
      border: 1px solid var(--gray-lt);
      border-radius: 16px;
      overflow: hidden;
      margin-bottom: 40px;
      transition: box-shadow .3s, transform .3s;
    }
    .service-card:hover {
      box-shadow: 0 16px 56px rgba(14,124,134,.13);
      transform: translateY(-4px);
    }
    .service-card.reverse { direction: rtl; }
    .service-card.reverse > * { direction: ltr; }

    .card-body {
      padding: 48px 44px;
      display: flex; flex-direction: column; justify-content: center;
    }
    .card-icon-row {
      display: flex; align-items: center; gap: 14px;
      margin-bottom: 20px;
    }
    .card-icon {
      width: 52px; height: 52px; flex-shrink: 0;
      background: var(--teal); border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 14px rgba(14,124,134,.3);
    }
    .card-icon svg { width: 26px; height: 26px; fill: none; stroke: white; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .card-eyebrow {
      font-size: 10px; font-weight: 700; letter-spacing: .15em;
      text-transform: uppercase; color: var(--teal);
    }
    .card-body h2 {
      font-family: 'DM Serif Display', serif;
      font-size: 1.45rem; color: var(--navy);
      margin-bottom: 8px; line-height: 1.25;
    }
    .card-tagline {
      font-size: .9rem; font-weight: 600; font-style: italic;
      color: var(--gray); margin-bottom: 18px;
    }
    .card-desc {
      font-size: .93rem; color: var(--text); line-height: 1.65;
      margin-bottom: 22px;
    }
    .card-features { list-style: none; margin-bottom: 24px; }
    .card-features li {
      font-size: .88rem; color: var(--text);
      padding: 5px 0 5px 20px; position: relative;
    }
    .card-features li::before {
      content: ''; position: absolute; left: 0; top: 11px;
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--teal-lt);
    }
    .card-checkmarks {
      display: flex; flex-wrap: wrap; gap: 8px 20px;
      margin-bottom: 28px;
    }
    .card-check {
      font-size: .82rem; font-weight: 600; color: var(--navy);
      display: flex; align-items: center; gap: 6px;
    }
    .card-check::before { content: '✔'; color: var(--teal); font-size: .9rem; }

    /* Card "Request Service" button — matches nav .header-cta.btn-primary styling */
    .card-cta {
      display: inline-flex; align-items: stretch; gap: 0;
      background: var(--teal); color: #fff;
      padding: 0; border-radius: 10px;
      font-size: .85rem; font-weight: 600; letter-spacing: .02em;
      text-decoration: none; border: none; overflow: hidden;
      align-self: flex-start; cursor: pointer;
      transition: background .25s ease, transform .15s ease;
    }
    .card-cta:hover { background: #0a666f; transform: translateY(-2px); }
    .card-cta span {
      padding: 12px 20px; color: #fff; display: inline-flex; align-items: center;
    }
    .card-cta::after {
      content: '\2192';
      display: inline-flex; align-items: center; justify-content: center;
      width: 44px; align-self: stretch;
      border-left: 1px solid rgba(255,255,255,.25);
      font-size: 1rem; color: #fff;
      transition: background .25s ease;
    }
    .card-cta:hover::after { background: rgba(255,255,255,.1); }

    /* Visual panel */
    .card-visual {
      background: var(--off-white);
      display: flex; align-items: center; justify-content: center;
      min-height: 320px; padding: 40px;
      position: relative; overflow: hidden;
    }
    .card-visual::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(14,124,134,.06) 0%, rgba(11,31,58,.04) 100%);
    }
    .visual-icon {
      width: 120px; height: 120px;
      background: var(--white);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 8px 32px rgba(14,124,134,.18);
      position: relative; z-index: 1;
    }
    .visual-icon svg {
      width: 60px; height: 60px;
      stroke: var(--teal); stroke-width: 1.5;
      fill: none; stroke-linecap: round; stroke-linejoin: round;
    }
    .visual-rings {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
    }
    .visual-rings span {
      position: absolute; border-radius: 50%;
      border: 1px solid rgba(14,124,134,.15);
    }
    .visual-rings span:nth-child(1) { width: 200px; height: 200px; }
    .visual-rings span:nth-child(2) { width: 280px; height: 280px; border-style: dashed; }
    .visual-rings span:nth-child(3) { width: 360px; height: 360px; }

    /* ── WHY STRIP ── */
    .why-strip {
      padding: 80px 0;
      background: var(--navy);
      position: relative; overflow: hidden;
    }
    .why-strip::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 50% 100% at 20% 50%, rgba(19,168,180,.1) 0%, transparent 60%);
    }
    .why-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 5%;
      position: relative; z-index: 1;
      display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: center;
    }
    .why-strip h2 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      color: var(--white); line-height: 1.25;
    }
    .why-strip h2 em { font-style: italic; color: var(--teal-lt); }
    .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
    .why-item h4 {
      font-size: .92rem; font-weight: 700; color: var(--white);
      margin-bottom: 6px; display: flex; align-items: center; gap: 8px;
    }
    .why-item h4::before { content: '✔'; color: var(--teal-lt); font-size: .9rem; }
    .why-item p { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.55; }

    /* ── CTA STRIP ── */
    .cta-strip {
      padding: 72px 5%;
      background: var(--teal);
      position: relative; overflow: hidden; text-align: center;
    }
    .cta-strip::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 120% at 50% 0%, rgba(255,255,255,.08) 0%, transparent 60%);
    }
    .cta-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
    .cta-strip h2 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(1.5rem, 2.5vw, 2.1rem);
      color: var(--white); margin-bottom: 12px;
    }
    .cta-strip p { font-size: .97rem; color: rgba(255,255,255,.82); margin-bottom: 32px; line-height: 1.6; }
    .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
    .btn-white {
      display: inline-block; background: var(--white); color: var(--teal);
      padding: 13px 30px; border-radius: 6px; font-size: .9rem;
      font-weight: 700; transition: all .2s;
    }
    .btn-white:hover { background: var(--teal-pale); transform: translateY(-2px); }
    .btn-outline-white {
      display: inline-block; border: 2px solid rgba(255,255,255,.6); color: var(--white);
      padding: 11px 28px; border-radius: 6px; font-size: .9rem;
      font-weight: 600; transition: all .2s;
    }
    .btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.12); }

    /* ── FOOTER ── */
    .footer {
      background: var(--navy); padding: 40px 5%;
      border-top: 1px solid rgba(255,255,255,.06);
    }
    .footer-inner {
      max-width: 1200px; margin: 0 auto;
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
    }
    .footer p { font-size: .8rem; color: rgba(255,255,255,.4); }
    .footer a { color: rgba(255,255,255,.4); font-size: .8rem; transition: color .2s; }
    .footer a:hover { color: var(--teal-lt); }
    .footer-links { display: flex; gap: 20px; }

    /* ── HAMBURGER ── */
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }

    /* ── RESPONSIVE ── */
    @media (max-width: 860px) {
      .service-card { grid-template-columns: 1fr; }
      .service-card.reverse { direction: ltr; }
      .card-visual { min-height: 200px; order: -1; }
      .why-inner { grid-template-columns: 1fr; gap: 36px; }
      .why-grid { grid-template-columns: 1fr; gap: 20px; }
      nav { display: none; }
      .hamburger { display: flex; }
      .header-cta { display: none; }
    }
    @media (max-width: 560px) {
      .card-body { padding: 32px 24px; }
      .topbar-right { display: none; }
      .topbar-divider { display: none; }
      .topbar-item:last-child { display: none; }
      .topbar { justify-content: center; }
    }
  [hidden]{display:none!important}@media(prefers-reduced-motion:reduce){*,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important;scroll-behavior:auto!important}}