:root {
    --bg-1: #f8f2ed;
    --bg-2: #f0e8e1;
    --panel: #ffffff;
    --panel-soft: #faf6f3;
    --line: rgba(33, 22, 23, 0.12);
    --text: #211617;
    --muted: #6b5a58;
    --brand-red: #b44f51;
    --brand-gold: #9e7415;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    background: var(--bg-1);
    line-height: 1.45;
}

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

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

.container {
    width: min(1160px, calc(100% - 2rem));
    margin: 0 auto;
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(33, 22, 23, 0.1);
    background: rgba(248, 242, 237, 0.92);
    backdrop-filter: blur(12px);
}

.nav-wrap {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 1rem;
    align-items: center;
    min-height: 74px;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.brand-logo {
    height: 48px;
    width: auto;
}

.brand-eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--brand-red);
    font-size: 0.74rem;
}

.brand-subtext {
    margin: 0.1rem 0 0;
    color: var(--muted);
    font-size: 0.82rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.4rem;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
}

.menu-overlay {
    display: none;
}

.menu-toggle:hover {
    background: rgba(180, 79, 81, 0.08);
}

.ham-bar {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
}

/* Animate to X when open */
.menu-toggle.open .ham-bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.menu-toggle.open .ham-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.menu-toggle.open .ham-bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

.main-menu {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.main-menu a {
    color: var(--muted);
    font-weight: 600;
    font-size: 0.93rem;
}

.menu-icon {
    display: none;
}

.main-menu a:hover {
    color: var(--text);
}

.top-cta {
    border: 1px solid rgba(180, 79, 81, 0.4);
    background: var(--brand-red);
    color: #fff;
    padding: 0.62rem 1rem;
    border-radius: 0.7rem;
    font-weight: 700;
    font-size: 0.85rem;
}

.hero {
    padding: 2.5rem 0 2rem;
    background: url('../../images/colombo.jpg') center center / cover no-repeat;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(0px);
    pointer-events: none;
}

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

.hero-grid {
    display: grid;
    gap: 1.75rem;
    grid-template-columns: 1fr;
    justify-items: center;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0.5rem 0 0;
    max-width: 56rem;
}

.hero-title {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    color: #f6c84e;
    text-shadow: 0 2px 18px rgba(0,0,0,0.55);
}

.hero-sub {
    margin: 1rem 0 0;
    font-size: 1.1rem;
    color: #f0e6cb;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
    max-width: 42rem;
}

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

.hero-stats article {
    display: none;
}

.buffer-note {
    margin: 1rem 0 0;
    padding: 0.65rem 0.8rem;
    border-radius: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.28);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.86rem;
    max-width: 36rem;
}

.booking-panel {
    border: 1px solid var(--line);
    border-radius: 1.4rem;
    background: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 1.1rem;
    width: min(100%, 820px);
    margin: 0 auto;
}

.alert-warning {
    margin-bottom: 0.8rem;
    border: 1px solid rgba(180, 62, 63, 0.3);
    background: rgba(180, 62, 63, 0.07);
    color: var(--brand-red);
    border-radius: 0.75rem;
    padding: 0.65rem 0.78rem;
    font-size: 0.83rem;
}

.form-flow {
    display: grid;
    gap: 0.9rem;
}

.step-panel {
    display: grid;
    gap: 0.9rem;
}

.step-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.6rem;
}

.step-actions-start {
    justify-content: flex-start;
}

.search-strip,
.estimate-strip,
.ecd-section-card,
.tour-panel {
    border: 1px solid var(--line);
    border-radius: 1rem;
    background: var(--panel-soft);
    padding: 0.9rem;
}

.strip-title {
    margin: 0 0 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    color: var(--brand-red);
    font-weight: 700;
}

.booking-grid {
    display: grid;
    gap: 0.72rem;
}

.booking-grid-search {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(16rem, 1.2fr);
}

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

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

.full-width {
    grid-column: 1 / -1;
}

.ecd-label {
    display: block;
    margin-bottom: 0.28rem;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    font-size: 0.7rem;
}

.ecd-input,
.ecd-select {
    width: 100%;
    border: 1px solid #d1d8e6;
    background: #ffffff;
    color: var(--text);
    border-radius: 0.7rem;
    padding: 0.63rem 0.68rem;
    font-size: 0.92rem;
    outline: none;
}

