      :root {
        --navy: #0f2d5e;
        --navy-mid: #1a3f7a;
        --blue: #1e56b0;
        --sky: #3b82f6;
        --accent: #f97316;
        --accent-dk: #ea6100;
        --cream: #f8f5ef;
        --sand: #ede9e0;
        --white: #ffffff;
        --ink: #0d1b2a;
        --muted: #5a6a7e;
        --light: #eef2f9;
        --border: #d8e0ed;
        --shadow-sm: 0 2px 8px rgba(15, 45, 94, 0.08);
        --shadow-md: 0 6px 24px rgba(15, 45, 94, 0.12);
        --shadow-lg: 0 16px 48px rgba(15, 45, 94, 0.16);
        --radius: 14px;
        --radius-lg: 24px;
      }

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

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: "DM Sans", system-ui, sans-serif;
        background: var(--cream);
        color: var(--ink);
        line-height: 1.65;
        overflow-x: hidden;
      }

      h1,
      h2,
      h3,
      h4,
      h5,
      .brand-name {
        font-family: "Syne", sans-serif;
        line-height: 1.15;
        letter-spacing: -0.02em;
      }

      a {
        text-decoration: none;
        transition: color 0.2s;
      }

      /* ===== NAVBAR ===== */
      .site-nav {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-sm);
        padding: 0.75rem 0;
      }

      .site-nav .container-fluid {
        max-width: 1280px;
        margin: 0 auto;
      }

      .nav-logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
      }
      .nav-logo img {
        height: 44px;
        width: auto;
      }
      .brand-name {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--navy);
        white-space: nowrap;
      }

      .navbar-toggler {
        border: 1.5px solid var(--border);
        border-radius: 8px;
        padding: 6px 10px;
        color: var(--navy);
      }
      .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(30, 86, 176, 0.15);
        outline: none;
      }

      .nav-links {
        list-style: none;
        display: flex;
        align-items: center;
        gap: 0.25rem;
      }
      .nav-links a {
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--ink);
        padding: 0.45rem 0.85rem;
        border-radius: 8px;
        transition: all 0.2s;
      }
      .nav-links a:hover {
        background: var(--light);
        color: var(--blue);
      }
      .nav-links .active-link {
        color: var(--blue);
        font-weight: 700;
        border-bottom: 2px solid var(--accent);
        padding-bottom: calc(0.45rem - 2px);
        border-radius: 0;
        background: transparent;
      }

      .nav-cta {
        background: var(--accent);
        color: var(--white) !important;
        border-radius: 50px !important;
        padding: 0.5rem 1.2rem !important;
        font-weight: 600 !important;
      }
      .nav-cta:hover {
        background: var(--accent-dk) !important;
        color: var(--white) !important;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
      }

      .dropdown-menu {
        border: 1px solid var(--border);
        border-radius: var(--radius);
        box-shadow: var(--shadow-md);
        padding: 0.5rem;
        margin-top: 0.5rem;
      }
      .dropdown-item {
        border-radius: 8px;
        padding: 0.55rem 0.9rem;
        font-size: 0.88rem;
        color: var(--ink);
        font-weight: 500;
      }
      .dropdown-item:hover {
        background: var(--light);
        color: var(--blue);
      }
      .dropdown-divider {
        margin: 0.2rem 0;
        border-color: var(--border);
      }

      .nav-contact-badge {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        background: var(--light);
        border-radius: 50px;
        padding: 0.4rem 0.9rem;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--navy);
      }
      .nav-contact-badge i {
        color: var(--blue);
      }
      .nav-contact-badge a {
        color: var(--navy);
        font-weight: 600;
      }

      /* ===== HERO ===== */
      .hero {
        background: linear-gradient(
          135deg,
          var(--navy) 0%,
          var(--navy-mid) 50%,
          var(--blue) 100%
        );
        position: relative;
        overflow: hidden;
        padding: 80px 0 60px;
        min-height: 88vh;
        display: flex;
        align-items: center;
      }

      .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
          radial-gradient(
            ellipse 800px 600px at 70% 50%,
            rgba(59, 130, 246, 0.18) 0%,
            transparent 60%
          ),
          radial-gradient(
            ellipse 400px 400px at 10% 80%,
            rgba(249, 115, 22, 0.12) 0%,
            transparent 50%
          );
        pointer-events: none;
      }

      /* Grid texture overlay */
      .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
          linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
        background-size: 40px 40px;
        pointer-events: none;
      }

      .hero-content {
        position: relative;
        z-index: 2;
      }

      .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(249, 115, 22, 0.18);
        border: 1px solid rgba(249, 115, 22, 0.4);
        color: #fbb96a;
        border-radius: 50px;
        padding: 0.35rem 1rem;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        margin-bottom: 1.5rem;
        animation: fadeUp 0.6s ease both;
      }

      .hero h1 {
        font-size: clamp(2.4rem, 5vw, 4rem);
        font-weight: 800;
        color: var(--white);
        margin-bottom: 1.25rem;
        animation: fadeUp 0.6s 0.1s ease both;
      }

      .hero h1 .highlight {
        color: var(--accent);
        position: relative;
        display: inline-block;
      }

      .hero-lead {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.72);
        max-width: 520px;
        margin-bottom: 2rem;
        animation: fadeUp 0.6s 0.2s ease both;
      }

      .hero-price-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        padding: 0.5rem 1.1rem;
        color: var(--white);
        font-size: 0.9rem;
        font-weight: 500;
        margin-bottom: 2rem;
        animation: fadeUp 0.6s 0.25s ease both;
      }
      .hero-price-badge strong {
        color: #fcd34d;
        font-size: 1rem;
      }

      .hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        align-items: center;
        animation: fadeUp 0.6s 0.3s ease both;
      }

      .btn-hero-primary {
        background: var(--accent);
        color: var(--white);
        padding: 0.85rem 2rem;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1rem;
        border: none;
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
      }
      .btn-hero-primary:hover {
        background: var(--accent-dk);
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(249, 115, 22, 0.5);
        color: var(--white);
      }

      .btn-hero-secondary {
        background: rgba(255, 255, 255, 0.12);
        color: var(--white);
        padding: 0.85rem 1.8rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.95rem;
        border: 1.5px solid rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: all 0.3s;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
      }
      .btn-hero-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        color: var(--white);
      }

      .hero-stats {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        animation: fadeUp 0.6s 0.45s ease both;
      }
      .hero-stat-item {
        text-align: left;
      }
      .hero-stat-num {
        font-family: "Syne", sans-serif;
        font-size: 2rem;
        font-weight: 800;
        color: var(--white);
        line-height: 1;
      }
      .hero-stat-label {
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.6);
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-top: 0.2rem;
      }

      /* Carousel in hero */
      .hero-carousel-wrap {
        position: relative;
        z-index: 2;
        animation: fadeUp 0.6s 0.2s ease both;
      }

      .hero-carousel-wrap .carousel {
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
      }
      .hero-carousel-wrap .carousel-item img {
        width: 100%;
        height: 420px;
        object-fit: cover;
        border-radius: var(--radius-lg);
      }
      .hero-carousel-wrap .carousel-item::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          180deg,
          transparent 60%,
          rgba(15, 45, 94, 0.4) 100%
        );
        border-radius: var(--radius-lg);
      }

      /* ===== TRUST BAR ===== */
      .trust-bar {
        background: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 1rem 0;
      }
      .trust-items {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
      }
      .trust-item {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--muted);
      }
      .trust-item i {
        color: var(--blue);
        font-size: 1.1rem;
      }

      /* ===== SECTION DEFAULTS ===== */
      .section-label {
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--accent);
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 0.75rem;
      }
      .section-label::before {
        content: "";
        display: block;
        width: 24px;
        height: 2px;
        background: var(--accent);
      }

      .section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.8rem);
        font-weight: 800;
        color: var(--navy);
      }
      .section-lead {
        font-size: 1rem;
        color: var(--muted);
        max-width: 600px;
        margin-top: 0.75rem;
        line-height: 1.7;
      }

      /* ===== SERVICES ===== */
      .services-section {
        padding: 100px 0;
        background: var(--cream);
      }

      .service-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--border);
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        height: 100%;
        display: flex;
        flex-direction: column;
      }
      .service-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(30, 86, 176, 0.2);
      }

      .service-card-img {
        height: 200px;
        overflow: hidden;
        position: relative;
      }
      .service-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
      }
      .service-card:hover .service-card-img img {
        transform: scale(1.07);
      }

      .service-card-body {
        padding: 1.5rem;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
      }
      .service-card-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 0.5rem;
      }
      .service-card-desc {
        font-size: 0.88rem;
        color: var(--muted);
        line-height: 1.6;
        margin-bottom: 1rem;
      }

      .btn-card {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        background: var(--light);
        color: var(--blue);
        padding: 0.55rem 1.1rem;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 600;
        border: none;
        cursor: pointer;
        transition: all 0.2s;
        width: fit-content;
      }
      .btn-card:hover {
        background: var(--blue);
        color: var(--white);
        transform: translateX(3px);
      }

      /* ===== CONTACT / FORM ===== */
      .contact-section {
        background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
        padding: 100px 0;
        position: relative;
        overflow: hidden;
      }
      .contact-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
          ellipse 600px 400px at 80% 50%,
          rgba(59, 130, 246, 0.2) 0%,
          transparent 60%
        );
        pointer-events: none;
      }

      .contact-text-col {
        position: relative;
        z-index: 2;
      }
      .contact-section .section-title {
        color: var(--white);
      }
      .contact-section .section-lead {
        color: rgba(255, 255, 255, 0.7);
      }

      .contact-detail {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.85rem 1.2rem;
        border-radius: var(--radius);
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.15);
        margin-top: 1rem;
        color: var(--white);
        font-weight: 600;
      }
      .contact-detail i {
        font-size: 1.2rem;
        color: #93c5fd;
      }
      .contact-detail a {
        color: var(--white);
        font-weight: 600;
      }
      .contact-detail a:hover {
        color: #fcd34d;
      }

      .contact-form-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 2.5rem;
        box-shadow: var(--shadow-lg);
        position: relative;
        z-index: 2;
      }
      .contact-form-card h3 {
        font-size: 1.4rem;
        font-weight: 800;
        color: var(--navy);
        margin-bottom: 1.5rem;
      }

      .form-group {
        margin-bottom: 1rem;
      }
      .form-label {
        font-size: 0.82rem;
        font-weight: 600;
        color: var(--ink);
        margin-bottom: 0.35rem;
        display: block;
      }

      .form-control {
        width: 100%;
        padding: 0.7rem 1rem;
        border: 1.5px solid var(--border);
        border-radius: 10px;
        font-family: "DM Sans", sans-serif;
        font-size: 0.9rem;
        color: var(--ink);
        background: var(--cream);
        transition: all 0.2s;
        outline: none;
      }
      .form-control:focus {
        border-color: var(--sky);
        background: var(--white);
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
      }
      .form-control::placeholder {
        color: #b0bec5;
      }

      .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
      }

      .btn-submit {
        width: 100%;
        padding: 0.9rem;
        background: linear-gradient(135deg, var(--blue) 0%, var(--sky) 100%);
        color: var(--white);
        border: none;
        border-radius: 10px;
        font-family: "Syne", sans-serif;
        font-size: 1rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s;
        margin-top: 0.5rem;
      }
      .btn-submit:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(30, 86, 176, 0.4);
      }
      .btn-submit:disabled {
        background: var(--border);
        color: var(--muted);
        cursor: not-allowed;
      }

      /* ===== CONTENT FEATURES ===== */
      .features-section {
        padding: 100px 0;
        background: var(--white);
      }
      .feature-block {
        padding: 3rem 0;
        border-bottom: 1px solid var(--border);
      }
      .feature-block:last-child {
        border-bottom: none;
      }

      .feature-tag {
        display: inline-block;
        background: var(--light);
        color: var(--blue);
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.07em;
        padding: 0.3rem 0.8rem;
        border-radius: 50px;
        margin-bottom: 0.75rem;
      }
      .feature-title {
        font-size: clamp(1.4rem, 2.5vw, 2rem);
        font-weight: 800;
        color: var(--navy);
        margin-bottom: 1rem;
      }
      .feature-body {
        color: var(--muted);
        line-height: 1.8;
        font-size: 0.97rem;
      }
      .feature-list {
        list-style: none;
        padding: 0;
        margin-top: 1rem;
      }
      .feature-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.6rem;
        padding: 0.55rem 0;
        font-size: 0.93rem;
        color: var(--ink);
        border-bottom: 1px solid var(--border);
      }
      .feature-list li:last-child {
        border-bottom: none;
      }
      .feature-list li::before {
        content: "→";
        color: var(--accent);
        font-weight: 700;
        margin-top: 1px;
        flex-shrink: 0;
      }

      .feature-img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        aspect-ratio: 4/3;
        object-fit: cover;
        transition:
          transform 0.4s ease,
          box-shadow 0.4s ease;
      }
      .feature-img:hover {
        transform: scale(1.02);
        box-shadow: var(--shadow-lg);
      }

      /* ===== WHY US ===== */
      .why-section {
        padding: 100px 0;
        background: var(--cream);
        position: relative;
      }

      .why-card {
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 2rem;
        text-align: center;
        transition: all 0.3s;
        height: 100%;
      }
      .why-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-4px);
        border-color: rgba(30, 86, 176, 0.2);
      }

      .why-icon {
        width: 64px;
        height: 64px;
        background: var(--light);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        color: var(--blue);
        margin: 0 auto 1.25rem;
        transition: all 0.3s;
      }
      .why-card:hover .why-icon {
        background: var(--blue);
        color: var(--white);
        transform: scale(1.1);
      }

      .why-card-title {
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 0.5rem;
      }
      .why-card-text {
        font-size: 0.87rem;
        color: var(--muted);
        line-height: 1.7;
      }

      /* ===== INTERCITY ===== */
      .intercity-section {
        padding: 100px 0;
        background: linear-gradient(
          135deg,
          var(--navy) 0%,
          var(--navy-mid) 100%
        );
        position: relative;
        overflow: hidden;
      }
      .intercity-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(
          circle at 80% 20%,
          rgba(59, 130, 246, 0.15) 0%,
          transparent 50%
        );
        pointer-events: none;
      }
      .intercity-section .section-title {
        color: var(--white);
      }
      .intercity-section .section-lead {
        color: rgba(255, 255, 255, 0.65);
        max-width: 800px;
      }

      .route-card {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: var(--radius);
        padding: 1.5rem;
        transition: all 0.3s;
        position: relative;
        z-index: 1;
      }
      .route-card:hover {
        background: rgba(255, 255, 255, 0.14);
        border-color: rgba(255, 255, 255, 0.25);
        transform: translateY(-3px);
      }
      .route-card-title {
        font-family: "Syne", sans-serif;
        font-size: 1rem;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 0.5rem;
      }
      .route-card-arrow {
        color: var(--accent);
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
      }
      .route-card-text {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.6);
        line-height: 1.6;
      }

      /* ===== LOTTIE / WHY ===== */
      .why-text-section {
        padding: 100px 0;
        background: var(--white);
      }
      .why-text-quote {
        font-size: clamp(1.2rem, 2vw, 1.6rem);
        font-family: "Syne", sans-serif;
        font-weight: 700;
        color: var(--navy);
        line-height: 1.5;
        border-left: 4px solid var(--accent);
        padding-left: 1.5rem;
        margin-bottom: 1.5rem;
      }

      /* ===== FOOTER ===== */
      .site-footer {
        background: var(--ink);
        color: rgba(255, 255, 255, 0.65);
        padding: 3rem 0 2rem;
      }
      .footer-brand {
        font-family: "Syne", sans-serif;
        font-weight: 800;
        color: var(--white);
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
      }
      .footer-tagline {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.45);
      }
      .footer-link {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.88rem;
        font-weight: 500;
        display: block;
        margin-bottom: 0.5rem;
        transition: color 0.2s;
      }
      .footer-link:hover {
        color: var(--accent);
      }
      .footer-col-title {
        font-family: "Syne", sans-serif;
        font-weight: 700;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.07em;
        color: rgba(255, 255, 255, 0.35);
        margin-bottom: 1rem;
      }
      .footer-divider {
        border-color: rgba(255, 255, 255, 0.08);
        margin: 2rem 0;
      }
      .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.35);
      }
      .footer-social {
        display: flex;
        gap: 0.75rem;
      }
      .footer-social a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.5);
        font-size: 1rem;
        transition: all 0.2s;
      }
      .footer-social a:hover {
        background: var(--accent);
        border-color: var(--accent);
        color: var(--white);
      }

      /* ===== ANIMATIONS ===== */
      @keyframes fadeUp {
        from {
          opacity: 0;
          transform: translateY(24px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .reveal {
        opacity: 0;
        transform: translateY(32px);
        transition:
          opacity 0.6s ease,
          transform 0.6s ease;
      }
      .reveal.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* ===== RESPONSIVE ===== */
      @media (max-width: 768px) {
        .hero {
          padding: 60px 0 50px;
          min-height: auto;
        }
        .hero-carousel-wrap {
          margin-top: 3rem;
        }
        .form-row {
          grid-template-columns: 1fr;
        }
        .hero-stats {
          gap: 1.5rem;
        }
        .contact-form-card {
          padding: 1.5rem;
        }
        .feature-block .row > div + div {
          margin-top: 2rem;
        }
        .responsive-nav-wrap {
   display: flex;
    flex-wrap: wrap;
    flex-direction: column;
        }
      }

      @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
          animation: none !important;
          transition: none !important;
        }
      }
  