﻿/* Extracted inline component styles to reduce source visibility without changing UI */
.custom-autocomplete-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        z-index: 1050;
        max-height: 250px;
        overflow-y: auto;
        display: none;
        margin-top: 5px;
        border: 1px solid #eee;
    }
    .custom-suggestion {
        padding: 12px 15px;
        cursor: pointer;
        border-bottom: 1px solid #f8f9fa;
        display: flex;
        align-items: center;
        transition: background 0.2s;
        text-align: left;
    }
    .custom-suggestion:last-child {
        border-bottom: none;
    }
    .custom-suggestion:hover {
        background: #fdfdfd;
    }
    .custom-suggestion-icon {
        color: var(--primary-color);
        margin-right: 12px;
        font-size: 1.2rem;
    }
    .custom-suggestion-main {
        font-weight: 600;
        color: #333;
    }
    .custom-suggestion-secondary {
        font-size: 0.85rem;
        color: #888;
        margin-left: 6px;
    }

.site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 480px;
    margin-top: 0;
    background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
    color: #e5eefc;
    width: 100%;
    overflow-x: clip;
  }

  .site-footer .footer-shell {
    width: 100%;
    padding: 54px 0 20px;
  }

  .site-footer .footer-inner {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding-inline: clamp(10px, 1.1vw, 20px);
  }

  .site-footer .footer-grid-row,
  .site-footer .footer-legal-row {
    --rw-gutter-x: clamp(16px, 2vw, 26px);
    margin-right: 0;
    margin-left: 0;
  }

  .site-footer .footer-grid-row > *,
  .site-footer .footer-legal-row > * {
    min-width: 0;
  }

  @media (min-width: 992px) {
    .site-footer .footer-grid-row {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr) minmax(320px, 0.98fr);
      gap: clamp(24px, 2.6vw, 42px);
      align-items: start;
    }

    .site-footer .footer-grid-row > [class*="col-"] {
      width: auto;
      max-width: none;
      padding-right: 0;
      padding-left: 0;
      margin-top: 0;
    }
  }

  .footer-brand {
    max-width: none;
  }

  .footer-brand h3 {
    font-size: 1.65rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffff;
  }

  .footer-brand p,
  .footer-contact a,
  .footer-routes a,
  .footer-legal a {
    color: #cbd5e1;
    text-decoration: none;
  }

  .footer-contact {
    display: grid;
    gap: 10px;
    margin-top: 18px;
  }

  .footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
  }

  .footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
  }

  .footer-social a:hover {
    background: #111111;
    transform: translateY(-2px);
  }

  .footer-routes h3,
  .footer-legal h3,
  .footer-help h3 {
    color: #fff;
    font-weight: 800;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.9rem;
  }

  .footer-help h3 a {
    color: inherit;
    text-decoration: none;
  }

  .footer-help h3 a:hover {
    color: #e2e8f0;
  }

  .footer-routes ul,
  .footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
  }

  @media (min-width: 992px) {
    .footer-routes {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px 24px;
    }

    .footer-routes > [class*="col-"] {
      width: auto;
      max-width: none;
      padding-right: 0;
      padding-left: 0;
      margin-top: 0;
    }
  }

  .footer-help {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 22px;
    height: 100%;
    overflow: hidden;
  }

  .footer-help p {
    color: #cbd5e1;
    margin-bottom: 14px;
    line-height: 1.7;
  }

  .footer-help-list {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
  }

  .footer-help-list a {
    color: #e5eefc;
    text-decoration: none;
  }

  .footer-help-form {
    display: grid;
    gap: 12px;
  }

  .footer-help-form input,
  .footer-help-form textarea {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(15, 23, 42, 0.75);
    color: #ffffff;
    border-radius: 14px;
    padding: 13px 14px;
    outline: none;
  }

  .footer-help-form input::placeholder,
  .footer-help-form textarea::placeholder {
    color: #94a3b8;
  }

  .footer-help-form textarea {
    min-height: 96px;
    resize: vertical;
  }

  .footer-legal-row {
    margin-top: 12px;
  }

  .footer-legal ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
  }

  .footer-help-form button {
    border: none;
    border-radius: 999px;
    padding: 13px 18px;
    background: #ffffff;
    color: #0f172a;
    font-weight: 800;
    transition: 0.25s ease;
  }

  .footer-help-form button:hover {
    transform: translateY(-1px);
    background: #e2e8f0;
  }

  .footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px 0 16px;
  }

  .footer-bottom {
    display: grid;
    justify-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 0.92rem;
    text-align: center;
  }

  @media (max-width: 767.98px) {
    .site-footer .footer-shell {
      padding: 42px 0 20px;
    }

    .site-footer .footer-inner {
      padding-inline: 16px;
    }

    .footer-brand {
      max-width: none;
    }
  }

