:root {
    --ink: #221f1c;
    --ink-soft: #705748;
    --sea: #fb923c;
    --sea-deep: #ea580c;
    --sun: #f59e0b;
    --sun-soft: #fff7ed;
    --coral: #0f766e;
    --sand: #fff8f1;
    --surface: #ffffff;
    --surface-alt: #fff3e6;
    --line: rgba(34, 31, 28, 0.12);
    --text: #665f59;
    --text-strong: #221f1c;
    --glass: rgba(255, 255, 255, 0.88);
    --glass-strong: rgba(255, 255, 255, 0.96);
    --glass-border: rgba(234, 88, 12, 0.16);
    --shadow: 0 24px 60px rgba(34, 31, 28, 0.1);
    --shadow-soft: 0 14px 34px rgba(194, 65, 12, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Lato", "Segoe UI", sans-serif;
    font-size: 15px;
    letter-spacing: 0;
    color: var(--text);
    background: linear-gradient(180deg, #ffffff 0%, #fff8f1 48%, #f7fbfa 100%);
}

body::before,
body::after {
    content: "";
    display: none;
    position: fixed;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    filter: blur(42px);
    opacity: 0.36;
    pointer-events: none;
    z-index: 0;
}

body::before {
    top: -140px;
    right: -80px;
    background: none;
}

body::after {
    left: -110px;
    bottom: 8%;
    background: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: var(--text-strong);
    font-family: "Lato", "Segoe UI", sans-serif;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.08;
}

p {
    line-height: 1.82;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

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

img {
    max-width: 100%;
    display: block;
}

.container {
    position: relative;
    z-index: 1;
}

.topbar {
    background: linear-gradient(135deg, rgba(34, 31, 28, 0.92), rgba(194, 65, 12, 0.72));
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.topbar .container {
    min-height: 54px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.topbar-copy,
.topbar-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
}

.topbar-meta span,
.topbar a {
    color: rgba(255, 255, 255, 0.9);
}

.topbar-social {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.topbar-social a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.2s ease, background 0.2s ease;
}

.topbar-social a:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.1));
}

.topbar-social i {
    font-size: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.main-nav {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.3));
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 0.9rem 0;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 0;
}

.brand-logo-image {
    width: 220px;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.brand-tagline {
    padding-left: 0.4rem;
    font-size: 0.68rem;
    letter-spacing: 0;
    text-transform: uppercase;
    color: rgba(34, 31, 28, 0.68);
    font-weight: 600;
}

.main-nav .navbar-collapse {
    align-items: center;
}

.main-nav .navbar-nav {
    align-items: center;
    gap: 0.35rem;
}

.main-nav .nav-link {
    position: relative;
    padding: 0.55rem 0.95rem;
    font-family: "Lato", "Segoe UI", sans-serif;
    font-weight: 600;
    color: rgba(34, 31, 28, 0.86);
}

.main-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0.95rem;
    right: 0.95rem;
    bottom: 0.3rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--coral), var(--sea));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link:focus::after {
    transform: scaleX(1);
}

.nav-cta {
    margin-left: 1rem;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    font-family: "Lato", "Segoe UI", sans-serif;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--sea-deep) 0%, var(--sea) 60%, var(--sun) 100%);
    box-shadow: 0 14px 28px rgba(194, 65, 12, 0.24);
}

.menu-button {
    border: 1px solid rgba(255, 255, 255, 0.34);
    padding: 0.55rem 0.7rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.menu-button:focus {
    outline: none;
    box-shadow: none;
}

.menu-button span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
}

.menu-button span + span {
    margin-top: 5px;
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 4.25rem 0 3rem;
}

.hero-travel-background {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.28)),
        url("../img/gallery/vehicle-gallery-12-highway-traveller.jpeg");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.92;
    pointer-events: none;
}

.hero-section::before,
.hero-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-section::before {
    width: 420px;
    height: 420px;
    top: -120px;
    right: -150px;
    background: none;
}

.hero-section::after {
    width: 360px;
    height: 360px;
    left: -120px;
    bottom: -160px;
    background: none;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(23, 49, 66, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 49, 66, 0.03) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 85%);
    opacity: 0.55;
    pointer-events: none;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
    color: var(--sea-deep);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0;
    font-family: "Lato", "Segoe UI", sans-serif;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 52px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--sea), var(--sun));
}

.hero-title {
    max-width: 10ch;
    margin-bottom: 1rem;
    font-size: 3.9rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 0.95;
}

.hero-copy {
    max-width: 620px;
    margin-bottom: 1.25rem;
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 1.35rem;
}

.action-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.95rem 1.35rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    font-family: "Lato", "Segoe UI", sans-serif;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.action-button {
    color: #fff;
    background: linear-gradient(135deg, var(--sea-deep) 0%, var(--sea) 64%, var(--sun) 100%);
    box-shadow: 0 18px 34px rgba(194, 65, 12, 0.22);
}

.ghost-button {
    color: var(--ink);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.24));
}

.action-button:hover,
.ghost-button:hover {
    transform: translateY(-2px);
}

.hero-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.hero-list li {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.14));
    border: 1px solid var(--glass-border);
    box-shadow: 0 14px 24px rgba(11, 37, 69, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    font-weight: 600;
}

.hero-list i {
    color: var(--sea-deep);
}

