
    :root {
      --navy: #002C4F;
      --blue: #004A7C;
      --sky: #0B6A9A;
      --gold: #FFB703;
      --gold-d: #F28F00;
      --green: #FFB703;
      --text: #132238;
      --muted: #4B5563;
      --border: #DDE7EE;
      --bg: #F7FAFC;
      --white: #fff;
      --font-brand: 'Plus Jakarta Sans', 'Montserrat', 'Arial Black', Arial, sans-serif;
      --font-body: var(--font-brand);
      --shadow: 0 8px 30px rgba(2, 8, 23, .1);
      --radius: 14px;
    }
    @font-face {
      font-family: 'Plus Jakarta Sans';
      font-style: normal;
      font-weight: 100 900;
      font-display: swap;
      src: url('/assets/fonts/pjs-var.woff2') format('woff2');
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      color: var(--text);
      background: linear-gradient(180deg, #fffdf5 0%, #f7fafc 100%);
      line-height: 1.65;
      padding-bottom: 118px;
    }
    a { text-decoration: none; color: inherit; }
    .container { width: min(1180px, 92%); margin: 0 auto; }
    .nav {
      position: sticky;
      top: 0;
      z-index: 900;
      background: rgba(255, 255, 255, .95);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--border);
      border-top: 4px solid var(--gold);
    }
    .nav-inner {
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      width: min(1180px, 92%);
      margin: 0 auto;
      padding: 8px 0;
    }
    .logo {
      width: clamp(180px, 22vw, 270px);
      aspect-ratio: 990 / 480;
      overflow: hidden;
      position: relative;
      flex-shrink: 0;
      display: block;
    }
    .logo img {
      position: absolute;
      left: -26%;
      top: -52%;
      width: 155%;
      height: auto;
      max-width: none;
      display: block;
      margin: 0;
    }
    .nav-links { display: flex; gap: 18px; font-size: .92rem; font-weight: 700; color: var(--muted); }
    .nav-links a:hover { color: var(--blue); }
    .nav-ctas { display: flex; gap: 10px; align-items: center; }
    .btn-call {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--navy);
      color: var(--white);
      padding: 10px 13px;
      border-radius: 10px;
      font-size: .84rem;
      font-weight: 800;
    }
    .btn-wa-n {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--gold);
      color: var(--navy);
      padding: 10px 13px;
      border-radius: 10px;
      font-size: .84rem;
      font-weight: 800;
    }
    .btn-wa-n span {
      display: inline;
    }
    .hero {
      position: relative;
      padding: 52px 0 22px;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(0, 44, 79, .88) 0%, rgba(0, 44, 79, .56) 48%, rgba(255, 183, 3, .18) 100%),
        url('/assets/img/hero-mysore-taxi-service.webp') center / cover no-repeat;
    }
    .hero:before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(1200px 380px at 12% 0%, rgba(255, 183, 3, .22), transparent 60%);
      pointer-events: none;
    }
    .hero-box {
      position: relative;
      z-index: 2;
      background: rgba(255, 255, 255, .94);
      backdrop-filter: blur(8px);
      border: 1px solid var(--border);
      border-radius: 20px;
      box-shadow: var(--shadow);
      padding: clamp(22px, 3vw, 34px);
    }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(255, 183, 3, .16);
      color: var(--navy);
      border: 1px solid rgba(255, 183, 3, .3);
      font-size: .78rem;
      font-weight: 800;
    }
    h1, h2, h3 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      color: var(--navy);
      letter-spacing: 0;
    }
    h1 { margin-top: 12px; font-size: clamp(1.9rem, 4.5vw, 2.8rem); line-height: 1.2; }
    .sub { margin-top: 10px; color: var(--muted); font-size: 1rem; max-width: 900px; }
    .cta { margin-top: 18px; display: flex; gap: 10px; flex-wrap: wrap; }
    .cta .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 800;
      border-radius: 11px;
      padding: 12px 16px;
      font-size: .92rem;
    }
    .btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-d)); color: var(--navy); }
    .btn-primary:hover { background: var(--gold-d); color: var(--navy); }
    .btn-light { background: #fff; border: 1px solid var(--border); color: var(--text); }
    .trust-strip {
      margin: 18px 0 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
      gap: 10px;
    }
    .trust-item {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 10px 12px;
      font-size: .85rem;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .sec {
      padding: 26px 0 8px;
    }
    .sec-title { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 10px; }
    .sec-sub { color: var(--muted); font-size: .95rem; }
    .grid {
      margin-top: 16px;
      display: grid;
      gap: 14px;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    .stat {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 14px;
      box-shadow: 0 2px 10px rgba(15, 23, 42, .04);
    }
    .k { color: var(--muted); font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
    .v { margin-top: 4px; font-size: 1.04rem; font-weight: 800; color: var(--navy); }
    .content-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 18px;
      box-shadow: 0 2px 10px rgba(15, 23, 42, .04);
    }
    .spot-list { margin-top: 8px; padding-left: 18px; }
    .spot-list li { margin: 9px 0; }
    .spot-list li::marker { color: var(--green); }
    .fare-table-wrap {
      margin-top: 12px;
      overflow-x: auto;
      border: 1px solid var(--border);
      border-radius: 14px;
      background: #fff;
    }
    .fare-table {
      width: 100%;
      min-width: 680px;
      border-collapse: collapse;
      font-size: .92rem;
    }
    .fare-table th,
    .fare-table td {
      padding: 12px 14px;
      border-bottom: 1px solid var(--border);
      text-align: left;
      vertical-align: middle;
    }
    .fare-table th {
      background: rgba(0, 44, 79, .06);
      color: var(--navy);
      font-size: .76rem;
      text-transform: uppercase;
      letter-spacing: .05em;
    }
    .fare-table tr:last-child td { border-bottom: 0; }
    .fare-table .fare-value { color: var(--navy); font-weight: 900; white-space: nowrap; }
    .fine-note {
      margin-top: 10px;
      color: var(--muted);
      font-size: .88rem;
    }
    .info-columns {
      margin-top: 14px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 14px;
    }
    .mini-list {
      margin-top: 10px;
      display: grid;
      gap: 8px;
    }
    .mini-list li {
      list-style: none;
      display: flex;
      gap: 8px;
      color: var(--muted);
      font-size: .93rem;
    }
    .mini-list i {
      color: var(--gold-d);
      margin-top: 4px;
      flex: 0 0 auto;
    }
    .faq { margin-top: 10px; display: grid; gap: 10px; }
    details {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 12px 14px;
    }
    summary { cursor: pointer; font-weight: 800; color: var(--navy); }
    details p { margin-top: 7px; color: var(--muted); font-size: .95rem; }
    .routes-grid {
      margin-top: 14px;
      display: grid;
      gap: 10px;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }
    .route-card {
      border: 1px solid var(--border);
      background: #fff;
      border-radius: 12px;
      padding: 12px 14px;
      font-size: .9rem;
      color: var(--muted);
      transition: all .2s ease;
    }
    .route-card:hover {
      border-color: rgba(255, 183, 3, .55);
      transform: translateY(-2px);
      color: var(--blue);
    }
    .foot {
      margin-top: 26px;
      background: linear-gradient(180deg, #001E36 0%, #000F1E 100%);
      color: rgba(255, 255, 255, .78);
      border-top: 1px solid rgba(255, 255, 255, .1);
      padding: 24px 0 18px;
    }
    .foot-inner {
      width: min(1180px, 92%);
      margin: 0 auto;
    }
    .foot-grid {
      display: grid;
      gap: 20px;
      grid-template-columns: 1.2fr 1fr 1fr;
    }
    .foot-col { min-width: 0; }
    .foot h3 {
      color: #fff;
      font-size: .98rem;
      margin-bottom: 8px;
    }
    .foot-logo img {
      position: absolute;
      left: -26%;
      top: -52%;
      width: 155%;
      height: auto;
      max-width: none;
      margin-left: 0;
    }
    .foot-logo {
      display: block;
      width: min(270px, 100%);
      aspect-ratio: 990 / 480;
      overflow: hidden;
      position: relative;
    }
    .foot-link,
    .foot-links a { color: rgba(255, 255, 255, .72); }
    .foot-link { display: block; margin: 5px 0; font-size: .87rem; }
    .foot-links { display: grid; gap: 6px; font-size: .87rem; }
    .foot-link:hover,
    .foot-links a:hover { color: #fff; }
    .foot-bar {
      margin-top: 14px;
      border-top: 1px solid rgba(255, 255, 255, .12);
      padding-top: 10px;
      font-size: .78rem;
      color: rgba(255, 255, 255, .55);
      display: flex;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
    }
    .mob-bar {
      position: fixed;
      bottom: 16px;
      left: 12px;
      right: 12px;
      z-index: 999;
      background: rgba(255,255,255,.98);
      border: 1px solid var(--border);
      border-radius: 22px;
      box-shadow: 0 10px 24px rgba(2, 8, 23, .18);
      display: none;
      align-items: center;
      gap: 8px;
      padding: 8px;
    }
    .mob-btn {
      padding: 11px 8px;
      text-align: center;
      font-weight: 800;
      font-size: .84rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      border-radius: 18px;
      line-height: 1;
    }
    .mob-btn.mb-c { background: var(--navy); color: #fff; flex: 1; min-width: 0; }
    .mob-btn.mb-w { background: var(--gold); color: var(--navy); flex: 1.2; min-width: 0; }
    .mob-btn.mb-q {
      background: var(--gold);
      color: var(--navy);
      flex: 0 0 44px;
      width: 44px;
      height: 44px;
      padding: 0;
      border-radius: 50%;
    }
    .mob-btn.mb-q span { display: none; }
    @media (max-width: 980px) {
      .nav-links { display: none; }
      .foot-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 700px) {
      .nav-ctas .btn-call span, .nav-ctas .btn-wa-n span { display: none; }
      .logo { width: clamp(128px, 39vw, 180px); }
      .logo img { width: 155%; }
      .hero {
        padding-top: 22px;
        background:
          linear-gradient(180deg, rgba(0, 44, 79, .86) 0%, rgba(0, 44, 79, .55) 100%),
          url('/assets/img/hero-mysore-taxi-service-768.webp') center / cover no-repeat;
      }
      .mob-bar { display: flex; }
      .container { width: min(1200px, 94%); }
      .fare-table { min-width: 620px; }
    }
    @media (max-width: 430px) {
      body { padding-bottom: 108px; }
      .logo { width: 116px; }
      .mob-btn { font-size: .78rem; }
      .mob-btn i { font-size: .92rem; }
      .mob-btn.mb-q { flex-basis: 40px; width: 40px; height: 40px; }
    }

    body,
    body *:not(i):not(.fa):not(.fas):not(.far):not(.fab):not(.fa-solid):not(.fa-regular):not(.fa-brands),
    button,
    input,
    select,
    textarea {
      font-family: var(--font-brand) !important;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    .hero h1,
    .route-title,
    .card-title,
    .btn,
    .nav-links a {
      letter-spacing: 0 !important;
    }
  