.location-field {
    position: relative;
}

.location-field .ecd-input {
    padding-right: 2.45rem;
}

.loc-btn {
    position: absolute;
    right: 0.42rem;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: var(--brand-red);
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.loc-btn:hover {
    background: rgba(180, 62, 63, 0.12);
}

.loc-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.location-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(16, 12, 12, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.location-modal-card {
    width: min(100%, 680px);
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
    padding: 0.85rem;
}

.location-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.45rem;
}

.location-modal-head h3 {
    margin: 0;
    font-size: 1rem;
    color: var(--text);
}

.location-modal-close {
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
}

.location-modal-close:hover {
    background: rgba(180, 62, 63, 0.12);
    color: var(--brand-red);
}

.location-picked-address {
    margin: 0 0 0.55rem;
    color: var(--muted);
    font-size: 0.86rem;
    min-height: 1.25rem;
}

.location-map {
    width: 100%;
    height: 340px;
    border: 1px solid var(--line);
    border-radius: 0.8rem;
    overflow: hidden;
}

.location-modal-actions {
    margin-top: 0.7rem;
    display: flex;
    gap: 0.55rem;
    justify-content: flex-end;
}

.location-modal-actions .btn-main {
    width: auto;
    min-width: 10.5rem;
}

#pickup_datetime {
    min-width: 16rem;
}

.datetime-split {
    display: flex;
    gap: 0.5rem;
}

.datetime-split .ecd-input {
    flex: 1;
    min-width: 0;
}

.ecd-input:focus,
.ecd-select:focus {
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px rgba(180, 62, 63, 0.14);
}

.group-gap {
    margin-top: 0.7rem;
}

.btn-group-wrap {
    margin-top: 0.85rem;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.32rem;
}

.btn-option {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    border: 1.5px solid #d1d8e6;
    background: #ffffff;
    color: var(--muted);
    border-radius: 0.65rem;
    padding: 0.45rem 0.85rem;
    font-size: 0.84rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
    white-space: nowrap;
}

.btn-option:hover {
    border-color: var(--brand-red);
    color: var(--brand-red);
    background: rgba(180, 62, 63, 0.05);
}

.btn-option.active {
    border-color: var(--brand-red);
    background: var(--brand-red);
    color: #ffffff;
}

.btn-seats {
    font-size: 0.68rem;
    font-weight: 500;
    opacity: 0.85;
}

.tour-header {
    display: flex;
    gap: 0.7rem;
    justify-content: space-between;
    align-items: center;
}

.tour-grid-wrap {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 0.85rem;
}

.tour-card {
    border: 1px solid rgba(33, 22, 23, 0.12);
    border-radius: 0.85rem;
    background: #ffffff;
    padding: 0.8rem;
}

.tour-card-title {
    margin: 0 0 0.6rem;
    font-size: 0.94rem;
    font-weight: 800;
    color: var(--text);
}

.tour-counter-grid {
    margin-top: 0.55rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tour-header h2 {
    margin: 0;
    font-size: 0.92rem;
}

.tour-note {
    margin: 0.45rem 0 0.78rem;
    color: var(--muted);
    font-size: 0.8rem;
}

.btn-small-red {
    border: 0;
    border-radius: 0.62rem;
    padding: 0.45rem 0.72rem;
    background: linear-gradient(150deg, #c64a4b, #a53a3b);
    color: #fff;
    font-weight: 700;
    font-size: 0.73rem;
    cursor: pointer;
}

.readonly-input {
    background: #f0f2f6;
    color: var(--muted);
}

.offer-check-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 600;
}

.offer-checkbox {
    width: 1rem;
    height: 1rem;
}

.return-note {
    margin: 0.2rem 0 0;
    color: var(--muted);
    font-size: 0.8rem;
}

.metric-label {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-red);
    font-size: 0.73rem;
}

.metric-value {
    margin: 0.2rem 0 0;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text);
}

.metric-rule {
    margin: 0.2rem 0 0;
    color: var(--muted);
    font-weight: 700;
    font-size: 0.9rem;
}