.hero-card {
    position: relative;
    padding: 1.6rem;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.26));
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto auto;
    width: 190px;
    height: 190px;
    background: none;
    pointer-events: none;
}

.hero-photo {
    width: 100%;
    height: 190px;
    object-fit: cover;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.14));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.route-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    color: var(--sea-deep);
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.12), rgba(255, 255, 255, 0.26));
    border: 1px solid rgba(255, 255, 255, 0.28);
    font-weight: 700;
}

.hero-card h2 {
    max-width: 11ch;
    margin-bottom: 0.65rem;
    font-size: 1.75rem;
}

.hero-card p {
    margin-bottom: 1rem;
}

.fleet-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin-bottom: 0.95rem;
}

.fleet-mini-grid article {
    padding: 1rem;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.fleet-mini-grid strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.55rem;
    font-family: "Lato", "Segoe UI", sans-serif;
    color: var(--sea-deep);
}

.fleet-mini-grid span {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-strong);
}

.journey-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.journey-tags span {
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.12));
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: var(--text-strong);
    font-size: 0.88rem;
    font-weight: 700;
}

.visuals-section {
    padding-top: 1.25rem;
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.visual-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    align-items: center;
    padding: 1.8rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.24));
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.visual-copy h2 {
    margin-bottom: 0.9rem;
    font-size: 2rem;
}

.visual-photo {
    width: 100%;
    max-width: 310px;
    height: 230px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    justify-self: end;
}

.stats-band {
    margin-top: -0.4rem;
    padding-bottom: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.stat-card {
    padding: 1.45rem 1.5rem;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.16));
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.stat-card h3 {
    margin-bottom: 0.35rem;
    font-size: 1.15rem;
}

.section-shell {
    padding: 5.5rem 0;
}

.section-warm {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 248, 241, 0.72) 100%),
        var(--surface);
}

.section-ink {
    background: linear-gradient(135deg, rgba(34, 31, 28, 0.94), rgba(194, 65, 12, 0.72), rgba(255, 255, 255, 0.16));
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: rgba(255, 255, 255, 0.84);
}

.section-ink h2,
.section-ink h3 {
    color: #fff;
}

.section-intro {
    max-width: 700px;
    margin-bottom: 2.5rem;
}

.section-intro h2 {
    margin-bottom: 0.9rem;
    font-size: 2.7rem;
}

.card-grid {
    display: grid;
    gap: 1.15rem;
}

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

.card-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.fleet-card,
.tour-card,
.promise-card,
.contact-card,
.info-card {
    position: relative;
    height: 100%;
    padding: 1.8rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.26));
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.service-card > i,
.promise-card > i,
.contact-card > i,
.info-card > i {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 18px;
    color: #fff;
    font-size: 1.3rem;
    background: linear-gradient(135deg, var(--sea-deep) 0%, var(--sea) 62%, var(--sun) 100%);
    box-shadow: 0 12px 26px rgba(194, 65, 12, 0.2);
}

.service-card h3,
.fleet-card h3,
.tour-card h3,
.promise-card h3,
.contact-card h3,
.info-card h3 {
    margin-bottom: 0.7rem;
    font-size: 1.45rem;
}

.service-card p,
.fleet-card p,
.tour-card p,
.promise-card p,
.contact-card p,
.info-card p {
    margin-bottom: 0;
}

.about-wrap {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.2rem;
    align-items: stretch;
}

.story-card,
.promise-panel,
.booking-panel {
    height: 100%;
    padding: 2rem;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.26));
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.story-card p + p {
    margin-top: 1rem;
}

.check-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.check-list li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.1), rgba(255, 255, 255, 0.22));
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.check-list i {
    margin-top: 0.15rem;
    color: var(--sea-deep);
}

.check-list strong,
.contact-list strong {
    display: block;
    margin-bottom: 0.18rem;
    color: var(--text-strong);
}

.promise-stack {
    display: grid;
    gap: 0.95rem;
}

.promise-card {
    padding: 1.3rem 1.35rem;
}

.promise-card i {
    margin-bottom: 0.8rem;
}

.fleet-card {
    overflow: hidden;
}

.fleet-photo,
.booking-photo {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.28));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.fleet-photo {
    height: 210px;
    margin-bottom: 1rem;
}

.booking-photo {
    height: 250px;
    margin-bottom: 1.15rem;
}

.fleet-size {
    display: inline-flex;
    margin-bottom: 0.9rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.12), rgba(255, 237, 213, 0.42));
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: var(--sea-deep);
    font-weight: 700;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.15rem;
}

.feature-tags span {
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.24));
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: var(--text-strong);
    font-size: 0.86rem;
    font-weight: 700;
}

.tour-card {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.24));
}

.vehicle-gallery-section {
    background: #ffffff;
}

.vehicle-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
    align-items: stretch;
}

.vehicle-photo-card {
    position: relative;
    height: 320px;
    overflow: hidden;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.vehicle-photo-frame {
    width: 100%;
    height: 100%;
    margin: 0;
    background: #fff8f1;
    overflow: hidden;
}

.vehicle-photo-card.is-wide {
    grid-column: span 1;
}

.vehicle-photo-card.is-wide .vehicle-photo-frame {
    height: 100%;
}

.vehicle-photo-card.is-tall .vehicle-photo-frame {
    height: 100%;
}

.vehicle-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.vehicle-photo-copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 4.25rem 1rem 1rem;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(34, 31, 28, 0) 0%, rgba(34, 31, 28, 0.86) 72%, rgba(34, 31, 28, 0.94) 100%);
}

