
:root {
  --navy: #0F172A;
  --navy-2: #111827;
  --sky: #38BDF8;
  --sky-deep: #0284C7;
  --silver: #E2E8F0;
  --white: #FFFFFF;
  --muted: #94A3B8;
  --card: rgba(15, 23, 42, 0.74);
  --card-2: rgba(30, 41, 59, 0.66);
  --line: rgba(226, 232, 240, 0.14);
  --shadow: 0 28px 80px rgba(2, 132, 199, 0.26);
  --radius: 26px;
  --max: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background:
    radial-gradient(circle at 15% 0%, rgba(56,189,248,.20), transparent 34rem),
    radial-gradient(circle at 85% 22%, rgba(226,232,240,.11), transparent 30rem),
    linear-gradient(135deg, #0F172A 0%, #123452 42%, #38BDF8 120%);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
::selection { background: rgba(56, 189, 248, .35); color: #fff; }

.site-shell { min-height: 100vh; overflow-x: hidden; overflow-y: visible; }
.skip-link { position: absolute; left: -999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus { left: 1rem; top: 1rem; width: auto; height: auto; z-index: 9999; background: #fff; color: #0F172A; padding: .75rem 1rem; border-radius: .75rem; }

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, .1);
}
.navbar {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo { display: inline-flex; align-items: center; gap: 11px; font-weight: 850; letter-spacing: -0.03em; }
.logo-mark { width: 40px; height: 40px; border-radius: 14px; background: linear-gradient(135deg, #0F172A, #38BDF8, #E2E8F0); display: grid; place-items: center; box-shadow: 0 12px 32px rgba(56, 189, 248, .35); }
.logo-mark svg { width: 24px; height: 24px; }
.logo small { display:block; color: var(--muted); font-weight: 650; letter-spacing: .08em; text-transform: uppercase; font-size: 10px; line-height: 1; }
.nav-links { display: flex; align-items: center; gap: 24px; color: rgba(255,255,255,.82); font-size: 14px; font-weight: 650; }
.nav-links a { position: relative; }
.nav-links a:after { content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 2px; border-radius: 999px; background: var(--sky); transition: width .25s ease; }
.nav-links a:hover:after, .nav-links a:focus:after { width: 100%; }
.nav-cta { display: inline-flex; align-items: center; gap: 10px; padding: 12px 16px; border: 1px solid rgba(226,232,240,.18); border-radius: 999px; background: rgba(255,255,255,.06); box-shadow: inset 0 1px rgba(255,255,255,.12); }
.burger { display: none; width: 46px; height: 46px; border: 1px solid rgba(226,232,240,.16); border-radius: 15px; background: rgba(255,255,255,.06); color: #fff; align-items: center; justify-content: center; cursor: pointer; }
.burger span { position: relative; width: 22px; height: 2px; border-radius: 10px; background: #fff; transition: .25s; }
.burger span:before, .burger span:after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; border-radius: 10px; background: #fff; transition: .25s; }
.burger span:before { transform: translateY(-7px); }
.burger span:after { transform: translateY(7px); }
body.menu-open .burger span { background: transparent; }
body.menu-open .burger span:before { transform: rotate(45deg); }
body.menu-open .burger span:after { transform: rotate(-45deg); }

.section { position: relative; padding: 92px 22px; }
.container { max-width: var(--max); margin: 0 auto; position: relative; z-index: 2; }
.grid { display: grid; gap: 28px; }
.two-col { grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr); align-items: center; }
.three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.four-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.center { text-align: center; }
.eyebrow { display: inline-flex; align-items:center; gap: 10px; padding: 7px 12px; border-radius: 999px; color: #DBF7FF; background: rgba(56, 189, 248, .10); border: 1px solid rgba(56, 189, 248, .24); font-size: 13px; font-weight: 760; letter-spacing: .06em; text-transform: uppercase; }
.eyebrow:before { content: ""; width: 8px; height: 8px; border-radius: 999px; background: var(--sky); box-shadow: 0 0 22px var(--sky); }
h1, h2, h3, h4 { margin: 0; letter-spacing: -.045em; line-height: 1.06; }
h1 { font-size: clamp(48px, 8vw, 88px); max-width: 780px; margin-top: 26px; }
h2 { font-size: clamp(34px, 5vw, 56px); }
h3 { font-size: 23px; }
p { color: rgba(226,232,240,.84); margin: 0; }
.lead { font-size: clamp(18px, 2vw, 22px); max-width: 690px; margin-top: 24px; color: rgba(248,250,252,.88); }
.section-head { max-width: 790px; margin: 0 auto 46px; text-align: center; }
.section-head p { margin-top: 16px; font-size: 18px; }
.gradient-text { background: linear-gradient(90deg, #fff, #BAE6FD 45%, #38BDF8 80%, #E2E8F0); -webkit-background-clip: text; background-clip: text; color: transparent; }

.hero { padding: 78px 22px 96px; background: linear-gradient(135deg, rgba(15,23,42,.78), rgba(30,64,96,.54), rgba(56,189,248,.16)); }
.hero:after { content: ""; position: absolute; inset: auto -8rem -12rem auto; width: 36rem; height: 36rem; background: radial-gradient(circle, rgba(56,189,248,.28), transparent 64%); filter: blur(10px); }
.hero-actions { display:flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.btn { display:inline-flex; align-items:center; justify-content:center; gap: 10px; min-height: 50px; padding: 0 22px; border: 0; border-radius: 15px; font-weight: 850; letter-spacing: -.01em; cursor: pointer; transition: transform .22s ease, box-shadow .22s ease, background .22s ease; }
.btn-primary { color:#06121f; background: linear-gradient(135deg, #E2E8F0, #7DD3FC 38%, #38BDF8); box-shadow: 0 18px 45px rgba(56, 189, 248, .34); }
.btn-secondary { color:#fff; background: rgba(255,255,255,.08); border:1px solid rgba(226,232,240,.17); }
.btn:hover { transform: translateY(-2px); }
.btn-primary:hover { box-shadow: 0 22px 60px rgba(56, 189, 248, .44); }
.hero-image-wrap { position: relative; }
.hero-card { border-radius: 34px; background: rgba(255,255,255,.08); border: 1px solid rgba(226,232,240,.17); box-shadow: var(--shadow); overflow: hidden; padding: 12px; transform: perspective(900px) rotateY(-4deg) rotateX(2deg); }
.hero-image { border-radius: 26px; overflow: hidden; min-height: 410px; background: #0F172A; }
.float-badge { position:absolute; right: -14px; top: 24px; width: 82px; height: 82px; border-radius: 28px; background: linear-gradient(135deg, #38BDF8, #0F172A); display:grid; place-items:center; box-shadow: 0 22px 70px rgba(56,189,248,.42); animation: float 4s ease-in-out infinite; }
.float-badge svg { width: 42px; height: 42px; }
.metric-badge { position:absolute; left: -18px; bottom: 28px; border-radius: 20px; padding: 16px 18px; background: rgba(15,23,42,.82); border: 1px solid rgba(226,232,240,.18); box-shadow: 0 20px 60px rgba(0,0,0,.32); }
.metric-badge strong { display:block; color: var(--sky); font-size: 28px; line-height:1; }
.metric-badge span { color: rgba(226,232,240,.78); font-size: 13px; }
.trust-strip { display:grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 44px; max-width: 770px; }
.trust-strip div { padding: 14px 15px; border-radius: 18px; background: rgba(255,255,255,.06); border: 1px solid rgba(226,232,240,.11); color: rgba(226,232,240,.85); font-size: 13px; font-weight: 700; }

.problem { background: rgba(15,23,42,.28); }
.card { border-radius: var(--radius); background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.045)); border: 1px solid rgba(226,232,240,.13); box-shadow: 0 22px 70px rgba(2, 6, 23, .18); padding: 30px; position:relative; overflow:hidden; }
.card:before { content:""; position:absolute; inset: -1px auto auto -1px; width: 120px; height: 120px; background: radial-gradient(circle, rgba(56,189,248,.18), transparent 62%); pointer-events:none; }
.icon { width: 50px; height: 50px; display:grid; place-items:center; border-radius: 17px; background: linear-gradient(135deg, rgba(56,189,248,.95), rgba(15,23,42,.9)); box-shadow: 0 12px 35px rgba(56,189,248,.28); margin-bottom: 20px; }
.icon svg { width: 25px; height: 25px; }
.card h3 { margin-bottom: 12px; }
.card p { font-size: 15px; }
.card ul { list-style:none; padding:0; margin: 20px 0 0; display:grid; gap:10px; color: rgba(226,232,240,.82); font-size: 14px; }
.card li { position:relative; padding-left: 20px; }
.card li:before { content:""; position:absolute; left:0; top:.65em; width:8px; height:8px; border-radius:999px; background: var(--sky); box-shadow: 0 0 12px rgba(56,189,248,.7); }

.solution { background: linear-gradient(135deg, rgba(15,23,42,.78), rgba(56,189,248,.10)); }
.check-list { display:grid; gap: 22px; margin-top: 30px; }
.check-item { display:flex; gap: 16px; align-items:flex-start; }
.check { flex: 0 0 26px; height:26px; border-radius: 50%; background: linear-gradient(135deg, #38BDF8, #0EA5E9); display:grid; place-items:center; color:#082134; font-weight: 900; margin-top:3px; }
.showcase-card { padding: 14px; border-radius: 34px; background: rgba(255,255,255,.08); border:1px solid rgba(226,232,240,.14); box-shadow: var(--shadow); position:relative; }
.showcase-card img { border-radius: 26px; background: #fff; }
.showcase-note { position:absolute; left: -12px; bottom: 30px; padding: 17px 20px; border-radius: 20px; background: linear-gradient(135deg, rgba(15,23,42,.9), rgba(56,189,248,.92)); border: 1px solid rgba(255,255,255,.18); box-shadow: 0 16px 46px rgba(0,0,0,.28); }
.showcase-note strong { display:block; font-size: 27px; line-height: 1; }
.showcase-note span { display:block; color: rgba(255,255,255,.8); font-size: 13px; }

.services { background: linear-gradient(160deg, rgba(18,27,54,.86), rgba(14,84,124,.26), rgba(15,23,42,.84)); }
.service-card { min-height: 335px; display:flex; flex-direction:column; }
.service-card .btn { margin-top:auto; width: fit-content; min-height:42px; padding: 0 16px; font-size:14px; }

.results { background: rgba(15,23,42,.34); }
.testimonial-wrap { grid-template-columns: .92fr 1fr; align-items:center; }
.quote-list { display:grid; gap: 24px; }
.quote { padding-left: 24px; border-left: 4px solid var(--sky); }
.quote h3 { margin-bottom: 8px; }
.quote p { font-style: italic; }
.quote small { display:block; color: var(--sky); margin-top: 12px; font-weight: 800; }
.stats { padding: 58px 0 0; }
.stat { text-align:center; }
.stat strong { display:block; font-size: clamp(34px, 5vw, 54px); line-height: 1; color: var(--sky); letter-spacing:-.05em; }
.stat span { display:block; margin-top:9px; color: rgba(226,232,240,.76); font-weight:700; font-size: 14px; }

.fleet { background: linear-gradient(145deg, rgba(11, 18, 32, .92), rgba(56,189,248,.10)); }
.fleet-card { padding: 0; overflow:hidden; }
.fleet-card .fleet-body { padding: 24px; }
.fleet-card img { width: 100%; aspect-ratio: 1.45 / 1; object-fit: cover; border-bottom: 1px solid rgba(226,232,240,.1); background: rgba(226,232,240,.07); }
.tag-row { display:flex; flex-wrap:wrap; gap:8px; margin: 16px 0; }
.tag { border-radius:999px; padding: 6px 10px; background: rgba(56,189,248,.10); border:1px solid rgba(56,189,248,.16); color:#BAE6FD; font-weight: 760; font-size: 12px; }
.price-line { display:flex; justify-content:space-between; gap: 18px; align-items:end; padding-top: 18px; border-top: 1px solid rgba(226,232,240,.12); }
.price-line strong { font-size: 30px; color: #fff; letter-spacing:-.04em; }
.price-line span { color: rgba(226,232,240,.72); font-size: 13px; }

.longform { background: linear-gradient(180deg, rgba(15,23,42,.88), rgba(19,49,72,.86)); }
.article { max-width: 880px; margin: 0 auto; }
.article p { margin-top: 20px; }
.article h2 { text-align:center; margin-bottom: 12px; }
.article h3 { margin-top: 34px; }
.article-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 34px; }
.article-box { border-radius: 22px; padding: 24px; background: rgba(255,255,255,.055); border: 1px solid rgba(226,232,240,.11); }

.booking { background: linear-gradient(135deg, rgba(56,189,248,.12), rgba(15,23,42,.94)); }
.form-card { max-width: 470px; margin: 0 auto; }
.form-grid { display:grid; gap: 16px; }
label { display:block; color: rgba(226,232,240,.9); font-weight: 760; font-size: 13px; margin-bottom: 8px; }
input, select, textarea { width:100%; color:#fff; background: rgba(255,255,255,.08); border: 1px solid rgba(226,232,240,.16); border-radius: 13px; padding: 13px 14px; outline: none; transition: border .2s, box-shadow .2s, background .2s; }
input::placeholder, textarea::placeholder { color: rgba(226,232,240,.45); }
input:focus, select:focus, textarea:focus { border-color: rgba(56,189,248,.8); box-shadow: 0 0 0 4px rgba(56,189,248,.12); background: rgba(255,255,255,.10); }
select option { background: #0F172A; color: #fff; }
.form-disclaimer { font-size: 12px; margin-top: 14px; color: rgba(226,232,240,.62); }
.form-disclaimer a { color: #BAE6FD; text-decoration: underline; }
.contact-stack { display:grid; gap: 22px; }
.info-card { display:flex; gap: 16px; align-items:flex-start; }
.map-card { overflow:hidden; padding: 12px; }
.map-card img { border-radius: 18px; min-height: 240px; object-fit:cover; width: 100%; }


.showroom {
  background:
    radial-gradient(circle at 18% 0%, rgba(56,189,248,.18), transparent 34rem),
    linear-gradient(145deg, rgba(15,23,42,.94), rgba(13,72,108,.42), rgba(15,23,42,.9));
}
.showroom-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 28px;
  align-items: stretch;
  padding: 14px;
  border-radius: 34px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(226,232,240,.14);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.showroom-feature > img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 26px;
}
.showroom-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 22px 22px 4px;
}
.showroom-copy h3 { font-size: clamp(28px, 3vw, 42px); margin-bottom: 18px; }
.showroom-copy p { font-size: 17px; }
.showroom-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}
.showroom-photo {
  padding: 0;
  overflow: hidden;
}
.showroom-photo img {
  width: 100%;
  aspect-ratio: 1.33 / 1;
  object-fit: cover;
  border-bottom: 1px solid rgba(226,232,240,.11);
  transition: transform .45s ease, filter .45s ease;
}
.showroom-photo:hover img { transform: scale(1.035); filter: saturate(1.08) contrast(1.04); }
.showroom-photo div { padding: 24px; }
.showcase-card img,
.testimonial-wrap img,
.fleet-card img,
.map-card img,
.showroom-feature img,
.showroom-photo img {
  object-fit: cover;
}
@media (max-width: 980px) {
  .showroom-feature { grid-template-columns: 1fr; }
  .showroom-copy { padding: 18px; }
  .showroom-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .showroom-feature > img { min-height: 300px; }
  .showroom-grid { grid-template-columns: 1fr; }
}

.footer { background: #08111F; padding: 54px 22px 34px; border-top: 1px solid rgba(226,232,240,.09); }
.footer-grid { display:grid; grid-template-columns: 1.3fr .7fr .7fr .8fr; gap: 28px; padding-bottom: 40px; border-bottom: 1px solid rgba(226,232,240,.12); }
.footer h4 { font-size: 15px; margin-bottom: 15px; color:#fff; letter-spacing:0; }
.footer a, .footer p, .footer li { color: rgba(226,232,240,.66); font-size:14px; }
.footer ul { list-style:none; padding:0; margin:0; display:grid; gap: 10px; }
.footer-bottom { display:grid; grid-template-columns: 1fr 1.4fr; gap: 28px; align-items:start; padding-top: 30px; }
.disclaimer { font-size: 12px !important; color: rgba(226,232,240,.52) !important; }

.subpage-hero { padding: 76px 22px 54px; background: linear-gradient(135deg, rgba(15,23,42,.8), rgba(56,189,248,.16)); }
.subpage-hero h1 { font-size: clamp(38px, 6vw, 66px); max-width: 920px; }
.content-page { background: rgba(15,23,42,.82); }
.policy-layout { display:grid; grid-template-columns: 280px 1fr; gap: 38px; align-items:start; }
.policy-nav { position: sticky; top: 92px; border-radius: 22px; background: rgba(255,255,255,.055); border:1px solid rgba(226,232,240,.11); padding: 18px; }
.policy-nav a { display:block; padding: 10px 12px; border-radius: 12px; color: rgba(226,232,240,.74); font-weight: 700; font-size: 14px; }
.policy-nav a:hover { background: rgba(56,189,248,.11); color:#fff; }
.policy-content { display:grid; gap: 24px; }
.policy-block { border-radius: 24px; background: rgba(255,255,255,.055); border: 1px solid rgba(226,232,240,.11); padding: 30px; }
.policy-block h2 { font-size: 30px; margin-bottom: 14px; }
.policy-block h3 { margin: 24px 0 10px; font-size: 21px; }
.policy-block p, .policy-block li { color: rgba(226,232,240,.80); }
.policy-block ul { margin: 14px 0 0; padding-left: 22px; }
.policy-block li { margin: 8px 0; }

.cookie-banner { position: fixed; left: 18px; right: 18px; bottom: 18px; z-index: 2000; display:none; }
.cookie-banner.show { display:block; animation: slideUp .35s ease both; }
.cookie-panel { max-width: 1080px; margin: 0 auto; border-radius: 24px; background: rgba(8,17,31,.94); border: 1px solid rgba(226,232,240,.16); box-shadow: 0 30px 100px rgba(0,0,0,.48); padding: 22px; display:grid; grid-template-columns: 1fr auto; gap: 22px; align-items:center; backdrop-filter: blur(18px); }
.cookie-actions { display:flex; gap: 10px; flex-wrap:wrap; justify-content:flex-end; }
.cookie-panel p { font-size:14px; }
.cookie-panel a { color: #BAE6FD; text-decoration: underline; }
.alert-overlay { position:fixed; inset:0; z-index:2500; display:none; place-items:center; padding: 20px; background: rgba(2,6,23,.68); backdrop-filter: blur(12px); }
.alert-overlay.show { display:grid; animation: fadeIn .2s ease both; }
.alert-modal { width:min(470px, 100%); border-radius: 28px; background: linear-gradient(160deg, rgba(15,23,42,.98), rgba(30,64,96,.97)); border:1px solid rgba(226,232,240,.16); box-shadow: 0 35px 110px rgba(0,0,0,.5); padding: 30px; text-align:center; transform-origin:center; animation: pop .35s cubic-bezier(.2,1.2,.2,1) both; }
.alert-icon { width: 72px; height:72px; margin:0 auto 18px; border-radius: 24px; background: linear-gradient(135deg,#38BDF8,#E2E8F0); display:grid; place-items:center; color:#0F172A; font-size:34px; box-shadow: 0 18px 45px rgba(56,189,248,.35); }
.close-alert { margin-top: 22px; }
.backtop { position:fixed; right: 18px; bottom: 110px; z-index: 950; width:48px; height:48px; border-radius: 16px; background: rgba(56,189,248,.22); border:1px solid rgba(56,189,248,.28); color:#fff; display:grid; place-items:center; opacity:0; pointer-events:none; transform: translateY(10px); transition:.25s; }
.backtop.show { opacity:1; pointer-events:auto; transform: translateY(0); }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-13px); } }
@keyframes slideUp { from { transform: translateY(20px); opacity:0; } to { transform: translateY(0); opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes pop { from { transform: scale(.9); opacity:0; } to { transform: scale(1); opacity:1; } }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .two-col, .testimonial-wrap, .policy-layout, .footer-bottom { grid-template-columns: 1fr; }
  .three-col, .four-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-card { transform: none; }
  .policy-nav { position: relative; top: 0; }
}
@media (max-width: 760px) {
  .navbar { padding: 13px 16px; }
  .burger { display:flex; }
  .nav-links { position: fixed; left: 14px; right: 14px; top: 76px; display:grid; gap: 4px; padding: 18px; background: rgba(8,17,31,.97); border: 1px solid rgba(226,232,240,.14); border-radius: 22px; box-shadow: 0 25px 90px rgba(0,0,0,.42); transform: translateY(-16px); opacity:0; pointer-events:none; transition:.25s ease; }
  body.menu-open .nav-links { transform: translateY(0); opacity:1; pointer-events:auto; }
  .nav-links a { padding: 14px 12px; border-radius: 12px; }
  .nav-links a:hover { background: rgba(56,189,248,.1); }
  .nav-cta { justify-content:center; margin-top: 6px; }
  .section { padding: 70px 17px; }
  .hero { padding-top: 52px; }
  h1 { font-size: clamp(42px, 13vw, 62px); }
  .lead { font-size: 17px; }
  .hero-actions, .cookie-actions { flex-direction: column; }
  .btn { width: 100%; }
  .three-col, .four-col, .trust-strip, .article-grid { grid-template-columns: 1fr; }
  .hero-image { min-height: 300px; }
  .float-badge { right: 10px; top: 14px; width: 66px; height: 66px; border-radius: 22px; }
  .metric-badge, .showcase-note { left: 12px; bottom: 14px; }
  .cookie-panel { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .card { padding: 24px; }
}

/* Visual upgrade: original editorial-style imagery + motion system */
.scroll-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 4000;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #0F172A, #38BDF8, #E2E8F0);
  box-shadow: 0 0 22px rgba(56,189,248,.58);
  pointer-events: none;
}
.sky-particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: .58;
}
.sky-particles span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);
  border-radius: 999px;
  background: rgba(226,232,240,.72);
  box-shadow: 0 0 22px rgba(56,189,248,.75);
  animation: particleDrift var(--d) ease-in-out var(--delay) infinite alternate;
}
.header { transition: background .25s ease, box-shadow .25s ease, border-color .25s ease; }
.header.is-scrolled {
  background: rgba(8,17,31,.91);
  box-shadow: 0 18px 60px rgba(2,6,23,.28);
  border-color: rgba(56,189,248,.15);
}
.header.is-scrolled .navbar { padding-top: 11px; padding-bottom: 11px; }
.navbar { transition: padding .25s ease; }
.btn, .nav-cta { position: relative; overflow: hidden; isolation: isolate; }
.btn:before, .nav-cta:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 20% 0%, rgba(255,255,255,.42), transparent 34%);
  opacity: 0;
  transition: opacity .25s ease;
}
.btn:hover:before, .nav-cta:hover:before { opacity: 1; }
.ripple {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,.55);
  pointer-events: none;
  animation: ripple .68s ease-out forwards;
}
.card, .showcase-card, .hero-card { will-change: transform; }
.card { transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease; }
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(56,189,248,.24);
  box-shadow: 0 26px 80px rgba(2,132,199,.22);
}
.hero-card { transition: transform .35s ease, box-shadow .35s ease; }
.hero-card:hover { box-shadow: 0 36px 110px rgba(56,189,248,.33); }
.hero-image { object-fit: cover; width: 100%; }
.showcase-card img,
.testimonial-wrap img,
.fleet-card img,
.map-card img {
  object-fit: cover;
}
.fleet-card {
  transform-style: preserve-3d;
  transition: transform .18s ease, box-shadow .22s ease, border-color .22s ease;
}
.fleet-card:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 30%), rgba(255,255,255,.22), transparent 30%);
  opacity: 0;
  transition: opacity .18s ease;
}
.fleet-card:hover:after { opacity: 1; }
.fleet-card img { transition: transform .45s ease, filter .45s ease; }
.fleet-card:hover img { transform: scale(1.035); filter: saturate(1.08) contrast(1.04); }
body.js-ready .motion-image {
  opacity: 0;
  filter: blur(10px) saturate(.92);
  transform: scale(1.015);
  transition: opacity .7s ease, filter .7s ease, transform .7s ease;
}
body.js-ready .motion-image.is-loaded {
  opacity: 1;
  filter: blur(0) saturate(1);
  transform: scale(1);
}
.reveal { transition-delay: var(--reveal-delay, 0ms); }
.cookie-panel { animation: cookieGlow 6s ease-in-out infinite alternate; }
.alert-icon { animation: alertPulse 1.65s ease-in-out infinite; }
.backtop { backdrop-filter: blur(14px); }
@keyframes particleDrift {
  from { transform: translate3d(-12px, 8px, 0) scale(.85); opacity: .25; }
  to { transform: translate3d(18px, -26px, 0) scale(1.25); opacity: .92; }
}
@keyframes ripple {
  from { opacity: .65; width: 0; height: 0; }
  to { opacity: 0; width: 440px; height: 440px; }
}
@keyframes cookieGlow {
  from { box-shadow: 0 30px 100px rgba(0,0,0,.48), 0 0 0 rgba(56,189,248,0); }
  to { box-shadow: 0 30px 100px rgba(0,0,0,.48), 0 0 38px rgba(56,189,248,.14); }
}
@keyframes alertPulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.04); }
}
@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .sky-particles { display: none; }
}


.nav-links a.active { color: #fff; }
.nav-links a.active:after { width: 100%; }
.tag-row { display:flex; flex-wrap:wrap; gap:8px; margin: 18px 0; }
.tag { display:inline-flex; align-items:center; border-radius:999px; padding:7px 10px; background: rgba(56,189,248,.10); border:1px solid rgba(56,189,248,.22); color: rgba(226,232,240,.86); font-size:12px; font-weight:800; }
.service-card .btn { margin-top: 20px; }
.stats { background: rgba(15,23,42,.42); }
.nav-links { gap: 18px; }
@media (max-width: 1120px) { .nav-links { gap: 12px; font-size: 13px; } .nav-cta { padding: 10px 12px; } }


/* Production scroll safeguard: the homepage must never be clipped before all reference-structure sections render. */
html, body { min-height: 100%; }
.site-shell, main { overflow-y: visible; }
#booking { margin-bottom: 0; }

.float-badge.image-badge {
  width: 74px;
  height: 74px;
  padding: 12px;
  border-radius: 24px;
  background: linear-gradient(135deg, #38BDF8, #E2E8F0);
  box-shadow: 0 20px 55px rgba(56, 189, 248, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
}

.float-badge.image-badge img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  border-radius: 14px;
}
.logo-image-mark {
  padding: 6px;
  overflow: hidden;
}

.logo-image-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 10px;
}