.estimate-strip {
    background: linear-gradient(180deg, #fbf7f4 0%, #f6efea 100%);
}

.trip-metrics {
    gap: 0.65rem;
}

.metric-item {
    border: 1px solid rgba(180, 79, 81, 0.2);
    background: #ffffff;
    border-radius: 0.85rem;
    padding: 0.72rem 0.78rem;
    min-height: 5.1rem;
}

.metric-item-highlight {
    background: linear-gradient(160deg, #fffaf0 0%, #fdf1dd 100%);
    border-color: rgba(158, 116, 21, 0.34);
}

.vehicle-message-card {
    margin-top: 0.72rem;
    border: 1px solid rgba(180, 79, 81, 0.24);
    border-radius: 0.85rem;
    background: #fffdfb;
    padding: 0.75rem 0.85rem;
}

.vehicle-message-title {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--brand-red);
}

.vehicle-message-text {
    margin: 0.44rem 0 0;
    padding-left: 0.65rem;
    border-left: 2px solid rgba(180, 79, 81, 0.28);
    color: #3c2f2f;
    font-size: 0.92rem;
    line-height: 1.55;
}

.btn-main {
    width: 100%;
    border: 0;
    border-radius: 0.8rem;
    padding: 0.75rem 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    font-size: 0.82rem;
    cursor: pointer;
}

.btn-back {
    border: 1px solid #d1d8e6;
    background: #ffffff;
    color: var(--text);
    border-radius: 0.8rem;
    padding: 0.7rem 1.1rem;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
}

.btn-back:hover {
    border-color: var(--brand-red);
    color: var(--brand-red);
}

.ecd-gold-btn {
    color: #141414;
    background: linear-gradient(140deg, #d4ac54, #b9872d);
}

.ecd-red-btn {
    color: #ffffff;
    background: linear-gradient(140deg, #cb4a4b, #a73738);
}

.section {
    padding: 1.4rem 0;
}

.section-head p,
.card-eyebrow {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand-red);
    font-size: 0.72rem;
    font-weight: 700;
}

.section-head h2,
.about-wrap h2 {
    margin: 0.45rem 0 0;
    font-size: clamp(1.25rem, 3vw, 1.85rem);
    color: var(--text);
}

.card-grid {
    margin-top: 0.9rem;
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fleet-section {
    margin-top: 0.4rem;
}

.fleet-head {
    text-align: center;
}

.fleet-head p {
    color: var(--brand-red);
    letter-spacing: 0.09em;
}

.fleet-head h2 {
    margin-inline: auto;
    max-width: 44rem;
}

.fleet-showcase {
    margin-top: 1rem;
    background: linear-gradient(160deg, #f4ece6 0%, #efe4dc 100%);
    border: 1px solid var(--line);
    border-radius: 1.1rem;
    padding: 1rem;
    display: grid;
    grid-template-columns: 1.1fr 1.9fr 1.4fr;
    gap: 0.85rem;
    align-items: stretch;
}

.fleet-copy {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(180, 79, 81, 0.16);
    border-radius: 0.9rem;
    padding: 1rem;
}

.fleet-copy h3 {
    margin: 0;
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    line-height: 1.05;
}

.fleet-subtitle {
    margin: 0.4rem 0 0;
    color: var(--brand-red);
    font-weight: 700;
    font-size: 0.95rem;
}

.fleet-copy p {
    color: var(--muted);
}

.fleet-specs {
    margin: 0.75rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.42rem;
    color: var(--text);
}

.fleet-specs strong {
    color: var(--brand-red);
}

.fleet-main-visual,
.fleet-side-visuals img {
    border-radius: 0.88rem;
    overflow: hidden;
}

.fleet-main-visual {
    background: #fffaf6;
    border: 1px solid rgba(180, 79, 81, 0.18);
    padding: 0.35rem;
}

.fleet-main-visual img,
.fleet-side-visuals img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fleet-main-visual img {
    min-height: 360px;
}

.fleet-side-visuals {
    display: grid;
    grid-template-rows: 1.2fr 1fr;
    gap: 0.58rem;
}

.fleet-side-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.58rem;
}

.fleet-side-visuals > img {
    min-height: 0;
}

.fleet-tabs {
    margin-top: 0.85rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.58rem;
    justify-content: center;
}

.fleet-tab {
    border: 1px solid rgba(180, 79, 81, 0.22);
    background: #fbf6f2;
    color: var(--text);
    border-radius: 0.66rem;
    min-width: 9rem;
    padding: 0.7rem 0.95rem;
    font-weight: 700;
    font-size: 0.94rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.16rem;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.fleet-tab span {
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--muted);
}

.fleet-tab:hover {
    transform: translateY(-2px);
    background: #f5ece6;
    border-color: rgba(180, 79, 81, 0.45);
}

.fleet-tab.active {
    background: linear-gradient(145deg, #c45a5c, #a73d3f);
    border-color: #a73d3f;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(167, 55, 56, 0.28);
}

.fleet-tab.active span {
    color: rgba(255, 255, 255, 0.84);
}

.clients-head {
    text-align: center;
}

.clients-head h2 {
    margin-inline: auto;
    max-width: 42rem;
}

.clients-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
}

.client-logo-card {
    border: 1px solid var(--line);
    border-radius: 0.9rem;
    background: #ffffff;
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem;
}

.client-logo-card img {
    width: 100%;
    max-width: 120px;
    max-height: 56px;
    object-fit: contain;
}

.ecd-section-card h3,
.ecd-section-card h2 {
    margin: 0.46rem 0 0;
    color: var(--text);
}

.ecd-section-card p {
    margin: 0.56rem 0 0;
    color: var(--muted);
}

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

.contact-list {
    margin: 0.6rem 0 0;
    padding-left: 1rem;
}

.contact-list li {
    margin-bottom: 0.52rem;
    color: var(--muted);
}

.contact-list span {
    color: var(--text);
    font-weight: 700;
}

.contact-form {
    margin-top: 0.55rem;
    display: grid;
    gap: 0.62rem;
}

.contact-submit {
    margin-top: 0.2rem;
}

.contact-form textarea.ecd-input {
    min-height: 5.8rem;
    resize: vertical;
}

.site-footer {
    border-top: 1px solid rgba(33, 22, 23, 0.12);
    margin-top: 1.2rem;
    background: #1a1215;
    color: #b0a099;
}

.footer-grid {
    padding: 1.25rem 0 0.9rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: 1.2fr 1fr 1fr;
}

.footer-logo {
    height: 44px;
    width: auto;
}

.footer-text {
    margin: 0.54rem 0 0;
    color: #b0a099;
    font-size: 0.9rem;
}

.footer-address {
    margin: 0.7rem 0 0;
    font-style: normal;
    color: #b0a099;
    font-size: 0.86rem;
    line-height: 1.7;
}

.footer-address p {
    margin: 0;
}

.footer-address span {
    color: #ffffff;
    font-weight: 600;
}

.footer-address a {
    display: inline !important;
    color: #b0a099;
}

.footer-address a:hover {
    color: #ffffff;
}

.footer-title {
    margin: 0 0 0.58rem;
    font-size: 0.86rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
}

.site-footer a {
    display: block;
    margin-bottom: 0.4rem;
    color: #b0a099;
}

.site-footer a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.82rem 0 1.1rem;
}

.footer-bottom p {
    margin: 0;
    color: #8a7a78;
    font-size: 0.82rem;
}

/* Compatibility classes used by booking.js toggles */
.hidden {
    display: none !important;
}

.opacity-40 {
    opacity: 0.4;
}

.cursor-not-allowed {
    cursor: not-allowed !important;
}

.flex {
    display: flex;
}

.gap-2 {
    gap: 0.5rem;
}

.w-full {
    width: 100%;
}

.rounded-lg {
    border-radius: 0.6rem;
}

.border {
    border-width: 1px;
    border-style: solid;
}

.border-slate-300 {
    border-color: rgba(167, 180, 204, 0.5);
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.text-sm {
    font-size: 0.88rem;
}

.outline-none {
    outline: none;
}

.ring-cyan-500:focus,
.focus\:ring:focus {
    box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.5);
}

.border-rose-300 {
    border-color: rgba(251, 113, 133, 0.45);
}

.text-xs {
    font-size: 0.75rem;
}

.font-semibold {
    font-weight: 600;
}

.text-rose-700 {
    color: #be123c;
}

.hover\:bg-rose-50:hover {
    background: rgba(255, 228, 230, 0.2);
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

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

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

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

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

    .fleet-showcase {
        grid-template-columns: 1fr 1fr;
    }

    .fleet-copy {
        grid-column: 1 / -1;
    }

    .fleet-main-visual img {
        min-height: 300px;
    }
}

@media (max-width: 760px) {
    .nav-wrap {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "brand toggle"
            "menu menu";
        position: relative;
    }

    .brand-link {
        grid-area: brand;
    }

    .menu-toggle {
        grid-area: toggle;
        display: flex;
    }

    .top-cta {
        display: none;
    }

    /* Overlay backdrop */
    .menu-overlay {
        display: none;
        position: fixed;
        inset: 0;
        top: 74px;
        z-index: 18;
        background: rgba(0, 0, 0, 0.45);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        opacity: 0;
        transition: opacity 0.25s ease;
    }

    .menu-overlay.visible {
        display: block;
        opacity: 1;
    }

    .main-menu {
        grid-area: menu;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #ffffff;
        border-top: 2px solid var(--brand-red);
        border-bottom-left-radius: 1.2rem;
        border-bottom-right-radius: 1.2rem;
        box-shadow: 0 12px 40px rgba(0,0,0,0.18);
        padding: 0.6rem 0;
        overflow: hidden;
        position: relative;
        z-index: 19;
    }

    .main-menu.open {
        display: flex;
        animation: menuSlideDown 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .main-menu a {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.9rem 1.4rem;
        font-size: 1rem;
        font-weight: 600;
        color: var(--text);
        border-bottom: 1px solid var(--line);
        transition: background 0.15s ease, padding-left 0.2s ease;
    }

    .menu-icon {
        display: inline-block;
    }

    .main-menu a:last-child {
        border-bottom: none;
    }

    .main-menu a:hover {
        background: rgba(180,79,81,0.07);
        padding-left: 1.8rem;
    }

    .menu-icon {
        font-size: 1.15rem;
        width: 1.6rem;
        text-align: center;
        flex-shrink: 0;
    }

    @keyframes menuSlideDown {
        from {
            opacity: 0;
            transform: translateY(-10px) scaleY(0.96);
        }
        to {
            opacity: 1;
            transform: translateY(0) scaleY(1);
        }
    }

    .hero-stats,
    .booking-grid-search,
    .booking-grid-two,
    .booking-grid-three,
    .tour-grid-wrap,
    .tour-counter-grid,
    .card-grid,
    .about-wrap,
    .footer-grid,
    .fleet-showcase {
        grid-template-columns: 1fr;
    }

    .fleet-showcase {
        padding: 0.75rem;
    }

    .fleet-copy {
        grid-column: auto;
    }

    .fleet-main-visual img {
        min-height: 250px;
    }

    .fleet-side-visuals {
        grid-template-rows: 1fr;
    }

    .fleet-side-bottom {
        grid-template-columns: 1fr;
    }

    .fleet-tab {
        flex: 1 1 calc(50% - 0.58rem);
        min-width: 0;
    }

    .metric-item {
        min-height: 0;
    }

    #pickup_datetime {
        min-width: 0;
    }

    .location-map {
        height: 280px;
    }

    .location-modal-actions {
        flex-direction: column;
    }

    .location-modal-actions .btn-main,
    .location-modal-actions .btn-back {
        width: 100%;
    }
}

/* Google Places autocomplete dropdown */
.pac-container {
    border-radius: 0.75rem;
    border: 1px solid #d1d8e6;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0.9rem;
    min-width: 320px !important;
    width: auto !important;
    max-width: 540px;
    z-index: 9999;
}

.pac-item {
    padding: 0.5rem 0.8rem;
    white-space: normal;
    line-height: 1.4;
    cursor: pointer;
    color: #211617;
}

.pac-item:hover,
.pac-item-selected {
    background: #faf0ee;
}

.pac-item-query {
    font-size: 0.92rem;
    color: #211617;
}

.pac-matched {
    font-weight: 700;
    color: #b44f51;
}

/* Floating Book Now button */
.float-book-btn {
    position: fixed;
    bottom: 1.4rem;
    right: 1.4rem;
    z-index: 999;
    background: linear-gradient(140deg, #cb4a4b, #a73738);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.82rem 1.4rem;
    border-radius: 2rem;
    box-shadow: 0 6px 20px rgba(167, 55, 56, 0.45);
    text-decoration: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.float-book-btn.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.float-book-btn:hover {
    background: linear-gradient(140deg, #d45556, #b84244);
    box-shadow: 0 8px 24px rgba(167, 55, 56, 0.55);
    color: #ffffff;
}