.vehicle-photo-copy h3 {
    margin-bottom: 0.35rem;
    color: #ffffff;
    font-size: 1.12rem;
}

.vehicle-photo-copy p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.9rem;
    line-height: 1.55;
}

.vehicle-photo-copy .fleet-size {
    margin-bottom: 0.55rem;
    color: #fed7aa;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.22);
}

.tour-tag {
    display: inline-flex;
    margin-bottom: 0.85rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    color: var(--sea-deep);
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.1), rgba(255, 255, 255, 0.24));
    border: 1px solid rgba(255, 255, 255, 0.24);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.route-line {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.1rem;
}

.route-line span {
    padding: 0.5rem 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.12));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    font-weight: 700;
    font-size: 0.83rem;
}

.pricing-layout {
    display: grid;
    gap: 1.15rem;
}

.package-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
}

.pricing-card,
.rate-table-card {
    height: 100%;
    padding: 1.65rem;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.pricing-card h3,
.rate-table-card h3 {
    margin-bottom: 0.45rem;
    font-size: 1.45rem;
}

.pricing-meta {
    margin-bottom: 1.2rem;
    font-weight: 700;
    color: var(--ink-soft);
}

.price-list {
    display: grid;
    gap: 0.75rem;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 8px;
    background: #fff8f1;
    border: 1px solid rgba(234, 88, 12, 0.14);
}

.price-row span {
    color: var(--text);
    font-weight: 700;
}

.price-row strong {
    white-space: nowrap;
    color: var(--sea-deep);
    font-size: 1.25rem;
}

.rate-table-card {
    display: grid;
    gap: 1.1rem;
}

.rate-table-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.rate-table-heading p {
    max-width: 430px;
    margin-bottom: 0;
}

.rate-table-wrap {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid var(--line);
}

.rate-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    background: #ffffff;
}

.rate-table th,
.rate-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(34, 31, 28, 0.09);
    text-align: left;
}

.rate-table th {
    color: #ffffff;
    background: #221f1c;
    font-weight: 800;
}

.rate-table tr:last-child td {
    border-bottom: 0;
}

.rate-table td:last-child {
    color: var(--sea-deep);
    font-weight: 800;
}

.pricing-note {
    margin-bottom: 0;
    padding: 0.95rem 1rem;
    border-radius: 8px;
    background: #fff8f1;
    border: 1px solid rgba(234, 88, 12, 0.14);
    color: var(--ink-soft);
    font-weight: 700;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.step-card {
    padding: 1.7rem;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.step-number {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--sea-deep) 0%, var(--sea) 70%, var(--coral) 100%);
    color: #fff;
    font-weight: 700;
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.2rem;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.contact-actions .action-button,
.contact-actions .ghost-button {
    justify-content: center;
}

.contact-list {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.4rem;
}

.contact-list li {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
}

.contact-list i {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.1), rgba(255, 255, 255, 0.24));
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: var(--sea-deep);
}

.booking-panel {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.28));
}

.booking-points {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.4rem;
}

.booking-points li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.24));
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.booking-points strong {
    display: block;
    color: var(--text-strong);
}

.booking-points i {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.12), rgba(255, 237, 213, 0.42));
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: var(--sea-deep);
}

.site-footer {
    padding: 1.4rem 0 2rem;
    color: rgba(26, 50, 66, 0.72);
}

.footer-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem 1.2rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem 1.1rem;
    font-weight: 600;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    animation: rise 0.75s ease forwards;
}

.delay-1 {
    animation-delay: 0.08s;
}

.delay-2 {
    animation-delay: 0.16s;
}

.delay-3 {
    animation-delay: 0.24s;
}

@keyframes rise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1199px) {
    .brand-logo-image {
        width: 190px;
    }

    .main-nav .navbar-nav {
        gap: 0.1rem;
    }

    .main-nav .nav-link {
        padding: 0.5rem 0.55rem;
    }

    .nav-cta {
        margin-left: 0.55rem;
        padding: 0.72rem 0.9rem;
    }

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

    .vehicle-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .package-pricing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .about-wrap,
    .contact-wrap {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991.98px) {
    .site-header {
        position: relative;
    }

    .main-nav .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem 0 0.25rem;
        border-top: 1px solid rgba(23, 49, 66, 0.08);
    }

    .main-nav .navbar-nav {
        align-items: flex-start;
    }

    .nav-cta {
        margin-left: 0;
        margin-top: 0.75rem;
        display: inline-flex;
    }

    .hero-section {
        padding-top: 4.5rem;
        padding-bottom: 3.5rem;
    }

    .hero-title,
    .hero-card h2 {
        max-width: none;
    }

    .fleet-mini-grid,
    .stats-grid,
    .steps-grid,
    .visual-card,
    .package-pricing-grid,
    .card-grid.three {
        grid-template-columns: 1fr;
    }

    .vehicle-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vehicle-photo-card.is-wide {
        grid-column: span 1;
    }

    .visual-photo {
        max-width: 360px;
        justify-self: start;
    }

    .rate-table-heading {
        display: grid;
    }
}