.support-page {
  background: #f7f7f5;
  color: #111111;
  min-height: 100%;
}

.support-hero {
  padding: clamp(82px, 11vw, 124px) 0 clamp(42px, 7vw, 72px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 247, 245, 0.86)),
    url("/images/route_highway.png") center/cover no-repeat;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.support-kicker {
  color: #5f6368;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.support-hero h1 {
  color: #111111;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.02;
  margin-bottom: 18px;
}

.support-lead {
  color: #3f4650;
  font-size: 1.12rem;
  line-height: 1.75;
  max-width: 760px;
  margin: 0;
}

.support-actions,
.support-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.support-btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  gap: 9px;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  text-decoration: none;
  transition: 0.22s ease;
}

.support-btn:hover {
  transform: translateY(-1px);
}

.support-btn-primary {
  background: #111111;
  color: #ffffff;
}

.support-btn-soft {
  background: #ffffff;
  color: #111111;
  border: 1px solid rgba(17, 17, 17, 0.12);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
}

.support-btn-outline {
  color: #111111;
  border: 1px solid rgba(17, 17, 17, 0.18);
}

.support-content {
  padding-block: clamp(42px, 7vw, 78px);
}

.support-grid,
.contact-card-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support-card,
.contact-card,
.contact-panel,
.support-band {
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.support-card,
.contact-card,
.contact-panel {
  padding: clamp(20px, 3vw, 30px);
}

.support-icon {
  align-items: center;
  background: #111111;
  border: 1px solid #111111;
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  font-size: 1.35rem;
  height: 48px;
  justify-content: center;
  margin-bottom: 18px;
  width: 48px;
}

.support-card h2,
.contact-card h2,
.contact-panel h2,
.support-band h2 {
  color: #111111;
  font-size: 1.35rem;
  font-weight: 850;
  margin-bottom: 16px;
}

.support-faq {
  display: grid;
  gap: 12px;
}

.support-faq details {
  background: #fafafa;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  padding: 14px 16px;
}

.support-faq summary {
  color: #111111;
  cursor: pointer;
  font-weight: 800;
}

.support-faq p,
.contact-card p,
.support-band p {
  color: #4b5563;
  line-height: 1.7;
  margin: 10px 0 0;
}

.support-band {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-top: 26px;
  padding: clamp(22px, 4vw, 34px);
}

.contact-card {
  display: flex;
  flex-direction: column;
}

.contact-card a {
  color: #111111;
  font-weight: 800;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.contact-card a:hover {
  color: #000000;
}

.contact-split {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  margin-top: 26px;
}

.contact-detail-list {
  display: grid;
  gap: 16px;
}

.contact-detail-list div {
  border-bottom: 1px solid rgba(17, 17, 17, 0.09);
  padding-bottom: 15px;
}

.contact-detail-list div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-detail-list span {
  color: #6b7280;
  display: block;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.contact-detail-list strong {
  color: #111111;
  display: block;
  line-height: 1.55;
}

.contact-map-panel {
  min-width: 0;
}

.contact-map {
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.1);
}

.contact-map iframe {
  border: 0;
  height: 100%;
  width: 100%;
}

@media (max-width: 991.98px) {
  .support-grid,
  .contact-card-grid,
  .contact-split {
    grid-template-columns: 1fr;
  }

  .support-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575.98px) {
  .support-actions,
  .support-band-actions,
  .support-btn {
    width: 100%;
  }

  .support-hero {
    padding-top: 70px;
  }

  .support-hero h1 {
    font-size: 2.4rem;
  }

  .support-lead {
    font-size: 1rem;
  }
}

.trust-section-shell {
        position: relative;
    }

    .trust-section-heading {
        max-width: 760px;
        margin: 0 auto 34px;
        text-align: center;
    }

    .trust-section-kicker {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 10px 18px;
        border-radius: 999px;
        background: linear-gradient(135deg, rgba(0, 168, 89, 0.1), rgba(17, 24, 39, 0.06));
        border: 1px solid rgba(0, 168, 89, 0.16);
        color: #0f5132;
        font-size: 0.86rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-bottom: 14px;
    }

    .trust-section-shell .premium-title {
        font-size: clamp(2rem, 3vw, 2.75rem);
        font-weight: 800;
        color: #121826;
        margin-bottom: 10px;
    }

    .trust-section-shell .premium-subtitle {
        max-width: 680px;
        margin: 0 auto;
        color: #5c6472;
        font-size: 1rem;
        line-height: 1.65;
    }

    .premium-grid,
    .package-grid {
        display: grid;
        gap: 26px;
    }

    .package-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .trust-card,
    .package-card {
        position: relative;
        display: flex;
        flex-direction: column;
        height: 100%;
        overflow: hidden;
        border-radius: 24px;
        border: 1px solid rgba(15, 23, 42, 0.08);
        background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
        transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
        text-decoration: none;
        content-visibility: auto;
        contain-intrinsic-size: 360px;
    }

    .trust-card:hover,
    .package-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 28px 54px rgba(15, 23, 42, 0.14);
        border-color: rgba(0, 168, 89, 0.2);
    }

    .trust-card-media,
    .package-image-container {
        position: relative;
        width: 100%;
        height: 228px;
        overflow: hidden;
        background: #e8edf3;
    }

    .trust-card-media::after,
    .package-image-container::after {
        content: "";
        position: absolute;
        inset: auto 0 0 0;
        height: 46%;
        background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 0.28) 100%);
        pointer-events: none;
    }

    .trust-card-media img,
    .package-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.55s ease;
    }

    .trust-card:hover .trust-card-media img,
    .package-card:hover .package-image {
        transform: scale(1.08);
    }

    .trust-badge,
    .package-badge {
        position: absolute;
        top: 16px;
        left: 16px;
        z-index: 2;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 9px 14px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
        color: #111827;
        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 0.03em;
        text-transform: uppercase;
    }

    .package-badge::before,
    .trust-badge::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #00a859;
        box-shadow: 0 0 0 4px rgba(0, 168, 89, 0.12);
    }

    .trust-card-body,
    .package-card-body {
        display: flex;
        flex: 1;
        flex-direction: column;
        gap: 18px;
        padding: 22px 22px 24px;
    }

    .trust-card-copy,
    .package-card-copy {
        display: flex;
        flex-direction: column;
        gap: 9px;
    }

    .trust-card-title,
    .package-pill {
        margin: 0;
        color: #121826;
        font-size: 1.3rem;
        font-weight: 800;
        line-height: 1.28;
    }

    .trust-card-subtitle,
    .package-subtitle {
        margin: 0;
        color: #5f6875;
        font-size: 0.96rem;
        line-height: 1.6;
    }

    .trust-card-footer {
        margin-top: auto;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 16px;
        padding-top: 16px;
        border-top: 1px solid rgba(15, 23, 42, 0.08);
    }

    .trust-price-line {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        margin-top: auto;
        padding-top: 0;
        border-top: none;
        color: inherit;
    }

    .trust-price-label {
        color: #6b7280;
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.02em;
        text-transform: uppercase;
    }

    .trust-price-value {
        color: #111827;
        font-size: 1.48rem;
        font-weight: 900;
        line-height: 1.1;
    }

    .trust-card-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-width: 136px;
        min-height: 46px;
        padding: 0 18px;
        border-radius: 999px;
        background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
        color: #ffffff;
        font-size: 0.92rem;
        font-weight: 800;
        letter-spacing: 0.02em;
        text-decoration: none;
        box-shadow: 0 14px 26px rgba(17, 24, 39, 0.18);
        transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    }

    .trust-card:hover .trust-card-cta,
    .package-card:hover .trust-card-cta {
        transform: translateY(-1px);
        box-shadow: 0 16px 28px rgba(17, 24, 39, 0.24);
        color: #ffffff;
    }

    .trust-card-cta i {
        font-size: 0.95rem;
    }

    .famous-packages-section {
        padding: 28px 0 84px;
        background: #fff;
    }

    @media (min-width: 600px) and (max-width: 991px) {
        .package-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (max-width: 768px) {
        .trust-section-heading {
            margin-bottom: 26px;
        }

        .trust-section-kicker {
            padding: 8px 14px;
            font-size: 0.75rem;
            margin-bottom: 12px;
        }

        .trust-section-shell .premium-subtitle {
            font-size: 0.94rem;
            line-height: 1.55;
        }

        .premium-grid,
        .package-grid {
            gap: 18px;
        }

        .trust-card-media,
        .package-image-container {
            height: 208px;
        }

        .trust-card-body,
        .package-card-body {
            gap: 16px;
            padding: 18px 18px 20px;
        }

        .trust-card-title,
        .package-pill {
            font-size: 1.14rem;
        }

        .trust-card-subtitle,
        .package-subtitle {
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .trust-card-footer {
            flex-direction: column;
            align-items: stretch;
            gap: 12px;
        }

        .trust-card-cta {
            width: 100%;
            min-height: 44px;
        }

        .trust-price-value {
            font-size: 1.32rem;
        }
    }

    @media (max-width: 599px) {
        .package-grid {
            grid-template-columns: 1fr;
        }
    }

/* Premium-light global refinement */
:root {
    --rwtm-page-bg: #f5f5f3;
    --rwtm-alt-bg: #f1efe9;
    --rwtm-card-bg: #fafaf8;
    --rwtm-heading: #161616;
    --rwtm-copy: #4d4d4d;
    --rwtm-soft-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
}

body {
    background: var(--rwtm-page-bg);
    color: var(--rwtm-copy);
}

main,
.container-fluid {
    background: transparent;
}

h1,
h2,
h3,
.premium-title,
.cabs-heading-text,
.support-hero h1,
.seo-hero h1,
.blog-hero h1 {
    color: var(--rwtm-heading);
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

p,
.premium-subtitle,
.trust-card-subtitle,
.package-subtitle,
.support-lead,
.seo-hero__lead,
.blog-hero p {
    color: var(--rwtm-copy);
}

.why-travel-section,
#routes,
#services,
.famous-packages-section,
.google-reviews-section {
    background: var(--rwtm-page-bg);
}

.why-travel-section--alt {
    background: var(--rwtm-alt-bg);
}

#services {
    padding-top: 90px;
    padding-bottom: 90px;
}

.trust-section-shell {
    padding-top: 84px;
    padding-bottom: 84px;
}

.trust-card,
.package-card,
.support-card,
.seo-panel,
.blog-card,
.fleet-card,
.stand-out-item {
    background: var(--rwtm-card-bg);
    border-radius: 18px;
    box-shadow: var(--rwtm-soft-shadow);
    border-color: rgba(17, 17, 17, 0.08);
}

.trust-card:hover,
.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.06);
}

.trust-card-cta,
.support-btn,
.seo-btn,
.cta-btn {
    background: #111111;
    color: #ffffff;
    border-radius: 12px;
    padding: 14px 30px;
    font-weight: 600;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.trust-card-cta:hover,
.support-btn:hover,
.seo-btn:hover,
.cta-btn:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.10);
}

.trust-card-media img,
.package-image,
.why-travel-image {
    filter: contrast(1.04) saturate(1.04);
}

@media (max-width: 768px) {
    #services {
        padding-top: 54px;
        padding-bottom: 54px;
    }

    .trust-section-shell {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    h1,
    h2,
    h3,
    .premium-title,
    .cabs-heading-text {
        letter-spacing: -0.3px;
    }

    .trust-card,
    .package-card,
    .support-card,
    .seo-panel,
    .blog-card,
    .fleet-card,
    .stand-out-item {
        border-radius: 16px;
    }
}

