  /* ==========================================================================
           1. GLOBAL STYLES & RESET
           ========================================================================== */
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  :root {
      --primary-navy: #0e2038;
      --primary-red: #d32f2f;
      --primary-red-hover: #b71c1c;
      --secondary-blue: #0288d1;
      --text-dark: #222222;
      --text-gray: #666666;
      --bg-light: #f4f6f9;
      --white: #ffffff;
      --border-color: #e0e0e0;
  }

  body {
      color: var(--text-dark);
      line-height: 1.6;
      background-color: var(--bg-light);
  }

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

  ul {
      list-style: none;
  }

  .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
  }

  /* ==========================================================================
           2. TOP ANNOUNCEMENT BAR
           ========================================================================== */
  .top-bar {
      background-color: var(--primary-navy);
      color: var(--white);
      font-size: 13px;
      padding: 8px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .top-bar .container {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 25px;
  }

  .top-bar-item {
      display: flex;
      align-items: center;
      gap: 8px;
  }

  .top-bar-item i {
      color: var(--primary-red);
  }

  /* ==========================================================================
           3. MAIN NAVIGATION
           ========================================================================== */
  .header {
      background-color: var(--white);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      position: sticky;
      top: 0;
      z-index: 1000;
  }

  .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 80px;
      gap: 16px;
  }

  .logo {
      display: flex;
      align-items: center;
      font-size: 24px;
      font-weight: 800;
      color: var(--primary-navy);
      letter-spacing: -0.5px;
  }

  .logo span {
      color: var(--primary-red);
  }

  .logo-icons {
      display: flex;
      gap: 3px;
      margin-left: 6px;
      font-size: 14px;
  }

  .logo-icons i {
      background: var(--primary-navy);
      color: var(--white);
      padding: 4px;
      border-radius: 50%;
      font-size: 10px;
  }

  .nav-menu {
      display: flex;
      align-items: center;
      gap: 25px;
  }

  .menu-toggle {
      display: none;
      appearance: none;
      border: 0;
      background: linear-gradient(180deg, #173b67 0%, #0e2747 100%);
      border-radius: 12px;
      width: 46px;
      height: 46px;
      padding: 0;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 4px;
      cursor: pointer;
      flex: 0 0 auto;
      box-shadow: 0 10px 22px rgba(14, 39, 71, 0.18);
  }

  .menu-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      background: var(--white);
      border-radius: 999px;
      transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-link {
      font-weight: 600;
      font-size: 15px;
      color: var(--text-dark);
      transition: color 0.3s;
  }

  .nav-link:hover,
  .nav-link.active {
      color: var(--primary-red);
  }

  .dropdown {
      position: relative;
  }

  .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: var(--white);
      min-width: 200px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      border-radius: 4px;
      display: none;
      flex-direction: column;
      padding: 10px 0;
      z-index: 100;
  }

  .dropdown:hover .dropdown-menu {
      display: flex;
  }

  .dropdown-menu a {
      padding: 8px 20px;
      font-size: 14px;
  }

  .dropdown-menu a:hover {
      background-color: var(--bg-light);
      color: var(--primary-red);
  }

  .btn-header {
      background-color: var(--primary-red);
      color: var(--white);
      padding: 10px 20px;
      border-radius: 4px;
      font-weight: 700;
      font-size: 14px;
      transition: background 0.3s;
  }

  .btn-header:hover {
      background-color: var(--primary-red-hover);
  }

  .hero-buttons {
      display: flex;
      gap: 15px;
      margin-bottom: 30px;
      flex-wrap: wrap;
  }

  .btn-primary {
      background-color: var(--primary-red);
      color: var(--white);
      padding: 12px 24px;
      border-radius: 4px;
      font-weight: 700;
      display: inline-block;
      transition: background 0.3s;
  }

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

  .btn-outline {
      border: 2px solid var(--white);
      color: var(--white);
      padding: 10px 22px;
      border-radius: 4px;
      font-weight: 700;
      display: inline-block;
      transition: all 0.3s;
  }

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

  /* ========================================================================== 
           4B. CONTACT HERO
           ========================================================================== */
  .contact-hero {
      position: relative;
      overflow: hidden;
      padding: 36px 0 44px;
      color: var(--white);
      background:
          radial-gradient(circle at top right, rgba(211, 47, 47, 0.18), transparent 24%),
          linear-gradient(135deg, #0e2038 0%, #173b67 58%, #0b1d34 100%);
  }

  .contact-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
          linear-gradient(135deg, transparent 0 46%, rgba(255, 255, 255, 0.08) 46% 50%, transparent 50% 100%),
          linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 100%),
          linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 100%);
      background-size: auto, 72px 72px, 72px 72px;
      opacity: 0.42;
      pointer-events: none;
  }

  .contact-hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
      gap: 22px;
      align-items: center;
  }

  .contact-hero-copy {
      max-width: 620px;
  }

  .contact-hero-copy h1 {
      margin: 16px 0 14px;
      font-size: clamp(2.2rem, 4vw, 4rem);
      line-height: 0.98;
      letter-spacing: -0.04em;
      text-wrap: balance;
  }

  .contact-hero-copy p {
      margin: 0;
      max-width: 56ch;
      color: rgba(255, 255, 255, 0.9);
      font-size: 1.05rem;
      line-height: 1.7;
  }

  .contact-hero-buttons {
      margin-top: 24px;
  }

  .contact-hero-buttons .btn-primary,
  .contact-hero-buttons .btn-outline {
      min-width: 160px;
  }

  .contact-whatsapp {
      border-color: rgba(255, 255, 255, 0.24);
  }

  .contact-hero-meta {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 22px;
  }

  .contact-meta-card {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 14px 16px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(8px);
  }

  .contact-meta-card i {
      color: var(--primary-red);
      font-size: 16px;
      margin-top: 3px;
  }

  .contact-meta-card strong {
      display: block;
      font-size: 14px;
      color: #fff;
      margin-bottom: 3px;
  }

  .contact-meta-card span {
      display: block;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.82);
      line-height: 1.4;
  }

  .contact-hero-visual {
      position: relative;
      min-height: 420px;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 22px 48px rgba(7, 24, 46, 0.28);
      background: linear-gradient(145deg, #173b67 0%, #0b1d34 100%);
  }

  .contact-hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      opacity: 0.98;
      transition: transform 0.35s ease;
  }

  .contact-hero-visual:hover .contact-hero-image {
      transform: scale(1.03);
  }

  .contact-hero-visual::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
          linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 22%),
          linear-gradient(135deg, transparent 0 43%, rgba(255, 255, 255, 0.1) 43% 49%, transparent 49% 100%);
      pointer-events: none;
  }

  .contact-hero-float {
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 18px;
      z-index: 2;
      padding: 14px 16px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.92);
      color: var(--primary-navy);
      box-shadow: 0 14px 28px rgba(8, 21, 39, 0.16);
      display: grid;
      gap: 8px;
  }

  .contact-float-row {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      font-weight: 700;
      line-height: 1.35;
  }

  .contact-float-row i {
      color: var(--primary-red);
      font-size: 14px;
      flex: 0 0 auto;
  }

  /* ==========================================================================
           5. DUAL SERVICE GATEWAY SECTION
           ========================================================================== */
  .services-gateway {
      padding: 60px 0;
      background-color: var(--bg-light);
  }

  .section-title {
      text-align: center;
      font-size: 26px;
      font-weight: 700;
      color: var(--primary-navy);
      margin-bottom: 40px;
  }

  .gateway-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
      gap: 30px;
  }

  .gateway-card {
      background: var(--white);
      border-radius: 8px;
      overflow: hidden;
      display: flex;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s, box-shadow 0.3s;
  }

  .gateway-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }

  .gateway-info {
      padding: 30px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
  }

  .gateway-icon {
      font-size: 24px;
      color: var(--primary-navy);
      margin-bottom: 15px;
  }

  .gateway-info h3 {
      font-size: 18px;
      color: var(--primary-navy);
      margin-bottom: 10px;
  }

  .gateway-info p {
      font-size: 13px;
      color: var(--text-gray);
      margin-bottom: 20px;
  }

  .gateway-img {
      width: 45%;
      background-size: cover;
      background-position: center;
  }

  .btn-card {
      border: 1px solid var(--primary-navy);
      color: var(--primary-navy);
      padding: 8px 16px;
      border-radius: 4px;
      font-size: 13px;
      font-weight: 700;
      align-self: flex-start;
      transition: all 0.3s;
  }

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

  /* ==========================================================================
           6. QUICK VEHICLE LOOKUP & PRICING TABLE
           ========================================================================== */
  .pricing-section {
      padding: 60px 0;
      background-color: var(--white);
  }

  .lookup-box {
      background: var(--primary-navy);
      padding: 25px;
      border-radius: 8px;
      color: var(--white);
      margin-bottom: 40px;
  }

  .lookup-box h3 {
      margin-bottom: 15px;
      font-size: 18px;
  }

  .lookup-form {
      display: flex;
      gap: 10px;
  }

  .lookup-form input {
      flex: 1;
      padding: 12px 15px;
      border: none;
      border-radius: 4px;
      font-size: 14px;
  }

  .lookup-form button {
      background: var(--primary-red);
      color: var(--white);
      border: none;
      padding: 0 25px;
      border-radius: 4px;
      font-weight: 700;
      cursor: pointer;
      transition: background 0.3s;
  }

  .lookup-form button:hover {
      background: var(--primary-red-hover);
  }

  /* Pricing Table */
  .pricing-table-wrapper {
      overflow-x: auto;
  }

  .pricing-table {
      width: 100%;
      border-collapse: collapse;
      background: var(--white);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
      border-radius: 8px;
      overflow: hidden;
  }

  .pricing-table th,
  .pricing-table td {
      padding: 15px 20px;
      text-align: center;
      border-bottom: 1px solid var(--border-color);
  }

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

  .pricing-table th:first-child,
  .pricing-table td:first-child {
      text-align: left;
      font-weight: 600;
  }

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

  /* ========================================================================== 
           7. ABOUT PAGE SECTION
           ========================================================================== */
  .about-section {
      padding: 70px 0 60px;
      background:
          radial-gradient(circle at top left, rgba(14, 32, 56, 0.06), transparent 30%),
          linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
  }

  .about-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
      gap: 24px;
      align-items: stretch;
  }

  .about-media {
      position: relative;
      min-height: 560px;
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 18px 40px rgba(14, 32, 56, 0.14);
      background: linear-gradient(145deg, #173b67 0%, #0b1d34 100%);
      isolation: isolate;
  }

  .about-media::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
          linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 22%),
          linear-gradient(135deg, transparent 0 42%, rgba(255, 255, 255, 0.12) 42% 48%, transparent 48% 100%);
      pointer-events: none;
  }

  .about-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.35s ease;
  }

  .about-media:hover img {
      transform: scale(1.03);
  }

  .about-media-badge {
      position: absolute;
      left: 18px;
      bottom: 18px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.92);
      color: var(--primary-navy);
      font-size: 13px;
      font-weight: 700;
      box-shadow: 0 12px 24px rgba(10, 23, 40, 0.16);
  }

  .about-media-badge i {
      color: var(--primary-red);
  }

  .about-content {
      background: var(--white);
      border: 1px solid rgba(14, 32, 56, 0.08);
      border-radius: 22px;
      padding: 34px;
      box-shadow: 0 16px 36px rgba(14, 32, 56, 0.08);
  }

  .about-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(211, 47, 47, 0.08);
      color: var(--primary-red);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.02em;
      margin-bottom: 14px;
  }

  .about-content h2 {
      font-size: clamp(2rem, 3vw, 2.6rem);
      line-height: 1.05;
      letter-spacing: -0.03em;
      color: var(--primary-navy);
      margin-bottom: 16px;
  }

  .about-content p {
      color: var(--text-gray);
      line-height: 1.75;
      margin-bottom: 16px;
  }

  .about-content h3 {
      color: var(--primary-navy);
      font-size: 1.25rem;
      margin: 24px 0 14px;
  }

  .about-points {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
  }

  .about-point {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 14px;
      border-radius: 14px;
      background: #f7f9fc;
      border: 1px solid rgba(14, 32, 56, 0.08);
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }

  .about-point i {
      color: var(--primary-red);
      font-size: 16px;
      margin-top: 2px;
      flex: 0 0 auto;
  }

  .about-point span {
      color: var(--text-dark);
      font-weight: 600;
      line-height: 1.5;
  }

  .about-point:hover {
      transform: translateY(-2px);
      border-color: rgba(211, 47, 47, 0.22);
      box-shadow: 0 12px 24px rgba(14, 32, 56, 0.08);
  }

  .about-closing {
      margin-top: 20px;
      font-weight: 600;
      color: var(--primary-navy);
  }

  /* ==========================================================================
           7. FOOTER
           ========================================================================== */
  .footer {
      background-color: var(--primary-navy);
      color: var(--white);
      padding: 50px 0 20px 0;
      font-size: 14px;
  }

  .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      margin-bottom: 40px;
  }

  .footer-col h4 {
      font-size: 16px;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 8px;
  }

  .footer-col h4::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 30px;
      height: 2px;
      background-color: var(--primary-red);
  }

  .footer-col ul li {
      margin-bottom: 10px;
  }

  .footer-col ul li a {
      color: #a0aec0;
      transition: color 0.3s;
  }

  .footer-col ul li a:hover {
      color: var(--white);
  }

  .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 20px;
      display: flex;
      justify-content: space-between;
      color: #a0aec0;
      font-size: 12px;
  }

  /* ==========================================================================
           8. RESPONSIVE DESIGN (MEDIA QUERIES)
           ========================================================================== */
  @media (max-width: 768px) {
      .top-bar {
          display: none;
      }

      .navbar {
          height: auto;
          padding: 8px 0;
      }

      .navbar .container {
          display: flex;
          flex-wrap: nowrap;
          align-items: center;
          justify-content: space-between;
          gap: 8px 10px;
          position: relative;
      }

      .logo {
          flex: 0 0 auto;
          font-size: 17px;
          line-height: 1;
          max-width: calc(100% - 54px);
      }

      .logo br {
          display: none;
      }

      .logo-icons {
          margin-left: 4px;
          gap: 2px;
          font-size: 12px;
      }

      .logo-icons i {
          padding: 3px;
          font-size: 9px;
      }

      .menu-toggle {
          display: inline-flex;
          margin-left: auto;
          background: transparent;
          box-shadow: none;
          width: 30px;
          height: 30px;
          padding: 0;
      }

      .menu-toggle span {
          width: 18px;
          background: var(--text-dark);
      }

      .navbar nav {
          position: absolute;
          top: calc(100% + 8px);
          left: 0;
          width: 100%;
          display: none;
          z-index: 50;
      }

      .menu-open .navbar nav {
          display: block;
      }

      .nav-menu {
          display: flex;
          flex-direction: column;
          align-items: stretch;
          gap: 6px;
          padding: 14px 12px 12px;
          background: rgba(255, 255, 255, 0.98);
          border: 1px solid rgba(14, 32, 56, 0.08);
          border-radius: 0 0 16px 16px;
          box-shadow: 0 16px 30px rgba(14, 39, 71, 0.12);
          width: 100%;
      }

      .nav-menu li {
          width: 100%;
      }

      .nav-link {
          display: block;
          font-size: 13px;
          padding: 9px 12px;
          background: #f4f7fb;
          border-radius: 10px;
          color: #223146;
      }

      .dropdown {
          width: 100%;
      }

      .dropdown > .nav-link {
          display: flex;
          justify-content: space-between;
          align-items: center;
      }

      .nav-menu li:last-child .nav-link {
          margin-top: 2px;
          text-align: center;
      }

      .dropdown-menu {
          display: none;
      }

      .hero-buttons {
          gap: 10px;
          margin-bottom: 16px;
      }

      .btn-primary,
      .btn-outline {
          padding: 10px 14px;
          font-size: 11px;
      }

      .contact-hero {
          padding: 28px 0 34px;
      }

      .contact-hero-grid {
          grid-template-columns: 1fr;
          gap: 16px;
      }

      .contact-hero-copy h1 {
          font-size: 2rem;
      }

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

      .contact-hero-buttons {
          display: grid;
          grid-template-columns: 1fr;
      }

      .contact-hero-buttons .btn-primary,
      .contact-hero-buttons .btn-outline {
          width: 100%;
      }

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

      .contact-hero-visual {
          min-height: 300px;
      }

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

      .gateway-card {
          flex-direction: column;
      }

      .gateway-info {
          padding: 22px;
      }

      .gateway-img {
          width: 100%;
          height: 200px;
      }

      .pricing-section {
          padding: 42px 0;
      }

      .section-title {
          font-size: 22px;
          margin-bottom: 28px;
      }

      .services-gateway {
          padding: 40px 0;
      }

      .pricing-section {
          padding: 36px 0;
      }

      .lookup-form {
          flex-direction: column;
      }

      .lookup-form button {
          padding: 12px;
      }

      .about-section {
          padding: 46px 0 40px;
      }

      .about-layout {
          grid-template-columns: 1fr;
          gap: 18px;
      }

      .about-media {
          min-height: 320px;
      }

      .about-content {
          padding: 24px;
      }

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

      .footer {
          padding: 36px 0 18px;
      }
  }

  /* ========================================================================
     HOMEPAGE REDESIGN
     ======================================================================== */
  .home-page {
      --home-ink: #07131f;
      --home-panel: #102638;
      --home-muted: #627281;
      --home-line: rgba(255, 255, 255, 0.16);
      --home-accent: #e9363d;
      --home-accent-dark: #c9232b;
      --home-sand: #f2f0ea;
      overflow-x: hidden;
      background: var(--home-sand);
      color: var(--home-ink);
      font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  }

  .home-page * {
      font-family: inherit;
  }

  .home-page :focus-visible {
      outline: 3px solid #fff;
      outline-offset: 4px;
  }

  .home-page .site-header {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 20;
      background: linear-gradient(180deg, rgba(1, 11, 20, 0.62), rgba(1, 11, 20, 0));
      box-shadow: none;
  }

  .home-page .navbar {
      height: 82px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .home-page .brand-logo {
      display: inline-flex;
      align-items: baseline;
      gap: 7px;
      color: #fff;
      font-size: 1.25rem;
      letter-spacing: -0.04em;
      line-height: 1;
  }

  .home-page .brand-mark {
      font-size: 1.55rem;
      font-weight: 900;
  }

  .home-page .brand-name {
      color: #fff;
      font-size: 0.84rem;
      font-weight: 800;
      letter-spacing: 0.02em;
      text-transform: uppercase;
  }

  .home-page .nav-menu {
      gap: 28px;
  }

  .home-page .nav-link {
      position: relative;
      color: rgba(255, 255, 255, 0.82);
      font-size: 0.83rem;
      font-weight: 700;
      letter-spacing: 0.01em;
  }

  .home-page .nav-link::after {
      content: '';
      position: absolute;
      right: 0;
      bottom: -10px;
      left: 0;
      height: 2px;
      background: var(--home-accent);
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.2s ease;
  }

  .home-page .nav-link:hover,
  .home-page .nav-link.active {
      color: #fff;
  }

  .home-page .nav-link:hover::after,
  .home-page .nav-link.active::after {
      transform: scaleX(1);
      transform-origin: left;
  }

  .home-hero {
      position: relative;
      display: grid;
      align-items: center;
      min-height: 720px;
      min-height: 100svh;
      overflow: hidden;
      color: #fff;
      isolation: isolate;
      background: #07131f url('hero.webp') center/cover no-repeat;
  }

  .home-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
          linear-gradient(90deg, rgba(3, 13, 22, 0.95) 0%, rgba(3, 13, 22, 0.84) 40%, rgba(3, 13, 22, 0.32) 74%, rgba(3, 13, 22, 0.12) 100%),
          linear-gradient(180deg, rgba(3, 13, 22, 0.2), rgba(3, 13, 22, 0.7));
  }

  .home-hero::after {
      content: '';
      position: absolute;
      top: 0;
      right: max(5vw, 30px);
      bottom: 0;
      width: 1px;
      z-index: -1;
      background: rgba(255, 255, 255, 0.22);
  }

  .home-hero-shade {
      position: absolute;
      inset: auto auto 0 0;
      width: 42vw;
      height: 30%;
      z-index: -1;
      background: linear-gradient(135deg, rgba(233, 54, 61, 0.32), transparent 67%);
      filter: blur(6px);
      pointer-events: none;
  }

  .home-hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 120px;
      align-items: end;
      gap: 24px;
      padding-top: 130px;
      padding-bottom: 106px;
  }

  .home-hero-content {
      max-width: 680px;
      animation: home-rise 0.7s ease both;
  }

  .hero-eyebrow,
  .section-kicker {
      margin: 0 0 14px;
      color: var(--home-accent);
      font-size: 0.74rem;
      font-weight: 900;
      letter-spacing: 0.13em;
      text-transform: uppercase;
  }

  .home-hero h1 {
      max-width: 11ch;
      margin: 0;
      color: #fff;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(3rem, 7vw, 6.65rem);
      font-weight: 700;
      letter-spacing: -0.075em;
      line-height: 0.92;
      text-wrap: balance;
  }

  .hero-copy {
      max-width: 52ch;
      margin: 28px 0 0;
      color: rgba(255, 255, 255, 0.82);
      font-size: clamp(1rem, 1.35vw, 1.16rem);
      line-height: 1.7;
  }

  .hero-actions,
  .location-actions,
  .booking-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
  }

  .hero-actions {
      margin-top: 30px;
  }

  .home-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 51px;
      padding: 13px 21px;
      border: 1px solid transparent;
      border-radius: 999px;
      font-size: 0.82rem;
      font-weight: 900;
      letter-spacing: 0.01em;
      line-height: 1;
      transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  }

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

  .home-button-primary {
      background: var(--home-accent);
      color: #fff;
      box-shadow: 0 12px 24px rgba(233, 54, 61, 0.22);
  }

  .home-button-primary:hover {
      background: var(--home-accent-dark);
  }

  .home-button-secondary {
      border-color: rgba(255, 255, 255, 0.36);
      background: rgba(255, 255, 255, 0.06);
      color: #fff;
      backdrop-filter: blur(6px);
  }

  .home-button-secondary:hover {
      border-color: #fff;
      background: #fff;
      color: var(--home-ink);
  }

  .hero-phone {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      margin-top: 30px;
      color: #fff;
      font-size: 0.94rem;
      font-weight: 800;
      line-height: 1.2;
  }

  .hero-phone small {
      display: block;
      margin-bottom: 3px;
      color: rgba(255, 255, 255, 0.62);
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
  }

  .hero-phone-icon {
      display: grid;
      width: 34px;
      height: 34px;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, 0.34);
      border-radius: 50%;
      color: var(--home-accent);
      font-size: 0.9rem;
      transform: rotate(-15deg);
  }

  .hero-side-note {
      display: flex;
      align-items: flex-end;
      gap: 12px;
      height: 290px;
      margin-bottom: 6px;
      color: rgba(255, 255, 255, 0.76);
      writing-mode: vertical-rl;
      transform: rotate(180deg);
  }

  .hero-side-note span {
      font-size: 0.66rem;
      font-weight: 900;
      letter-spacing: 0.13em;
      text-transform: uppercase;
  }

  .hero-side-note strong {
      color: var(--home-accent);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 3rem;
      font-weight: 400;
      line-height: 0.8;
  }

  .hero-side-note i {
      display: block;
      width: 1px;
      height: 78px;
      background: rgba(255, 255, 255, 0.48);
  }

  .hero-scroll {
      position: absolute;
      right: max(7vw, 50px);
      bottom: 26px;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: rgba(255, 255, 255, 0.78);
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
  }

  .hero-scroll span {
      color: var(--home-accent);
      font-size: 1.1rem;
  }

  .trust-section {
      position: relative;
      z-index: 3;
      margin-top: -36px;
  }

  .trust-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 18px;
      background: #fff;
      box-shadow: 0 18px 35px rgba(7, 19, 31, 0.12);
  }

  .trust-item {
      display: flex;
      align-items: center;
      gap: 14px;
      min-height: 112px;
      padding: 22px 26px;
      border-right: 1px solid #e5e7e8;
  }

  .trust-item:last-child {
      border-right: 0;
  }

  .trust-icon {
      display: grid;
      width: 42px;
      height: 42px;
      flex: 0 0 auto;
      place-items: center;
      border-radius: 50%;
      background: #fff0f0;
      color: var(--home-accent);
      font-size: 1.05rem;
      font-weight: 900;
  }

  .trust-item h2 {
      margin: 0;
      color: var(--home-ink);
      font-size: 0.94rem;
      line-height: 1.25;
  }

  .trust-item p {
      margin: 4px 0 0;
      color: var(--home-muted);
      font-size: 0.8rem;
      line-height: 1.45;
  }

  .home-services {
      padding: 132px 0 100px;
      background: var(--home-sand);
  }

  .home-section-heading {
      max-width: 680px;
      margin-bottom: 42px;
  }

  .home-section-heading h2,
  .home-about h2,
  .location-copy h2,
  .booking-inner h2 {
      margin: 0;
      color: var(--home-ink);
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(2.15rem, 4.5vw, 4.2rem);
      font-weight: 700;
      letter-spacing: -0.065em;
      line-height: 0.99;
      text-wrap: balance;
  }

  .home-section-heading > p:last-child {
      max-width: 58ch;
      margin: 20px 0 0;
      color: var(--home-muted);
      font-size: 1rem;
      line-height: 1.7;
  }

  .service-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
  }

  .service-card {
      position: relative;
      display: flex;
      min-height: 340px;
      flex-direction: column;
      padding: 26px;
      overflow: hidden;
      border: 1px solid #dfe0dd;
      border-radius: 15px;
      background: #fbfbf9;
      color: var(--home-ink);
      transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
  }

  .service-card::after {
      content: '';
      position: absolute;
      right: -30px;
      bottom: -65px;
      width: 155px;
      height: 155px;
      border: 1px solid currentColor;
      border-radius: 50%;
      opacity: 0.12;
      transition: transform 0.35s ease;
  }

  .service-card:hover {
      z-index: 1;
      transform: translateY(-7px);
      border-color: var(--home-ink);
      background: var(--home-ink);
      color: #fff;
      box-shadow: 0 22px 38px rgba(7, 19, 31, 0.18);
  }

  .service-card:hover::after {
      transform: scale(1.35);
  }

  .service-card-featured {
      border-color: var(--home-accent);
      background: var(--home-accent);
      color: #fff;
  }

  .service-index {
      color: currentColor;
      font-size: 0.68rem;
      font-weight: 900;
      letter-spacing: 0.12em;
      opacity: 0.7;
  }

  .service-icon {
      display: grid;
      width: 45px;
      height: 45px;
      margin: 47px 0 22px;
      place-items: center;
      border: 1px solid currentColor;
      border-radius: 50%;
      color: currentColor;
      font-size: 1.2rem;
      font-weight: 900;
    }

  .service-card h3 {
      margin: 0;
      font-size: 1.18rem;
      letter-spacing: -0.03em;
      line-height: 1.15;
  }

  .service-card p {
      margin: 13px 0 20px;
      color: currentColor;
      font-size: 0.86rem;
      line-height: 1.6;
      opacity: 0.74;
  }

  .service-link {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: auto;
      font-size: 0.76rem;
      font-weight: 900;
  }

  .service-link b {
      font-size: 1rem;
      transition: transform 0.2s ease;
  }

  .service-card:hover .service-link b {
      transform: translateX(4px);
  }

  .home-about {
      padding: 100px 0;
      overflow: hidden;
      background: #fff;
  }

  .home-about-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
      gap: clamp(36px, 7vw, 110px);
      align-items: center;
  }

  .home-about-media {
      position: relative;
      min-height: 520px;
      overflow: hidden;
      border-radius: 16px;
      background: var(--home-ink);
      box-shadow: 0 28px 50px rgba(7, 19, 31, 0.16);
  }

  .home-about-media::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(7, 19, 31, 0.22), transparent 54%);
      pointer-events: none;
  }

  .home-about-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
  }

  .home-about-media:hover img {
      transform: scale(1.04);
  }

  .about-image-caption {
      position: absolute;
      right: 20px;
      bottom: 18px;
      z-index: 1;
      padding: 9px 12px;
      border-radius: 999px;
      background: rgba(7, 19, 31, 0.84);
      color: #fff;
      font-size: 0.7rem;
      font-weight: 900;
      letter-spacing: 0.09em;
      text-transform: uppercase;
  }

  .home-about-content {
      max-width: 510px;
  }

  .home-about-content > p:not(.section-kicker) {
      margin: 20px 0 0;
      color: var(--home-muted);
      font-size: 1rem;
      line-height: 1.75;
  }

  .text-link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 31px;
      color: var(--home-ink);
      font-size: 0.82rem;
      font-weight: 900;
  }

  .text-link span {
      color: var(--home-accent);
      font-size: 1.2rem;
      transition: transform 0.2s ease;
  }

  .text-link:hover span {
      transform: translateX(5px);
  }

  .location-reviews {
      padding: 105px 0 100px;
      background: var(--home-panel);
      color: #fff;
  }

  .location-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 28px;
      align-items: stretch;
  }

  .location-copy {
      display: flex;
      min-height: 420px;
      flex-direction: column;
      justify-content: center;
      padding: clamp(28px, 4vw, 54px);
      border-radius: 18px;
      background: #0a1926;
  }

  .location-copy .section-kicker,
  .booking-inner .section-kicker {
      color: #ff6b70;
  }

  .location-copy h2 {
      color: #fff;
  }

  .location-copy > p:not(.section-kicker) {
      max-width: 38ch;
      margin: 21px 0 0;
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.95rem;
      line-height: 1.7;
  }

  .location-phone {
      margin-top: 20px;
      color: #fff;
      font-size: 1.15rem;
      font-weight: 900;
      letter-spacing: -0.025em;
  }

  .opening-hours {
      margin-top: 24px;
      padding-top: 18px;
      border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .opening-hours h3 {
      margin: 0 0 8px;
      color: #fff;
      font-size: 0.7rem;
      font-weight: 900;
      letter-spacing: 0.11em;
      text-transform: uppercase;
  }

  .opening-hours dl {
      display: grid;
      gap: 5px;
      margin: 0;
  }

  .opening-hours dl div {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      color: rgba(255, 255, 255, 0.74);
      font-size: 0.8rem;
      line-height: 1.4;
  }

  .opening-hours dt,
  .opening-hours dd {
      margin: 0;
  }

  .opening-hours dd {
      color: #fff;
      font-weight: 800;
      text-align: right;
  }

  .location-actions {
      margin-top: 30px;
  }

  .map-frame {
      min-height: 420px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 18px;
      background: #183147;
  }

  .map-frame iframe {
      display: block;
      width: 100%;
      height: 100%;
      min-height: 420px;
      border: 0;
      filter: grayscale(0.5) contrast(1.06) saturate(0.85);
  }

  .reviews-panel {
      grid-column: 1 / -1;
      min-width: 0;
      padding-top: 24px;
  }

  .reviews-heading {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 16px;
  }

  .reviews-heading > span {
      color: #ff6b70;
      font-size: 0.7rem;
      font-weight: 900;
      letter-spacing: 0.12em;
      text-transform: uppercase;
  }

  .reviews-heading a {
      color: #fff;
      font-size: 0.78rem;
      font-weight: 900;
  }

  .reviews-heading b {
      color: #ff6b70;
      font-size: 1rem;
  }

  .review-track {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
  }

  .review-card {
      display: flex;
      min-height: 164px;
      flex-direction: column;
      justify-content: space-between;
      margin: 0;
      padding: 23px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.055);
  }

  .review-card p {
      margin: 0;
      color: rgba(255, 255, 255, 0.9);
      font-family: Georgia, "Times New Roman", serif;
      font-size: 1.03rem;
      line-height: 1.45;
    }

  .review-card footer {
      margin-top: 18px;
      color: #ff8c90;
      font-size: 0.7rem;
      font-style: normal;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
  }

  .booking-section {
      padding: 80px 0;
      overflow: hidden;
      background: var(--home-accent);
      color: #fff;
  }

  .booking-inner {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 30px;
  }

  .booking-inner h2 {
      max-width: 12ch;
      color: #fff;
  }

  .booking-inner > div > p:not(.section-kicker) {
      margin: 18px 0 0;
      color: rgba(255, 255, 255, 0.82);
      font-size: 0.95rem;
  }

  .booking-actions {
      justify-content: flex-end;
      flex: 0 0 auto;
  }

  .home-button-light {
      background: #fff;
      color: var(--home-accent-dark);
  }

  .home-button-light:hover {
      background: var(--home-ink);
      color: #fff;
  }

  .home-button-dark {
      border-color: rgba(7, 19, 31, 0.26);
      background: var(--home-ink);
      color: #fff;
  }

  .home-button-dark:hover {
      border-color: #fff;
      background: transparent;
  }

  .home-page .home-footer {
      padding: 68px 0 22px;
      background: #07131f;
  }

  .home-page .footer-grid {
      grid-template-columns: 1.3fr repeat(3, 1fr);
      gap: 36px;
      margin-bottom: 54px;
  }

  .home-page .footer-col h2 {
      margin: 0 0 18px;
      color: #fff;
      font-size: 0.72rem;
      font-weight: 900;
      letter-spacing: 0.11em;
      text-transform: uppercase;
  }

  .home-page .footer-col h2::after {
      display: none;
  }

  .footer-logo {
      display: inline-flex;
      align-items: baseline;
      gap: 7px;
      color: #fff;
      font-size: 1.45rem;
      font-weight: 900;
      letter-spacing: -0.045em;
  }

  .footer-logo span {
      font-size: 0.76rem;
      letter-spacing: 0.02em;
      text-transform: uppercase;
  }

  .home-page .footer-brand p {
      max-width: 26ch;
      margin: 14px 0 0;
      color: #9aacb9;
      font-size: 0.86rem;
      line-height: 1.65;
  }

  .home-page .footer-col ul li {
      margin-bottom: 11px;
  }

  .home-page .footer-col ul li a,
  .home-page .footer-col address {
      color: #9aacb9;
      font-size: 0.84rem;
      font-style: normal;
      line-height: 1.7;
      transition: color 0.2s ease;
  }

  .home-page .footer-col ul li a:hover {
      color: #fff;
  }

  .home-page .footer-bottom {
      align-items: center;
      color: #718795;
  }

  .home-page .footer-bottom a {
      color: #fff;
      font-size: 0.72rem;
      font-weight: 800;
  }

  @keyframes home-rise {
      from {
          opacity: 0;
          transform: translateY(20px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @media (max-width: 900px) {
      .service-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .home-about-grid {
          grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
          gap: 36px;
      }

      .home-about-media {
          min-height: 440px;
      }

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

  @media (max-width: 768px) {
      .home-page .site-header {
          background: linear-gradient(180deg, rgba(1, 11, 20, 0.75), rgba(1, 11, 20, 0));
      }

      .home-page .navbar {
          height: 66px;
          padding: 0 20px;
          border-bottom: 1px solid rgba(255, 255, 255, 0.14);
      }

      .home-page .brand-logo {
          max-width: calc(100% - 48px);
      }

      .home-page .brand-mark {
          font-size: 1.3rem;
      }

      .home-page .brand-name {
          font-size: 0.7rem;
      }

      .home-page .menu-toggle {
          width: 40px;
          height: 40px;
          border: 1px solid rgba(255, 255, 255, 0.24);
          border-radius: 50%;
          background: rgba(7, 19, 31, 0.26);
      }

      .home-page .menu-toggle span {
          width: 18px;
          background: #fff;
      }

      .home-page .navbar nav {
          top: 66px;
          left: 0;
          padding: 0 20px;
      }

      .home-page .nav-menu {
          gap: 3px;
          padding: 10px;
          border: 1px solid rgba(255, 255, 255, 0.16);
          border-radius: 0 0 14px 14px;
          background: #0b1c2a;
          box-shadow: 0 18px 30px rgba(0, 0, 0, 0.28);
      }

      .home-page .nav-link {
          padding: 12px 13px;
          border-radius: 8px;
          background: transparent;
          color: rgba(255, 255, 255, 0.78);
          font-size: 0.85rem;
      }

      .home-page .nav-link:hover,
      .home-page .nav-link.active {
          background: rgba(255, 255, 255, 0.08);
          color: #fff;
      }

      .home-page .nav-link::after {
          display: none;
      }

      .home-hero {
          min-height: 650px;
          min-height: 100svh;
          background-position: 62% center;
      }

      .home-hero::before {
          background:
              linear-gradient(90deg, rgba(3, 13, 22, 0.94) 0%, rgba(3, 13, 22, 0.82) 62%, rgba(3, 13, 22, 0.46) 100%),
              linear-gradient(180deg, rgba(3, 13, 22, 0.3), rgba(3, 13, 22, 0.75));
      }

      .home-hero::after,
      .hero-side-note,
      .hero-scroll {
          display: none;
      }

      .home-hero-grid {
          display: block;
          padding-top: 145px;
          padding-bottom: 56px;
      }

      .home-hero h1 {
          max-width: 10ch;
          font-size: clamp(2.65rem, 12vw, 4rem);
          letter-spacing: -0.065em;
      }

      .hero-copy {
          margin-top: 22px;
          font-size: 0.96rem;
          line-height: 1.65;
      }

      .hero-actions,
      .location-actions,
      .booking-actions {
          display: grid;
          grid-template-columns: 1fr;
      }

      .home-button {
          width: 100%;
          min-height: 52px;
      }

      .hero-actions {
          margin-top: 26px;
      }

      .hero-phone {
          margin-top: 24px;
      }

      .trust-section {
          margin-top: -22px;
      }

      .trust-grid {
          grid-template-columns: 1fr;
          border-radius: 14px;
      }

      .trust-item {
          min-height: 82px;
          padding: 16px 19px;
          border-right: 0;
          border-bottom: 1px solid #e5e7e8;
      }

      .trust-item:last-child {
          border-bottom: 0;
      }

      .trust-icon {
          width: 36px;
          height: 36px;
          font-size: 0.93rem;
      }

      .home-services {
          padding: 78px 0 65px;
      }

      .home-section-heading {
          margin-bottom: 28px;
      }

      .home-section-heading h2,
      .home-about h2,
      .location-copy h2,
      .booking-inner h2 {
          font-size: clamp(2.15rem, 10vw, 3rem);
      }

      .home-section-heading > p:last-child {
          margin-top: 15px;
          font-size: 0.93rem;
      }

      .service-grid {
          grid-template-columns: 1fr;
          gap: 11px;
      }

      .service-card {
          min-height: 270px;
          padding: 22px;
      }

      .service-icon {
          margin: 28px 0 18px;
      }

      .home-about {
          padding: 66px 0;
      }

      .home-about-grid {
          grid-template-columns: 1fr;
          gap: 32px;
      }

      .home-about-media {
          min-height: 330px;
      }

      .home-about-content > p:not(.section-kicker) {
          margin-top: 16px;
          font-size: 0.94rem;
      }

      .location-reviews {
          padding: 68px 0 62px;
      }

      .location-grid {
          grid-template-columns: 1fr;
          gap: 16px;
      }

      .location-copy,
      .map-frame,
      .map-frame iframe {
          min-height: 350px;
      }

      .location-copy {
          padding: 29px 23px;
      }

      .opening-hours dl div {
          align-items: flex-start;
          flex-direction: column;
          gap: 1px;
      }

      .opening-hours dd {
          text-align: left;
      }

      .reviews-panel {
          padding-top: 16px;
      }

      .reviews-heading {
          align-items: flex-start;
          flex-direction: column;
          gap: 8px;
      }

      .review-track {
          display: flex;
          width: 100%;
          gap: 12px;
          overflow-x: auto;
          scroll-snap-type: x mandatory;
          scrollbar-width: thin;
          overscroll-behavior-inline: contain;
          padding: 2px 0 10px;
      }

      .review-card {
          width: min(83vw, 318px);
          min-width: min(83vw, 318px);
          min-height: 178px;
          scroll-snap-align: start;
      }

      .booking-section {
          padding: 64px 0;
      }

      .booking-inner {
          display: block;
      }

      .booking-actions {
          margin-top: 27px;
      }

      .home-page .home-footer {
          padding: 52px 0 19px;
      }

      .home-page .footer-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 28px 20px;
          margin-bottom: 38px;
      }

      .home-page .footer-brand {
          grid-column: 1 / -1;
      }

      .home-page .footer-bottom {
          align-items: flex-start;
          flex-direction: column;
          gap: 8px;
      }
  }

  @media (max-width: 360px) {
      .home-page .container {
          padding-right: 16px;
          padding-left: 16px;
      }

      .home-page .navbar {
          padding-right: 16px;
          padding-left: 16px;
      }

      .home-page .navbar nav {
          padding-right: 16px;
          padding-left: 16px;
      }

      .home-hero h1 {
          font-size: 2.55rem;
      }
  }

  @media (prefers-reduced-motion: reduce) {
      .home-page *,
      .home-page *::before,
      .home-page *::after {
          scroll-behavior: auto !important;
          animation-duration: 0.01ms !important;
          animation-iteration-count: 1 !important;
          transition-duration: 0.01ms !important;
      }
  }

  /* ========================================================================
     CAR WASH AND VALETING PAGE
     ======================================================================== */
  .service-page .service-hero {
      position: relative;
      display: grid;
      min-height: 560px;
      min-height: 72svh;
      align-items: end;
      overflow: hidden;
      color: #fff;
      isolation: isolate;
      background: #07131f url('hero.webp') center/cover no-repeat;
  }

  .service-page .service-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
          linear-gradient(90deg, rgba(3, 13, 22, 0.93) 0%, rgba(3, 13, 22, 0.77) 44%, rgba(3, 13, 22, 0.24) 78%, rgba(3, 13, 22, 0.16) 100%),
          linear-gradient(180deg, rgba(3, 13, 22, 0.26), rgba(3, 13, 22, 0.74));
  }

  .service-page .service-hero::after {
      content: '';
      position: absolute;
      right: clamp(28px, 7vw, 110px);
      bottom: 0;
      width: 1px;
      height: 58%;
      background: rgba(255, 255, 255, 0.25);
  }

  .service-hero-content {
      width: 100%;
      max-width: 1200px;
      padding-top: 150px;
      padding-bottom: 78px;
      animation: home-rise 0.7s ease both;
  }

  .service-hero h1 {
      max-width: 10ch;
      margin: 0;
      color: #fff;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(3.2rem, 7vw, 6.3rem);
      font-weight: 700;
      letter-spacing: -0.075em;
      line-height: 0.91;
      text-wrap: balance;
  }

  .service-hero-content > p:not(.hero-eyebrow) {
      max-width: 55ch;
      margin: 24px 0 0;
      color: rgba(255, 255, 255, 0.82);
      font-size: clamp(1rem, 1.35vw, 1.15rem);
      line-height: 1.7;
  }

  .service-intro {
      padding: 105px 0 90px;
      background: #fff;
  }

  .service-intro-grid {
      display: grid;
      grid-template-columns: minmax(180px, 0.35fr) minmax(0, 0.95fr);
      gap: clamp(30px, 8vw, 140px);
      align-items: start;
  }

  .service-intro-grid .section-kicker {
      margin-top: 9px;
  }

  .service-intro h2,
  .care-gallery h2,
  .process-heading h2 {
      margin: 0;
      color: var(--home-ink);
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(2.2rem, 4.5vw, 4.2rem);
      font-weight: 700;
      letter-spacing: -0.065em;
      line-height: 0.99;
      text-wrap: balance;
  }

  .service-intro-grid > div {
      max-width: 650px;
  }

  .service-intro-grid > div p {
      margin: 20px 0 0;
      color: var(--home-muted);
      font-size: 1rem;
      line-height: 1.75;
  }

  .service-page .service-offerings {
      padding-top: 94px;
      background: var(--home-sand);
  }

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

  .service-page .service-card {
      min-height: 354px;
  }

  .service-page .service-card .service-link {
      border: 0;
      background: transparent;
      padding: 0;
      cursor: pointer;
      color: currentColor;
  }

  .how-it-works {
      padding: 104px 0 100px;
      overflow: hidden;
      background: var(--home-panel);
      color: #fff;
  }

  .process-heading {
      max-width: 700px;
      margin-bottom: 52px;
  }

  .process-heading .section-kicker {
      color: #ff6b70;
  }

  .process-heading h2 {
      color: #fff;
  }

  .process-list {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      margin: 0;
      border-top: 1px solid rgba(255, 255, 255, 0.18);
      border-bottom: 1px solid rgba(255, 255, 255, 0.18);
      list-style: none;
    }

  .process-list li {
      min-height: 224px;
      padding: 28px 25px 25px;
      border-right: 1px solid rgba(255, 255, 255, 0.18);
    }

  .process-list li:last-child {
      border-right: 0;
  }

  .process-list span {
      display: block;
      color: #ff6b70;
      font-size: 0.7rem;
      font-weight: 900;
      letter-spacing: 0.12em;
  }

  .process-list h3 {
      max-width: 13ch;
      margin: 52px 0 0;
      color: #fff;
      font-size: 1.12rem;
      letter-spacing: -0.03em;
      line-height: 1.15;
  }

  .process-list p {
      max-width: 27ch;
      margin: 12px 0 0;
      color: rgba(255, 255, 255, 0.63);
      font-size: 0.83rem;
      line-height: 1.65;
  }

  .care-gallery {
      padding: 106px 0;
      background: #fff;
  }

  .care-gallery-grid {
      display: grid;
      grid-template-columns: minmax(300px, 0.87fr) minmax(0, 1.13fr);
      gap: clamp(36px, 8vw, 130px);
      align-items: center;
  }

  .care-gallery-copy {
      max-width: 470px;
  }

  .care-gallery-copy > p:not(.section-kicker) {
      margin: 21px 0 0;
      color: var(--home-muted);
      font-size: 0.96rem;
      line-height: 1.75;
  }

  .care-gallery-image {
      position: relative;
      min-height: 470px;
      margin: 0;
      overflow: hidden;
      border-radius: 16px;
      background: var(--home-ink);
      box-shadow: 0 28px 50px rgba(7, 19, 31, 0.15);
  }

  .care-gallery-image::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(7, 19, 31, 0.18), transparent 55%);
      pointer-events: none;
  }

  .care-gallery-image img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.45s ease;
  }

  .care-gallery-image:hover img {
      transform: scale(1.04);
  }

  .care-gallery-image figcaption {
      position: absolute;
      right: 18px;
      bottom: 17px;
      z-index: 1;
      padding: 8px 11px;
      border-radius: 999px;
      background: rgba(7, 19, 31, 0.84);
      color: #fff;
      font-size: 0.68rem;
      font-weight: 900;
      letter-spacing: 0.07em;
      text-transform: uppercase;
  }

  .service-page .service-booking {
      padding-top: 76px;
      padding-bottom: 76px;
  }

  .service-location {
      padding-top: 88px;
      padding-bottom: 88px;
  }

  .service-location-grid {
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  @media (max-width: 1120px) {
      .service-grid-four {
          grid-template-columns: repeat(2, 1fr);
      }
  }

  @media (max-width: 768px) {
      .service-page .service-hero {
          min-height: 550px;
          min-height: 78svh;
          background-position: 62% center;
      }

      .service-page .service-hero::before {
          background:
              linear-gradient(90deg, rgba(3, 13, 22, 0.94) 0%, rgba(3, 13, 22, 0.8) 64%, rgba(3, 13, 22, 0.48) 100%),
              linear-gradient(180deg, rgba(3, 13, 22, 0.22), rgba(3, 13, 22, 0.75));
      }

      .service-page .service-hero::after {
          display: none;
      }

      .service-hero-content {
          padding-top: 132px;
          padding-bottom: 54px;
      }

      .service-hero h1 {
          font-size: clamp(2.8rem, 12vw, 4.2rem);
      }

      .service-hero-content > p:not(.hero-eyebrow) {
          margin-top: 20px;
          font-size: 0.95rem;
          line-height: 1.65;
      }

      .service-intro {
          padding: 68px 0 61px;
      }

      .service-intro-grid,
      .care-gallery-grid {
          grid-template-columns: 1fr;
          gap: 24px;
      }

      .service-intro-grid .section-kicker {
          margin: 0;
      }

      .service-intro-grid > div p {
          margin-top: 16px;
          font-size: 0.94rem;
      }

      .service-page .service-offerings {
          padding-top: 70px;
      }

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

      .how-it-works {
          padding: 69px 0 64px;
      }

      .process-heading {
          margin-bottom: 30px;
      }

      .process-list {
          grid-template-columns: 1fr;
          border-bottom: 0;
      }

      .process-list li {
          display: grid;
          min-height: 0;
          grid-template-columns: 48px 1fr;
          column-gap: 15px;
          padding: 22px 0;
          border-right: 0;
          border-bottom: 1px solid rgba(255, 255, 255, 0.18);
        }

      .process-list span {
          grid-row: 1 / span 2;
          padding-top: 2px;
      }

      .process-list h3 {
          max-width: none;
          margin: 0;
          font-size: 1rem;
      }

      .process-list p {
          max-width: none;
          margin: 7px 0 0;
          font-size: 0.82rem;
      }

      .care-gallery {
          padding: 69px 0;
      }

      .care-gallery-image {
          min-height: 330px;
      }

      .service-page .service-booking {
          padding-top: 64px;
          padding-bottom: 64px;
      }

      .service-location {
          padding-top: 68px;
          padding-bottom: 62px;
      }

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

  /* ========================================================================
     COOKIE CONSENT
     ======================================================================== */
  .cookie-consent {
      position: fixed;
      right: 20px;
      bottom: max(20px, env(safe-area-inset-bottom));
      left: 20px;
      z-index: 3000;
      display: flex;
      width: min(100% - 40px, 780px);
      margin: 0 auto;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
      padding: 18px 20px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 16px;
      background: rgba(7, 19, 31, 0.98);
      color: #fff;
      box-shadow: 0 20px 46px rgba(0, 0, 0, 0.28);
  }

  .cookie-consent p {
      margin: 0;
      color: rgba(255, 255, 255, 0.82);
      font-size: 0.86rem;
      line-height: 1.55;
  }

  .cookie-consent-actions {
      display: flex;
      flex: 0 0 auto;
      flex-wrap: wrap;
      gap: 9px;
  }

  .cookie-consent button {
      min-height: 42px;
      padding: 10px 14px;
      border: 1px solid transparent;
      border-radius: 999px;
      font: inherit;
      font-size: 0.76rem;
      font-weight: 900;
      line-height: 1;
      cursor: pointer;
      transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }

  .cookie-consent button:hover {
      transform: translateY(-2px);
  }

  .cookie-consent-accept {
      background: #e9363d;
      color: #fff;
      box-shadow: 0 9px 18px rgba(233, 54, 61, 0.24);
  }

  .cookie-consent-accept:hover {
      background: #c9232b;
  }

  .cookie-consent-reject {
      border-color: rgba(255, 255, 255, 0.34) !important;
      background: transparent;
      color: #fff;
  }

  .cookie-consent-reject:hover {
      border-color: #fff !important;
      background: #fff;
      color: #07131f;
  }

  .cookie-consent button:focus-visible {
      outline: 3px solid #fff;
      outline-offset: 3px;
  }

  @media (max-width: 640px) {
      .cookie-consent {
          right: 12px;
          bottom: max(12px, env(safe-area-inset-bottom));
          left: 12px;
          display: grid;
          width: auto;
          gap: 15px;
          padding: 17px;
      }

      .cookie-consent p {
          font-size: 0.83rem;
      }

      .cookie-consent-actions {
          display: grid;
          grid-template-columns: 1fr 1fr;
          width: 100%;
      }

      .cookie-consent button {
          width: 100%;
          min-height: 46px;
          padding-right: 9px;
          padding-left: 9px;
      }
  }