@media (max-width: 767.98px) {
    .topbar .container {
        justify-content: center;
    }

    .brand-logo-image {
        width: 220px;
    }

    .brand-tagline {
        font-size: 0.62rem;
        letter-spacing: 0;
    }

    .hero-card,
    .story-card,
    .promise-panel,
    .booking-panel,
    .service-card,
    .fleet-card,
    .tour-card,
    .contact-card,
    .pricing-card,
    .rate-table-card {
        padding: 1.45rem;
    }

    .price-row {
        display: grid;
        gap: 0.35rem;
    }

    .hero-travel-background {
        background-position: 58% top;
        opacity: 0.88;
    }

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

    .vehicle-gallery-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-photo-card {
        height: 360px;
    }

    .footer-wrap {
        justify-content: center;
        text-align: center;
    }

    .fleet-photo,
    .booking-photo {
        border-radius: 8px;
    }
}

/* Professional orange theme refinements */
:root {
    --ink: #221f1c;
    --ink-soft: #705748;
    --sea: #fb923c;
    --sea-deep: #ea580c;
    --sun: #f59e0b;
    --sun-soft: #fff7ed;
    --coral: #0f766e;
    --sand: #fff8f1;
    --surface: #ffffff;
    --surface-alt: #fff3e6;
    --line: rgba(34, 31, 28, 0.12);
    --text: #665f59;
    --text-strong: #221f1c;
    --glass: rgba(255, 255, 255, 0.88);
    --glass-strong: rgba(255, 255, 255, 0.96);
    --glass-border: rgba(234, 88, 12, 0.16);
    --shadow: 0 24px 60px rgba(34, 31, 28, 0.1);
    --shadow-soft: 0 14px 34px rgba(194, 65, 12, 0.12);
}

