@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap");

:root { --blue:#2b7fff; --ink:#09090b; --muted:#71717b; --line:#e4e4e7; --soft:#f4f4f5; }
* { box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { margin:0; color:var(--ink); background:#fff; font-family:Inter,Arial,sans-serif; font-size:14px; }
a { color:inherit; text-decoration:none; }
button, input, select, textarea { font:inherit; }
.shell { width:100%; max-width:1140px; margin:0 auto; }
.site-header { height:69px; border-bottom:1px solid var(--line); background:#fff; }
.header-inner { height:68px; padding:16px 32px; display:flex; align-items:center; justify-content:space-between; }
.brand { display:flex; align-items:center; gap:8px; font-size:18px; letter-spacing:-.45px; }
.brand-mark { width:42px; height:42px; display:grid; place-items:center; background:transparent; }
.brand-mark img { width:100%; height:100%; object-fit:contain; }
.brand strong { font-weight:400; }
.main-nav { display:flex; align-items:center; gap:32px; }
.main-nav a { height:28px; display:flex; gap:8px; align-items:flex-start; padding-bottom:6px; border-bottom:2px solid transparent; color:var(--muted); }
.main-nav a.active { color:var(--ink); border-color:var(--blue); }
.main-nav img, .button img, .footer-contact img, .section-heading a img { width:16px; height:16px; }
.header-actions { display:flex; align-items:center; gap:10px; }
.language-picker { height:36px; padding:0 8px; display:flex; align-items:center; gap:5px; border:1px solid var(--line); border-radius:6px; background:#fff; box-shadow:0 1px 2px rgba(0,0,0,.05); }
.language-picker select { max-width:92px; padding:0 18px 0 2px; border:0; color:var(--ink); background:transparent; cursor:pointer; outline:none; }
.language-picker:focus-within { border-color:var(--blue); box-shadow:0 0 0 2px rgba(43,127,255,.15); }
.language-modal-backdrop { position:fixed; z-index:100; inset:0; display:grid; place-items:center; padding:20px; background:rgba(9,9,11,.55); backdrop-filter:blur(3px); }
.language-modal { width:100%; max-width:490px; padding:30px; border:1px solid var(--line); border-radius:18px; background:#fff; box-shadow:0 24px 80px rgba(9,9,11,.25); }
.language-modal-heading { display:flex; align-items:center; justify-content:space-between; }
.language-modal-tag { padding:4px 10px; border-radius:999px; color:#27272a; background:var(--soft); font-size:12px; }
.language-modal-globe { width:36px; height:36px; display:grid; place-items:center; border-radius:12px; color:var(--blue); background:#eff6ff; font-size:25px; line-height:1; }
.language-modal h2 { margin:8px 0 0; font-size:28px; line-height:36px; font-weight:600; letter-spacing:-.6px; }
.language-modal > p { margin:8px 0 28px; max-width:390px; color:var(--muted); line-height:21px; }
.language-modal-form { display:grid; gap:10px; }
.language-option { min-height:74px; padding:14px 16px; display:flex; align-items:center; gap:14px; border:1px solid var(--line); border-radius:14px; background:#fff; cursor:pointer; transition:border-color .15s,background .15s,box-shadow .15s; }
.language-option input { position:absolute; opacity:0; pointer-events:none; }
.language-option-mark { width:38px; height:38px; flex:0 0 38px; display:grid; place-items:center; border-radius:50%; color:var(--muted); background:var(--soft); font-weight:600; }
.language-option-copy { min-width:0; display:flex; flex:1; flex-direction:column; gap:4px; }
.language-option-copy strong { font-size:16px; font-weight:600; }
.language-option-copy small { color:var(--muted); font-size:13px; }
.language-option-arrow { color:var(--muted); font-size:26px; }
.language-option:has(input:checked) { border-color:var(--blue); background:#f5f9ff; box-shadow:0 1px 3px rgba(43,127,255,.22); }
.language-option:has(input:checked) .language-option-mark { color:#fff; background:var(--blue); }
.language-option:has(input:checked) .language-option-arrow { color:var(--blue); }
.language-option:focus-within { outline:2px solid rgba(43,127,255,.3); outline-offset:2px; }
.language-modal-footer { margin-top:20px; padding:14px 14px 14px 16px; display:flex; align-items:center; gap:12px; border-radius:14px; background:#fafafa; }
.language-modal-footer > span:nth-child(2) { min-width:0; display:flex; flex:1; flex-direction:column; gap:3px; }
.language-modal-footer strong { font-weight:500; }
.language-modal-footer small { color:var(--muted); font-size:12px; }
.language-info { width:18px; height:18px; flex:0 0 18px; display:grid; place-items:center; border:1px solid var(--blue); border-radius:50%; color:var(--blue); font-size:11px; font-weight:600; }
.language-continue { min-width:96px; }
.button { height:36px; padding:0 12px; border:0; border-radius:6px; display:inline-flex; align-items:center; justify-content:center; gap:8px; box-shadow:0 1px 2px rgba(0,0,0,.05); cursor:pointer; font-size:14px; }
.button-primary { color:#eff6ff; background:var(--blue); }
.button-muted { color:#18181b; background:var(--soft); }
.button-danger { color:#fff; background:#e7000b; }
.page { display:flex; flex-direction:column; gap:32px; padding:32px 32px 16px; }
.hero { height:420px; position:relative; overflow:hidden; border-radius:24px; }
.hero-slides { position:absolute; inset:0; }
.hero-image { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 53%; opacity:0; transition:opacity .7s ease; }
.hero-image.active { opacity:1; }
.hero-shade { position:absolute; inset:0; background:linear-gradient(90deg,rgba(9,9,11,.8),rgba(9,9,11,.5) 50%,transparent); }
.hero-content { position:absolute; inset:0; padding:48px; display:flex; flex-direction:column; align-items:flex-start; justify-content:center; gap:16px; color:#fff; }
.badge { padding:3px 9px; border:1px solid var(--line); border-radius:6px; background:var(--blue); color:#eff6ff; font-size:12px; line-height:16px; }
.hero h1 { margin:0; font-size:36px; line-height:45px; font-weight:400; }
.hero p { margin:0; color:rgba(255,255,255,.85); font-size:16px; line-height:24px; }
.button-row { display:flex; gap:16px; padding-top:8px; }
.carousel-control { position:absolute; z-index:3; top:50%; width:38px; height:38px; border:1px solid rgba(255,255,255,.45); border-radius:50%; color:#fff; background:rgba(9,9,11,.35); transform:translateY(-50%); cursor:pointer; font-size:28px; line-height:1; opacity:0; transition:opacity .2s,background .2s; }
.hero:hover .carousel-control, .carousel-control:focus-visible { opacity:1; }
.carousel-control:hover { background:rgba(9,9,11,.65); }
.carousel-previous { left:16px; }
.carousel-next { right:16px; }
.carousel-dots { position:absolute; z-index:3; left:50%; bottom:16px; display:flex; gap:7px; transform:translateX(-50%); }
.carousel-dots button { width:8px; height:8px; padding:0; border:1px solid #fff; border-radius:50%; background:rgba(255,255,255,.35); cursor:pointer; transition:width .2s,border-radius .2s; }
.carousel-dots button.active { width:24px; border-radius:5px; background:#fff; }
.metrics { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.metric-card, .bus-card, .why-card, .form-card { border:1px solid var(--line); border-radius:12px; background:#fff; box-shadow:0 1px 3px rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1); }
.metric-card { padding:25px; display:flex; flex-direction:column; align-items:flex-start; gap:8px; }
.metric-card img { width:24px; height:24px; }
.metric-card strong { font-size:24px; line-height:32px; font-weight:400; }
.metric-card span { color:var(--muted); line-height:20px; }
.fleet-section { padding-top:16px; }
.section-heading { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:24px; }
.eyebrow { display:block; margin-bottom:8px; color:var(--blue); line-height:20px; }
h2 { margin:0; font-size:24px; line-height:32px; font-weight:400; }
.section-heading a { display:flex; align-items:center; gap:4px; color:var(--blue); }
.fleet-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; align-items:start; }
.fleet-empty { grid-column:1/-1; padding:48px 24px; border:1px dashed var(--line); border-radius:12px; color:var(--muted); text-align:center; }
.bus-card { overflow:hidden; }
.bus-photo { position:relative; height:192px; overflow:hidden; }
.bus-photo > img { width:100%; height:100%; object-fit:cover; }
.bus-photo > span { position:absolute; left:12px; top:12px; padding:3px 9px; border:1px solid var(--line); border-radius:6px; color:#eff6ff; background:var(--blue); font-size:12px; }
.bus-details { padding:24px; }
.bus-details h3, .why-body h3 { margin:0 0 4px; font-size:18px; line-height:28px; font-weight:400; }
.bus-details p { min-height:40px; margin:0 0 15px; color:var(--muted); line-height:20px; }
.features { min-height:20px; display:flex; flex-wrap:wrap; gap:16px; margin-bottom:15px; color:var(--muted); }
.features span { display:flex; align-items:center; gap:4px; white-space:nowrap; }
.features img { width:16px; height:16px; }
.full-button { width:100%; }
.enquiry-section { padding-top:16px; display:grid; grid-template-columns:2fr 3fr; gap:32px; align-items:start; }
.why-card { overflow:hidden; }
.why-photo { display:block; width:100%; height:224px; object-fit:cover; }
.why-body { padding:24px; }
.why-body h3 { margin-bottom:16px; }
.benefit { display:flex; gap:12px; align-items:flex-start; margin-top:16px; }
.benefit > span { flex:0 0 32px; width:32px; height:32px; display:grid; place-items:center; border-radius:6px; background:#eff6ff; }
.benefit img { width:16px; height:16px; }
.benefit strong, .benefit small { display:block; line-height:18px; }
.benefit strong { font-weight:400; }
.benefit small { color:var(--muted); font-size:12px; line-height:16px; }
.form-card { padding:33px; }
.form-heading { margin-bottom:24px; }
.form-heading p { margin:8px 0 0; color:var(--muted); line-height:20px; }
.enquiry-form { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field { min-width:0; display:flex; flex-direction:column; gap:8px; }
.field-wide { grid-column:1/-1; }
.field label { line-height:14px; }
.field input, .field select, .field textarea { width:100%; border:1px solid var(--line); border-radius:6px; background:#fff; box-shadow:0 1px 2px rgba(0,0,0,.05); padding:8px 12px; color:var(--ink); outline:none; }
.field input, .field select { height:36px; }
.field textarea { height:80px; resize:vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color:var(--blue); box-shadow:0 0 0 2px rgba(43,127,255,.15); }
::placeholder { color:var(--muted); }
.form-actions { display:flex; flex-direction:row; align-items:center; gap:16px; margin-top:8px; }
.form-actions small { color:var(--muted); font-size:12px; }
.form-errors { margin-bottom:18px; padding:12px 16px; border:1px solid #fecaca; border-radius:8px; color:#991b1b; background:#fef2f2; }
.form-errors ul { margin:6px 0 0; padding-left:20px; }
.admin-row { padding-top:16px; display:flex; justify-content:center; }
.site-footer { border-top:1px solid var(--line); background:rgba(244,244,245,.4); }
.footer-inner { min-height:80px; padding:24px 32px; display:flex; align-items:center; justify-content:space-between; }
.footer-brand { font-size:14px; letter-spacing:0; }
.footer-brand .brand-mark { width:36px; height:36px; }
.footer-brand .brand-mark img { width:100%; height:100%; }
.footer-contact { display:flex; gap:24px; color:var(--muted); }
.footer-contact a { display:flex; align-items:center; gap:8px; }
.footer-inner > small { color:var(--muted); font-size:12px; }
.flash { position:fixed; z-index:20; top:16px; left:50%; transform:translateX(-50%); padding:10px 16px; border-radius:8px; color:#fff; box-shadow:0 4px 15px rgba(0,0,0,.15); }
.flash-notice { background:#16a34a; }
.flash-alert { background:#e7000b; }
.auth-page { min-height:100vh; padding:32px 20px; display:grid; place-items:center; background:linear-gradient(135deg,#eff6ff,#fff 48%,#f4f4f5); }
.auth-card { width:100%; max-width:440px; padding:36px; border:1px solid var(--line); border-radius:16px; background:#fff; box-shadow:0 18px 50px rgba(9,9,11,.1); }
.auth-brand { display:flex; align-items:center; gap:12px; }
.auth-brand > div { display:flex; flex-direction:column; gap:2px; }
.auth-brand > div > span { font-size:17px; }
.auth-brand small { color:var(--muted); font-size:12px; }
.auth-heading { margin:32px 0 24px; }
.auth-heading h1, .dashboard-card h1 { margin:0; font-size:28px; line-height:36px; font-weight:500; }
.auth-heading p, .dashboard-card > p { margin:8px 0 0; color:var(--muted); line-height:20px; }
.auth-form { display:flex; flex-direction:column; gap:18px; }
.remember-row { display:flex; align-items:center; gap:8px; cursor:pointer; }
.remember-row input { width:16px; height:16px; accent-color:var(--blue); }
.auth-submit { width:100%; margin-top:4px; }
.auth-links { margin-top:22px; display:flex; justify-content:space-between; color:var(--blue); font-size:13px; }
.dashboard-card h1 { margin-top:32px; }
.dashboard-actions { margin-top:28px; display:flex; gap:12px; }
.dashboard-actions form { margin:0; }
.admin-panel { max-width:1080px; }
.bus-type-form { display:flex; gap:12px; align-items:end; margin-bottom:24px; }
.bus-type-form .field { flex:1; }
.bus-type-list { display:grid; gap:10px; }
.bus-type-list > div { display:flex; align-items:center; justify-content:space-between; gap:16px; padding:14px 16px; border:1px solid #e5e7eb; border-radius:10px; background:#fff; }
.contact-admin-form { display:grid; grid-template-columns:repeat(2, minmax(0, 1fr)); gap:18px; }
.recaptcha-field { min-height:78px; }
.enquiry-search { display:flex; align-items:flex-end; gap:10px; margin-bottom:18px; }
.enquiry-search .field { flex:1; }
.enquiry-search input[type="search"] { height:38px; }
.search-summary { margin:-6px 0 18px; color:var(--muted); font-size:13px; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.enquiries-heading { margin-top:36px; padding-top:28px; border-top:1px solid var(--line); display:flex; justify-content:space-between; align-items:flex-end; }
.enquiries-heading p { margin:4px 0 0; color:var(--muted); }
.table-wrap { margin-top:18px; overflow-x:auto; border:1px solid var(--line); border-radius:10px; }
.enquiries-table { width:100%; border-collapse:collapse; text-align:left; white-space:nowrap; }
.enquiries-table th { padding:12px 14px; color:var(--muted); background:var(--soft); font-size:12px; font-weight:500; text-transform:uppercase; letter-spacing:.03em; }
.enquiries-table td { padding:14px; border-top:1px solid var(--line); vertical-align:top; }
.enquiries-table td small { display:block; margin-top:4px; color:var(--muted); }
.enquiries-table .message-row td { padding-top:10px; color:var(--muted); background:#fafafa; white-space:normal; }
.empty-state { margin-top:18px; padding:40px; border:1px dashed var(--line); border-radius:10px; color:var(--muted); text-align:center; }
.admin-section-heading { margin-bottom:22px; display:flex; justify-content:space-between; align-items:flex-start; }
.admin-section-heading p { margin:4px 0 0; color:var(--muted); }
.record-count { padding:5px 9px; border-radius:999px; color:var(--blue); background:#eff6ff; }
.bus-admin-form { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; padding:22px; border:1px solid var(--line); border-radius:10px; background:#fafafa; }
.check-field { display:flex; align-items:center; gap:8px; cursor:pointer; }
.check-field input { width:16px; height:16px; accent-color:var(--blue); }
.managed-fleet { margin-top:18px; display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.managed-fleet article { min-width:0; display:flex; align-items:center; gap:10px; padding:10px; border:1px solid var(--line); border-radius:8px; }
.managed-fleet img { width:62px; height:48px; flex:0 0 auto; border-radius:6px; object-fit:cover; }
.managed-fleet article div { min-width:0; }
.managed-fleet strong, .managed-fleet small { display:block; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.managed-fleet small { margin-top:4px; color:var(--muted); }
.carousel-admin-form { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; padding:22px; border:1px solid var(--line); border-radius:10px; background:#fafafa; }
.managed-slides { margin-top:18px; display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.managed-slides article { overflow:hidden; border:1px solid var(--line); border-radius:10px; }
.managed-slides img { display:block; width:100%; height:150px; object-fit:cover; }
.managed-slides article div { padding:12px; }
.managed-slides strong, .managed-slides small { display:block; }
.managed-slides small { margin-top:4px; color:var(--muted); }
.why-image-preview { overflow:hidden; margin-bottom:18px; border:1px solid var(--line); border-radius:10px; }
.why-image-preview img { display:block; width:100%; max-height:360px; object-fit:cover; }
.why-image-preview span { display:block; padding:10px 12px; color:var(--muted); font-size:12px; background:#fafafa; }
.why-image-form { display:flex; align-items:flex-end; gap:16px; padding:22px; border:1px solid var(--line); border-radius:10px; background:#fafafa; }
.why-image-form .field { flex:1; }
.admin-dashboard-layout { min-height:100vh; display:grid; grid-template-columns:260px minmax(0,1fr); background:#fafafa; }
.admin-sidebar { position:sticky; top:0; height:100vh; padding:24px 20px; border-right:1px solid var(--line); background:#fff; }
.admin-sidebar-brand { display:flex; align-items:center; gap:12px; margin-bottom:30px; }
.admin-sidebar-brand strong, .admin-sidebar-brand small { display:block; }
.admin-sidebar-brand strong { font-size:19px; line-height:24px; }
.admin-sidebar-brand small { color:var(--muted); }
.admin-app-mark { width:44px; height:44px; display:grid; place-items:center; border-radius:13px; color:#fff; background:var(--blue); box-shadow:0 4px 10px rgba(43,127,255,.24); font-size:20px; }
.admin-sidebar-nav { display:grid; gap:10px; }
.admin-sidebar-nav button { width:100%; min-height:44px; padding:10px 13px; display:flex; align-items:center; gap:10px; border:0; border-radius:12px; color:#3f3f46; background:transparent; cursor:pointer; text-align:left; }
.admin-sidebar-nav button strong { flex:1; font-weight:500; }
.admin-sidebar-nav button > span:first-child { flex:1; }
.admin-sidebar-nav button small { min-width:22px; color:var(--blue); text-align:center; }
.admin-sidebar-nav button b { margin-left:auto; font-size:18px; font-weight:400; }
.admin-sidebar-nav button.active { color:#fff; background:var(--blue); box-shadow:0 4px 10px rgba(43,127,255,.22); }
.admin-sidebar-nav button.active small { color:#fff; }
.admin-settings-label { min-height:44px; padding:10px 13px; display:flex; align-items:center; gap:10px; border:1px solid var(--line); border-radius:12px; background:#fff; box-shadow:0 1px 3px rgba(0,0,0,.08); }
.admin-settings-label strong { font-weight:500; }
.admin-settings-links { margin-left:15px; padding:7px 0 0 14px; display:grid; gap:2px; border-left:1px solid var(--line); }
.admin-settings-links button { min-height:38px; padding:8px 10px; border-radius:8px; }
.admin-dashboard-main { min-width:0; }
.admin-topbar { height:82px; padding:16px 30px; display:flex; align-items:center; justify-content:space-between; border-bottom:1px solid var(--line); background:#fff; }
.admin-topbar .auth-brand { gap:10px; }
.admin-topbar .auth-brand > div > span { font-size:18px; font-weight:600; }
.admin-topbar-actions { display:flex; align-items:center; gap:10px; }
.admin-topbar-actions form { margin:0; }
.admin-home-link::before { content:"←"; font-size:16px; }
.admin-logout::before { content:"↪"; font-size:16px; }
.admin-dashboard-content { width:100%; max-width:1120px; margin:0 auto; padding:30px; }
.admin-content-card { border:1px solid var(--line); border-radius:18px; background:#fff; box-shadow:0 1px 3px rgba(0,0,0,.08); }
.admin-content-card { padding:30px; }
.admin-panel-section[hidden] { display:none; }
.admin-create-form { margin-bottom:22px; }
.admin-record-list { display:grid; gap:12px; }
.admin-record-list.card-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
.admin-record-editor { overflow:hidden; border:1px solid var(--line); border-radius:12px; background:#fff; }
.admin-record-editor summary { min-height:72px; padding:12px; display:flex; align-items:center; gap:12px; cursor:pointer; list-style:none; }
.admin-record-editor summary::-webkit-details-marker { display:none; }
.admin-record-editor summary > img { width:72px; height:52px; flex:0 0 auto; border-radius:8px; object-fit:cover; }
.admin-record-editor summary > span { min-width:0; flex:1; }
.admin-record-editor summary strong, .admin-record-editor summary small { display:block; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.admin-record-editor summary small { margin-top:4px; color:var(--muted); }
.admin-record-editor summary b { padding:6px 10px; border-radius:7px; color:var(--blue); background:#eff6ff; font-weight:500; }
.admin-record-editor[open] summary { border-bottom:1px solid var(--line); background:#fafafa; }
.admin-edit-form, .inline-edit-form { margin:0; padding:18px; background:#fff; }
.inline-edit-form { display:flex; align-items:flex-end; gap:12px; }
.inline-edit-form .field { flex:1; }
.inline-edit-form.stacked { align-items:stretch; flex-direction:column; }
.record-actions { display:flex; align-items:center; gap:10px; }
.record-delete { margin:0 18px 18px; }
.why-image-delete { margin-top:12px; }
.slide-editor summary { align-items:flex-start; flex-wrap:wrap; }
.slide-editor summary > img { width:100%; height:150px; flex-basis:100%; }
.slide-editor summary > span { padding:0 4px; }
.route-planner-section { display:block; }
.route-planner-section[hidden] { display:none; }
.route-planner-heading { margin-bottom:18px; padding:22px 24px; display:flex; align-items:flex-start; justify-content:space-between; border:1px solid var(--line); border-radius:16px; background:#fff; box-shadow:0 1px 3px rgba(0,0,0,.08); }
.route-planner-heading h2 { font-size:26px; font-weight:600; }
.route-planner-heading p { max-width:620px; margin:7px 0 0; color:var(--muted); line-height:20px; }
.route-planner-badge { width:66px; height:66px; flex:0 0 auto; display:grid; place-content:center; border-radius:14px; color:var(--muted); background:var(--soft); text-align:center; text-transform:uppercase; font-size:9px; line-height:14px; }
.route-planner-badge strong { color:var(--ink); font-size:11px; }
.route-planner-grid { display:grid; grid-template-columns:minmax(0,3fr) minmax(280px,2fr); gap:18px; align-items:start; }
.route-builder-card { display:flex; flex-direction:column; gap:14px; }
.route-field-group { padding:14px; border:1px dashed #bfdbfe; border-radius:12px; background:#f5f9ff; }
.route-field-group > label { font-weight:600; }
.route-field-group > p { margin:3px 0 10px; color:var(--muted); font-size:12px; }
.route-place-search { min-width:0; flex:1; }
.route-place-search gmp-place-autocomplete { width:100%; }
.route-stops { display:grid; gap:9px; }
.route-stop { min-height:50px; padding:7px 9px; display:flex; align-items:center; gap:9px; border:1px solid var(--line); border-radius:11px; }
.route-stop-number { width:28px; height:28px; flex:0 0 28px; display:grid; place-items:center; border-radius:50%; color:#fff; background:var(--blue); font-size:12px; }
.route-stop button { width:28px; height:28px; border:0; border-radius:50%; color:var(--muted); background:var(--soft); cursor:pointer; font-size:18px; }
.route-add-stop, .route-calculate, .route-copy { width:100%; }
.route-status { min-height:18px; margin:0; color:#15803d; font-size:12px; }
.route-status.error { color:#b91c1c; }
.route-preview { position:relative; min-height:330px; overflow:hidden; display:flex; flex-direction:column; border:1px solid var(--line); border-radius:14px; background:#eef2f3; }
.route-map-label { position:relative; z-index:1; align-self:flex-start; padding:8px 10px; border-radius:9px; background:rgba(255,255,255,.9); box-shadow:0 1px 3px rgba(0,0,0,.08); }
.route-map-label strong, .route-map-label small { display:block; }
.route-map-label small { margin-top:2px; color:var(--muted); font-size:10px; }
.route-google-map { min-height:285px; flex:1; }
.route-preview > small { position:absolute; z-index:1; right:6px; bottom:4px; padding:5px 7px; border-radius:6px; color:var(--muted); background:rgba(255,255,255,.88); font-size:9px; }
.route-map-config-error { margin-bottom:18px; }
.route-planner-side { display:grid; gap:18px; }
.route-card-heading { display:flex; align-items:flex-start; justify-content:space-between; gap:10px; }
.route-card-heading h3 { margin:0; font-size:17px; }
.route-card-heading p { margin:4px 0 0; color:var(--muted); font-size:11px; line-height:15px; }
.route-card-heading > span { padding:4px 7px; border-radius:999px; background:var(--soft); font-size:10px; }
.stopping-points-card ol { margin:16px 0 0; padding:0; display:grid; gap:9px; list-style:none; }
.stopping-points-card li { padding:10px; display:flex; align-items:center; gap:10px; border:1px solid var(--line); border-radius:10px; }
.stopping-points-card li > span { width:30px; height:30px; display:grid; place-items:center; border-radius:50%; color:#fff; background:var(--blue); }
.stopping-points-card li strong, .stopping-points-card li small { display:block; }
.stopping-points-card li small { margin-top:3px; color:var(--muted); font-size:10px; }
.route-summary-card { display:grid; gap:12px; }
.route-summary-stat { padding:14px; border:1px solid var(--line); border-radius:11px; }
.route-summary-stat small, .route-summary-stat strong { display:block; }
.route-summary-stat small { color:var(--muted); }
.route-summary-stat strong { margin-top:8px; font-size:20px; }
.route-summary-stat.toll { border-color:#bfdbfe; background:#f5f9ff; }
.route-summary-stat.toll p { margin:8px 0 0; color:var(--muted); font-size:11px; line-height:16px; }
.route-summary-stat.trip-total { border-color:#86efac; background:#f0fdf4; }
.route-summary-stat.trip-total p { margin:8px 0 0; color:var(--muted); font-size:11px; }
.route-toll-breakdown { padding-top:4px; }
.route-toll-breakdown h4 { margin-bottom:9px; font-size:13px; }
.route-toll-breakdown ol { display:grid; gap:8px; list-style:none; }
.route-toll-breakdown li { padding:10px; display:flex; align-items:flex-start; gap:9px; border:1px solid var(--line); border-radius:10px; }
.route-toll-breakdown li > span { width:22px; height:22px; flex:0 0 auto; display:grid; place-items:center; border-radius:50%; color:#fff; background:var(--blue); font-size:11px; }
.route-toll-breakdown li div { min-width:0; }
.route-toll-breakdown li strong, .route-toll-breakdown li small { display:block; }
.route-toll-breakdown li strong { overflow-wrap:anywhere; font-size:11px; line-height:15px; }
.route-toll-breakdown li small { margin-top:4px; color:var(--muted); font-size:11px; }

@media (max-width:800px) {
  .site-header { height:auto; }
  .header-inner { height:auto; padding:14px 20px; }
  .main-nav { display:none; }
  .page { padding:20px; gap:24px; }
  .hero { height:500px; }
  .hero-content { padding:28px; }
  .hero h1 { font-size:32px; line-height:39px; }
  .hero h1 br, .hero p br { display:none; }
  .metrics { grid-template-columns:1fr 1fr; }
  .fleet-grid, .enquiry-section { grid-template-columns:1fr; }
  .footer-inner { gap:18px; flex-direction:column; text-align:center; }
  .managed-fleet { grid-template-columns:1fr; }
  .managed-slides { grid-template-columns:1fr; }
  .admin-dashboard-layout { grid-template-columns:1fr; }
  .admin-sidebar { position:static; width:100%; height:auto; padding:16px 20px; border-right:0; border-bottom:1px solid var(--line); }
  .admin-sidebar-brand { margin-bottom:14px; }
  .admin-sidebar-nav { grid-template-columns:1fr 1fr; align-items:start; }
  .admin-settings-label { grid-column:1/-1; }
  .admin-settings-links { grid-column:1/-1; margin-left:0; padding-left:0; grid-template-columns:repeat(5,minmax(0,1fr)); border-left:0; }
  .admin-route-links { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .admin-settings-links button { justify-content:center; text-align:center; }
  .admin-settings-links button b, .admin-settings-links button small { display:none; }
  .admin-topbar { display:none; }
  .admin-dashboard-content { padding:20px; }
  .admin-record-list.card-grid { grid-template-columns:1fr; }
  .route-planner-grid { grid-template-columns:1fr; }
}
@media (max-width:480px) {
  .language-modal-backdrop { padding:12px; }
  .language-modal { max-height:calc(100vh - 24px); padding:22px 18px; overflow-y:auto; }
  .language-modal h2 { font-size:25px; line-height:32px; }
  .language-modal > p { margin-bottom:20px; }
  .language-option { min-height:68px; padding:11px 13px; }
  .language-modal-footer { align-items:flex-start; flex-wrap:wrap; }
  .language-continue { width:100%; margin-top:4px; }
  .brand { font-size:16px; }
  .header-inner { gap:10px; }
  .brand strong { display:none; }
  .header-actions { margin-left:auto; }
  .language-picker select { max-width:86px; }
  .call-button { padding:0 10px; }
  .hero { height:520px; border-radius:18px; }
  .hero-content { padding:24px; }
  .button-row { flex-wrap:wrap; }
  .metrics, .enquiry-form { grid-template-columns:1fr; }
  .field-wide { grid-column:auto; }
  .form-card { padding:24px; }
  .footer-contact { flex-direction:column; gap:12px; }
  .bus-admin-form { grid-template-columns:1fr; }
  .carousel-admin-form { grid-template-columns:1fr; }
  .why-image-form { align-items:stretch; flex-direction:column; }
  .admin-sidebar-nav { grid-template-columns:1fr; }
  .admin-settings-label { grid-column:1; grid-row:auto; }
  .admin-settings-links { grid-template-columns:1fr 1fr; }
  .admin-settings-links button { justify-content:flex-start; }
  .admin-dashboard-content { padding:14px; }
  .admin-content-card { padding:20px; border-radius:14px; }
  .contact-admin-form, .inline-edit-form { grid-template-columns:1fr; flex-direction:column; align-items:stretch; }
  .route-planner-heading { padding:18px; }
  .route-planner-heading h2 { font-size:22px; }
  .route-planner-badge { display:none; }
}