body {
    letter-spacing: 0;
    color: var(--text);
    background: linear-gradient(180deg, #ffffff 0%, #fff8f1 48%, #f7fbfa 100%);
}

body::before,
body::after,
.hero-section::before,
.hero-section::after,
.hero-card::before {
    display: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-tagline,
.eyebrow,
.hero-title,
.tour-tag {
    letter-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-strong);
    font-weight: 800;
}

.topbar {
    background: linear-gradient(135deg, #221f1c 0%, #5b2a13 58%, #c2410c 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.topbar-social a {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
}

.site-header,
.main-nav,
.topbar-social a,
.action-button,
.ghost-button,
.hero-list li,
.hero-card,
.visual-card,
.stat-card,
.service-card,
.fleet-card,
.tour-card,
.promise-card,
.contact-card,
.info-card,
.story-card,
.promise-panel,
.booking-panel,
.step-card,
.route-line span,
.booking-points li {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.main-nav {
    padding: 0.85rem 0;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 32px rgba(34, 31, 28, 0.08);
}

.brand-logo-image {
    width: 220px;
}

.main-nav .nav-link {
    color: rgba(34, 31, 28, 0.86);
}

.main-nav .nav-link::after {
    background: linear-gradient(90deg, var(--sea-deep), var(--coral));
}

.nav-cta,
.action-button {
    color: #ffffff;
    background: linear-gradient(135deg, #c2410c 0%, #ea580c 58%, #f59e0b 100%);
    border-color: rgba(194, 65, 12, 0.25);
    box-shadow: 0 16px 30px rgba(194, 65, 12, 0.24);
}

.ghost-button {
    color: var(--text-strong);
    background: #ffffff;
    border-color: rgba(234, 88, 12, 0.24);
    box-shadow: 0 12px 24px rgba(34, 31, 28, 0.08);
}

.menu-button {
    border-color: rgba(234, 88, 12, 0.24);
    background: #ffffff;
    border-radius: 8px;
}

.hero-section {
    padding: 4rem 0 3rem;
    background: linear-gradient(180deg, #fffaf5 0%, #fff2e4 62%, #ffffff 100%);
}

.hero-travel-background {
    background-image:
        linear-gradient(180deg, rgba(255, 250, 245, 0.62), rgba(255, 255, 255, 0.38)),
        url("../img/gallery/vehicle-gallery-12-highway-traveller.jpeg");
    opacity: 0.78;
}

.hero-pattern {
    background-image:
        linear-gradient(rgba(34, 31, 28, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 31, 28, 0.04) 1px, transparent 1px);
}

.eyebrow {
    color: var(--sea-deep);
}

.eyebrow::before {
    background: linear-gradient(90deg, var(--sea-deep), var(--coral));
}

.hero-title {
    max-width: 12ch;
    font-size: 3.9rem;
    line-height: 1;
}

.section-intro h2 {
    font-size: 2.7rem;
}

.hero-copy,
.section-intro p,
.visual-copy p,
.story-card p,
.promise-card p,
.fleet-card p,
.tour-card p,
.contact-card p,
.booking-panel p {
    color: var(--text);
}

.hero-list li,
.fleet-mini-grid article,
.journey-tags span,
.feature-tags span,
.route-line span {
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 10px 24px rgba(34, 31, 28, 0.07);
}

.hero-list i,
.check-list i,
.contact-list i,
.booking-points i {
    color: var(--sea-deep);
}

.hero-card,
.visual-card,
.stat-card,
.service-card,
.fleet-card,
.tour-card,
.promise-card,
.contact-card,
.info-card,
.story-card,
.promise-panel,
.booking-panel,
.step-card {
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.fleet-mini-grid article,
.check-list li,
.booking-points li,
.contact-list i,
.booking-points i,
.service-card > i,
.promise-card > i,
.contact-card > i,
.info-card > i,
.step-number,
.hero-photo,
.fleet-photo,
.booking-photo {
    border-radius: 8px;
}

.hero-photo,
.fleet-photo,
.booking-photo {
    background: #fff8f1;
    border: 1px solid rgba(234, 88, 12, 0.14);
}

.visual-card {
    align-items: stretch;
}

.service-card > i,
.promise-card > i,
.contact-card > i,
.info-card > i,
.step-number {
    background: linear-gradient(135deg, #c2410c 0%, #ea580c 64%, #f59e0b 100%);
    box-shadow: 0 12px 24px rgba(194, 65, 12, 0.18);
}

.section-warm {
    background: linear-gradient(180deg, #fff8f1 0%, #ffffff 100%);
}

.section-ink {
    background: linear-gradient(135deg, #221f1c 0%, #5b2a13 58%, #c2410c 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.section-ink .eyebrow {
    color: #fed7aa;
}

.section-ink .eyebrow::before {
    background: linear-gradient(90deg, #fed7aa, #ffffff);
}

.fleet-size,
.tour-tag,
.route-badge {
    color: var(--sea-deep);
    background: #fff4e8;
    border: 1px solid rgba(234, 88, 12, 0.16);
}

.check-list li,
.booking-points li {
    background: #fffaf5;
    border: 1px solid rgba(34, 31, 28, 0.1);
}

.contact-list i,
.booking-points i {
    background: #fff4e8;
    border-color: rgba(234, 88, 12, 0.16);
}

.site-footer {
    background: #221f1c;
    color: rgba(255, 255, 255, 0.76);
}

.footer-wrap {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-links a:hover,
.footer-links a:focus {
    color: #fed7aa;
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-intro h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding-top: 3.2rem;
        padding-bottom: 2.5rem;
    }

    .hero-title {
        font-size: 2.35rem;
    }

    .section-intro h2 {
        font-size: 2rem;
    }

    .brand-logo-image {
        width: 210px;
    }
}

/* Modern app-style redesign */
:root {
    --app-bg: #f6f7f4;
    --app-ink: #171614;
    --app-muted: #68635d;
    --app-card: rgba(255, 255, 255, 0.92);
    --app-card-solid: #ffffff;
    --app-line: rgba(23, 22, 20, 0.1);
    --app-orange: #f97316;
    --app-orange-dark: #c2410c;
    --app-green: #0f766e;
    --app-lime: #d9f99d;
    --app-shadow: 0 22px 55px rgba(23, 22, 20, 0.11);
    --app-shadow-soft: 0 14px 32px rgba(23, 22, 20, 0.08);
}

body {
    color: var(--app-muted);
    background:
        radial-gradient(circle at 18% 0%, rgba(217, 249, 157, 0.42), transparent 30%),
        radial-gradient(circle at 88% 8%, rgba(249, 115, 22, 0.18), transparent 26%),
        linear-gradient(180deg, #fbfaf5 0%, var(--app-bg) 44%, #ffffff 100%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--app-ink);
    font-weight: 900;
}

p {
    line-height: 1.7;
}

.topbar {
    background: #171614;
    border-bottom: 0;
    font-size: 0.88rem;
}

.topbar .container {
    min-height: 40px;
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
}

.topbar-social a {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
}

.site-header {
    top: 0;
    margin-bottom: 0;
}

.main-nav {
    width: min(1180px, calc(100% - 28px));
    margin: 0.8rem auto 0;
    padding: 0.55rem 0.75rem;
    border: 1px solid rgba(23, 22, 20, 0.08);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 40px rgba(23, 22, 20, 0.1);
}

.brand-logo-image {
    width: 174px;
}

.main-nav .navbar-nav {
    gap: 0.1rem;
}

.main-nav .nav-link {
    padding: 0.55rem 0.72rem;
    border-radius: 8px;
    font-size: 0.92rem;
    color: rgba(23, 22, 20, 0.76);
}

.main-nav .nav-link::after {
    display: none;
}

.main-nav .nav-link:hover,
.main-nav .nav-link:focus {
    color: var(--app-ink);
    background: #f2f3ee;
}

.nav-cta,
.action-button,
.quote-submit {
    border-radius: 8px;
    background: linear-gradient(135deg, var(--app-ink), #433022 52%, var(--app-orange));
    box-shadow: 0 16px 30px rgba(194, 65, 12, 0.2);
}

.nav-cta {
    padding: 0.72rem 1rem;
    white-space: nowrap;
}

.hero-section {
    min-height: auto;
    padding: 6.4rem 0 2.4rem;
    background: transparent;
}

.hero-travel-background {
    inset: 1.2rem;
    border-radius: 8px;
    background-image:
        linear-gradient(100deg, rgba(246, 247, 244, 0.96) 0%, rgba(246, 247, 244, 0.82) 42%, rgba(246, 247, 244, 0.22) 100%),
        url("../img/gallery/vehicle-gallery-12-highway-traveller.jpeg");
    background-position: center;
    opacity: 1;
}

.hero-pattern {
    opacity: 0.22;
}

.app-hero-grid {
    min-height: 570px;
}

.hero-copy-panel {
    max-width: 720px;
}

.eyebrow {
    margin-bottom: 0.85rem;
    color: var(--app-orange-dark);
    font-size: 0.78rem;
}

.eyebrow::before {
    width: 34px;
    background: linear-gradient(90deg, var(--app-orange), var(--app-green));
}

.hero-title {
    max-width: 11ch;
    margin-bottom: 1rem;
    font-size: 5.4rem;
    line-height: 0.92;
}

.hero-copy {
    max-width: 590px;
    margin-bottom: 1.35rem;
    color: #4d4944;
    font-size: 1.06rem;
}

.hero-actions {
    margin-bottom: 1.35rem;
}

.action-button,
.ghost-button,
.quote-submit {
    min-height: 48px;
    padding: 0.85rem 1.1rem;
    border-radius: 8px;
}

.ghost-button {
    color: var(--app-ink);
    border: 1px solid rgba(23, 22, 20, 0.12);
    background: rgba(255, 255, 255, 0.84);
}

.hero-metrics {
    display: grid;
    max-width: 560px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.hero-metrics article {
    padding: 0.95rem;
    border: 1px solid rgba(23, 22, 20, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: var(--app-shadow-soft);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.hero-metrics strong {
    display: block;
    color: var(--app-ink);
    font-size: 1.35rem;
    line-height: 1;
}

.hero-metrics span {
    display: block;
    margin-top: 0.28rem;
    color: var(--app-muted);
    font-size: 0.86rem;
    font-weight: 700;
}

.app-quote-card {
    padding: 0.75rem;
    border: 1px solid rgba(23, 22, 20, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--app-shadow);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.quote-media {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.hero-photo {
    height: 230px;
    margin: 0;
    border: 0;
    border-radius: 8px;
    box-shadow: none;
}

.quote-media span {
    position: absolute;
    left: 0.8rem;
    bottom: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.72rem;
    border-radius: 8px;
    color: #fff;
    background: rgba(23, 22, 20, 0.72);
    font-size: 0.88rem;
    font-weight: 800;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.quote-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.05rem 0.5rem 0.75rem;
}

.quote-card-head h2 {
    margin: 0;
    font-size: 1.55rem;
}

.route-badge,
.fleet-size,
.tour-tag {
    border-radius: 8px;
    color: var(--app-orange-dark);
    background: #fff4e8;
    border-color: rgba(249, 115, 22, 0.16);
}

.quote-fields {
    display: grid;
    gap: 0.65rem;
}

.quote-field {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem;
    border: 1px solid var(--app-line);
    border-radius: 8px;
    background: #f8f8f4;
}

.quote-field i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--app-green);
    background: #e8f7ef;
    font-size: 1.12rem;
}

.quote-field span {
    display: block;
    color: var(--app-muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.quote-field strong {
    display: block;
    color: var(--app-ink);
    font-size: 1rem;
}

.quote-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 0.75rem;
    color: #fff;
    font-weight: 900;
}

.quote-call-actions {
    display: grid;
    gap: 0.55rem;
    margin-top: 0.75rem;
}

.quote-call-actions .quote-submit {
    margin-top: 0;
}

.quote-submit-alt {
    color: var(--trend-ink);
    background: var(--trend-neon);
}

.popular-route-strip {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    max-width: 100%;
    margin-top: 1.1rem;
    padding: 0.65rem;
    overflow-x: auto;
    border: 1px solid rgba(23, 22, 20, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--app-shadow-soft);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.popular-route-strip span,
.popular-route-strip a {
    flex: 0 0 auto;
    padding: 0.58rem 0.78rem;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 800;
}

.popular-route-strip span {
    color: #fff;
    background: var(--app-ink);
}

.popular-route-strip a {
    color: var(--app-ink);
    background: #f2f3ee;
}

.section-shell {
    padding: 4.6rem 0;
}

.visuals-section {
    padding-top: 3.4rem;
}

.section-warm,
.pricing-section {
    background: transparent;
}

.section-intro {
    max-width: 780px;
    margin-bottom: 2.1rem;
}

.section-intro h2 {
    max-width: 760px;
    font-size: 3.35rem;
    line-height: 0.98;
}

.section-intro p {
    max-width: 620px;
}

.visual-grid,
.stats-grid,
.card-grid.three,
.card-grid.four,
.package-pricing-grid {
    gap: 1rem;
}

.visual-card,
.stat-card,
.service-card,
.fleet-card,
.pricing-card,
.rate-table-card,
.contact-card,
.booking-panel,
.story-card,
.promise-panel,
.promise-card,
.info-card {
    border: 1px solid var(--app-line);
    border-radius: 8px;
    background: var(--app-card-solid);
    box-shadow: var(--app-shadow-soft);
}

.visual-card {
    overflow: hidden;
    min-height: 300px;
    padding: 1rem;
    grid-template-columns: 1.1fr 0.9fr;
}

.visual-copy {
    align-self: center;
    padding: 1rem;
}

.visual-photo {
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 250px;
    justify-self: stretch;
}

.stat-card {
    padding: 1.25rem;
    background: #171614;
}

.stat-card h3,
.stat-card p {
    color: #fff;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.72);
}

.service-card,
.fleet-card,
.pricing-card,
.contact-card,
.booking-panel,
.story-card,
.promise-panel {
    padding: 1.15rem;
}

.service-card > i,
.promise-card > i,
.contact-card > i,
.info-card > i {
    border-radius: 8px;
    background: #e8f7ef;
    color: var(--app-green);
    box-shadow: none;
}

.fleet-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
}

.fleet-photo {
    height: 235px;
    margin: -0.25rem -0.25rem 1rem;
    width: calc(100% + 0.5rem);
}

.feature-tags,
.journey-tags,
.route-line {
    margin-top: auto;
}

.vehicle-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-flow: dense;
    gap: 1rem;
}

.vehicle-photo-card,
.vehicle-photo-card.is-wide,
.vehicle-photo-card.is-tall {
    grid-column: span 1;
    height: 390px;
    border: 1px solid var(--app-line);
    border-radius: 8px;
    box-shadow: var(--app-shadow-soft);
}

.vehicle-photo-card.is-wide {
    grid-column: span 2;
}

.vehicle-photo-card.is-tall {
    grid-row: span 2;
    height: 100%;
    min-height: 520px;
}

.vehicle-photo-copy {
    background: linear-gradient(180deg, transparent, rgba(23, 22, 20, 0.78));
}

.vehicle-photo-copy h3,
.vehicle-photo-copy p {
    color: #fff;
}

.pricing-layout {
    align-items: start;
}

.pricing-card {
    position: relative;
    overflow: hidden;
}

.pricing-card::after {
    content: "";
    position: absolute;
    inset: auto 1rem 1rem auto;
    width: 68px;
    height: 68px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(217, 249, 157, 0.95), rgba(15, 118, 110, 0.18));
}

.price-row {
    border-radius: 8px;
    background: #f8f8f4;
}

.rate-table th {
    background: #171614;
    color: #fff;
}

.contact-wrap,
.about-wrap,
.pricing-layout {
    gap: 1rem;
}

.booking-photo {
    height: 220px;
}

.check-list li,
.booking-points li {
    border-radius: 8px;
    background: #f8f8f4;
}

.site-footer {
    margin: 1rem;
    border-radius: 8px 8px 0 0;
    background: #171614;
}

@media (max-width: 1199.98px) {
    .main-nav .nav-link {
        padding: 0.5rem 0.55rem;
    }

    .vehicle-gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .site-header {
        top: 0;
        margin-bottom: 0;
    }

    .main-nav {
        width: 100%;
        margin: 0;
        border-radius: 0;
    }

    .main-nav .navbar-collapse {
        padding-top: 0.8rem;
    }

    .main-nav .navbar-nav {
        align-items: stretch;
    }

    .nav-cta {
        display: inline-flex;
        justify-content: center;
        margin: 0.75rem 0 0;
    }

    .hero-section {
        padding-top: 3.2rem;
    }

    .app-hero-grid {
        min-height: auto;
    }

    .hero-title {
        max-width: 12ch;
        font-size: 4.1rem;
    }

    .visual-card {
        grid-template-columns: 1fr;
    }

    .vehicle-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .topbar-copy {
        display: none;
    }

    .topbar .container,
    .topbar-meta {
        justify-content: center;
    }

    .topbar-meta span,
    .topbar-social {
        display: none;
    }

    .brand-logo-image {
        width: 168px;
    }

    .hero-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .hero-travel-background {
        inset: 0;
        border-radius: 0;
        background-image:
            linear-gradient(180deg, rgba(246, 247, 244, 0.96), rgba(246, 247, 244, 0.78)),
            url("../img/gallery/vehicle-gallery-12-highway-traveller.jpeg");
    }

    .hero-title {
        max-width: 12ch;
        font-size: 3rem;
    }

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

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

    .quote-card-head {
        display: grid;
    }

    .popular-route-strip {
        margin-top: 1rem;
    }

    .section-shell {
        padding: 3.2rem 0;
    }

    .section-intro h2 {
        font-size: 2.2rem;
    }

    .vehicle-gallery-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-photo-card,
    .vehicle-photo-card.is-wide,
    .vehicle-photo-card.is-tall {
        grid-column: span 1;
        grid-row: span 1;
        height: 370px;
        min-height: 0;
    }

    .site-footer {
        margin: 0;
        border-radius: 0;
    }
}

/* Trendier product-app polish */
:root {
    --trend-ink: #111111;
    --trend-panel: #191714;
    --trend-soft: #f4f1ea;
    --trend-line: rgba(17, 17, 17, 0.12);
    --trend-neon: #d9f99d;
    --trend-mint: #12b981;
    --trend-orange: #ff6b1a;
}

body {
    font-family: "Plus Jakarta Sans", "Lato", "Segoe UI", sans-serif;
    background:
        linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, #f7f5ef 0%, #ffffff 42%, #f3f5f0 100%);
    background-size: 28px 28px, auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
.nav-cta,
.action-button,
.ghost-button,
.quote-submit {
    font-family: "Plus Jakarta Sans", "Lato", "Segoe UI", sans-serif;
}

.topbar {
    background: var(--trend-ink);
}

.main-nav {
    border: 1px solid rgba(255, 255, 255, 0.64);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 18px 60px rgba(17, 17, 17, 0.14);
}

.main-nav .nav-link {
    font-weight: 800;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--trend-ink);
    box-shadow: none;
}

.hero-section {
    padding-top: 5.2rem;
}

.hero-travel-background {
    background-image:
        linear-gradient(100deg, rgba(17, 17, 17, 0.9) 0%, rgba(17, 17, 17, 0.72) 42%, rgba(17, 17, 17, 0.16) 100%),
        url("../img/gallery/vehicle-gallery-12-highway-traveller.jpeg");
    box-shadow: inset 0 -120px 120px rgba(17, 17, 17, 0.26);
}

.hero-title,
.hero-copy-panel .eyebrow,
.hero-copy {
    color: #ffffff;
}

.hero-copy {
    color: rgba(255, 255, 255, 0.78);
}

.hero-copy-panel .eyebrow {
    padding: 0.55rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.hero-copy-panel .eyebrow::before {
    background: var(--trend-neon);
}

.action-button {
    background: var(--trend-neon);
    color: var(--trend-ink);
    box-shadow: 0 16px 38px rgba(217, 249, 157, 0.24);
}

.ghost-button {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.12);
}

.hero-metrics article {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.hero-metrics strong {
    color: #fff;
}

.hero-metrics span {
    color: rgba(255, 255, 255, 0.7);
}

.app-quote-card {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.quote-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(17, 17, 17, 0.42));
    pointer-events: none;
}

.quote-media span {
    z-index: 1;
}

.quote-status {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    margin-bottom: 0.7rem;
}

.quote-status span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 42px;
    border-radius: 8px;
    color: var(--trend-ink);
    background: #eef8dc;
    font-size: 0.82rem;
    font-weight: 900;
}

.quote-status span + span {
    background: #e8f7ef;
}

.quote-field {
    background: #ffffff;
}

.quote-submit {
    background: var(--trend-ink);
}

.popular-route-strip,
.hero-trust-rail {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.popular-route-strip span {
    color: var(--trend-ink);
    background: var(--trend-neon);
}

.popular-route-strip a {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
}

.hero-trust-rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.7rem;
    margin-top: 0.85rem;
    padding: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.hero-trust-rail article {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    min-height: 54px;
    padding: 0.7rem;
    border-radius: 8px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.88rem;
    font-weight: 800;
}

.hero-trust-rail i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 8px;
    color: var(--trend-ink);
    background: var(--trend-neon);
}

.section-intro {
    position: relative;
}

.section-intro h2 {
    letter-spacing: 0;
}

.visual-card,
.service-card,
.fleet-card,
.pricing-card,
.rate-table-card,
.contact-card,
.booking-panel,
.story-card,
.promise-panel,
.promise-card {
    border-color: rgba(17, 17, 17, 0.08);
    box-shadow: 0 18px 48px rgba(17, 17, 17, 0.09);
}

.visual-card,
.fleet-card,
.vehicle-photo-card,
.pricing-card {
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.visual-card:hover,
.fleet-card:hover,
.vehicle-photo-card:hover,
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 62px rgba(17, 17, 17, 0.14);
}

.service-card > i,
.promise-card > i,
.contact-card > i,
.info-card > i,
.quote-field i {
    background: var(--trend-neon);
    color: var(--trend-ink);
}

.stat-card {
    background: linear-gradient(135deg, #111111 0%, #2c241c 100%);
}

.fleet-size,
.tour-tag,
.route-badge {
    background: #111111;
    border-color: #111111;
    color: #ffffff;
}

.feature-tags span,
.journey-tags span,
.route-line span {
    border-color: transparent;
    background: #eef8dc;
    color: #1f2a16;
}

.pricing-card::after {
    background: var(--trend-neon);
}

.price-row {
    background: #f4f6ef;
}

.booking-dock {
    position: sticky;
    z-index: 35;
    bottom: 1rem;
    width: min(940px, calc(100% - 28px));
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    align-items: center;
    gap: 0.8rem;
    margin: 0 auto 1rem;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    color: #fff;
    background: rgba(17, 17, 17, 0.92);
    box-shadow: 0 22px 60px rgba(17, 17, 17, 0.28);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.booking-dock span {
    display: block;
    color: var(--trend-neon);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.booking-dock strong {
    display: block;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.92rem;
}

.booking-dock a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 42px;
    padding: 0.65rem 0.85rem;
    border-radius: 8px;
    color: var(--trend-ink);
    background: var(--trend-neon);
    font-weight: 900;
}

.booking-dock a + a {
    color: #fff;
    background: var(--trend-mint);
}

@media (max-width: 991.98px) {
    .hero-trust-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .booking-dock {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .booking-dock div {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding-top: 2.5rem;
    }

    .hero-travel-background {
        background-image:
            linear-gradient(180deg, rgba(17, 17, 17, 0.92), rgba(17, 17, 17, 0.78)),
            url("../img/gallery/vehicle-gallery-12-highway-traveller.jpeg");
    }

    .hero-trust-rail,
    .quote-status {
        grid-template-columns: 1fr;
    }

    .hero-trust-rail {
        padding: 0.55rem;
    }

    .booking-dock {
        bottom: 0.5rem;
        width: calc(100% - 16px);
    }

    .booking-dock strong {
        font-size: 0.84rem;
    }

    .booking-dock a {
        padding: 0.6rem 0.5rem;
        font-size: 0.82rem;
    }
}
