/* ============================================================
   RentalOS Drive — design system
   Premium, minimalist car-rental front end.
   ============================================================ */
:root {
	--rd-orange: #ff6a13;
	--rd-orange-press: #e2560a;
	--rd-orange-soft: #fff0e6;
	--rd-ink: #121317;
	--rd-ink-2: #1b1e24;
	--rd-white: #ffffff;
	--rd-soft: #f7f6f4;
	--rd-soft-2: #efece7;
	--rd-line: #e8e4de;
	--rd-text: #16181d;
	--rd-text-2: #5c6370;
	--rd-text-3: #9aa0ab;
	--rd-go: #16a34a;
	--rd-radius: 8px;
	--rd-radius-lg: 16px;
	--rd-shadow: 0 1px 2px rgba(12,13,16,.04), 0 12px 34px rgba(12,13,16,.08);
	--rd-shadow-lg: 0 24px 60px rgba(12,13,16,.16);
	--rd-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
	--rd-font-head: var(--rd-font);
	--rd-maxw: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0; font-family: var(--rd-font); color: var(--rd-text);
	background: var(--rd-white); line-height: 1.6; font-size: 16px;
	-webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
/* Every theme icon gets a sane default size; specific contexts override below. */
.rd-ico { width: 20px; height: 20px; flex: 0 0 auto; display: inline-block; vertical-align: middle; }
.rd-btn .rd-ico { width: 18px; height: 18px; }
/* Belt-and-suspenders: never let a chrome-area icon balloon. */
.rd-topbar svg, .rd-header svg, .rd-announce svg, .rd-footer-x svg { max-width: 28px; max-height: 28px; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0 0 .4em; line-height: 1.08; letter-spacing: -.025em; font-weight: 800; font-family: var(--rd-font-head); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); }
h3 { font-size: 1.4rem; }
p { margin: 0 0 1rem; }
.rd-wrap { max-width: var(--rd-maxw); margin: 0 auto; padding: 0 24px; }
.rd-eyebrow { display: inline-block; font-size: 12.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--rd-orange); margin-bottom: 14px; }
.rd-lead { font-size: 1.15rem; color: var(--rd-text-2); max-width: 620px; }
.rd-center { text-align: center; }
.rd-center .rd-lead { margin-left: auto; margin-right: auto; }
.rd-section { padding: 92px 0; }
.rd-section.alt { background: var(--rd-soft); }
.rd-section.ink { background: var(--rd-ink); color: #fff; }
.rd-section-head { margin-bottom: 46px; }

/* Buttons */
.rd-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 9px;
	height: 54px; padding: 0 28px; border-radius: var(--rd-radius); border: 2px solid transparent;
	font-family: inherit; font-size: 16px; font-weight: 700; cursor: pointer; white-space: nowrap;
	transition: transform .05s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.rd-btn:active { transform: translateY(1px); }
.rd-btn-primary { background: var(--rd-orange); color: #fff; }
.rd-btn-primary:hover { background: var(--rd-orange-press); }
.rd-btn-dark { background: var(--rd-ink); color: #fff; }
.rd-btn-dark:hover { background: #000; }
.rd-btn-ghost { background: transparent; color: var(--rd-ink); border-color: var(--rd-line); }
.rd-btn-ghost:hover { border-color: var(--rd-ink); }
.rd-btn-light { background: #fff; color: var(--rd-ink); }
.rd-btn-light:hover { background: var(--rd-soft); }
.rd-btn-sm { height: 44px; padding: 0 20px; font-size: 14.5px; }
.rd-btn-block { width: 100%; }

/* ---------- Header ---------- */
.rd-header { position: sticky; top: 0; z-index: 80; background: rgba(255,255,255,.92); backdrop-filter: saturate(160%) blur(12px); border-bottom: 1px solid var(--rd-line); }
.rd-header-inner { display: flex; align-items: center; gap: 16px; height: 76px; }
.rd-logo { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 23px; letter-spacing: -.04em; color: var(--rd-ink); flex: 0 0 auto; }
.rd-logo .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--rd-orange); display: inline-block; margin-bottom: -2px; }
.rd-logo img { max-height: 40px; width: auto; }
/* WordPress custom logo (the_custom_logo) — adjustable height, no overflow. */
.rd-header-inner .custom-logo-link { flex: 0 0 auto; display: inline-flex; align-items: center; line-height: 0; }
.rd-header-inner .custom-logo { max-height: var(--rd-logo-h, 44px); width: auto; height: auto; display: block; }
.rd-nav { display: flex; align-items: center; gap: 2px; flex: 1 1 auto; min-width: 0; }
.rd-menu, .rd-mobile-menu { list-style: none; margin: 0; padding: 0; }
.rd-menu { display: flex; align-items: center; gap: 2px; }
.rd-menu li, .rd-mobile-menu li { list-style: none; margin: 0; }
.rd-header-inner.nav-center .rd-nav { justify-content: center; }
.rd-header-inner.nav-center .rd-menu { justify-content: center; }
.rd-header-inner.nav-left .rd-nav { justify-content: flex-start; margin-left: 8px; }
.rd-nav a { padding: 10px 14px; border-radius: 6px; font-weight: 600; font-size: 15px; color: var(--rd-text); }
.rd-nav a:hover { background: var(--rd-soft); color: var(--rd-ink); }
.rd-nav .current-menu-item > a { color: var(--rd-orange); }
.rd-header-right { flex: 0 0 auto; display: flex; align-items: center; gap: 12px; }
.rd-header-phone { font-weight: 700; color: var(--rd-ink); display: flex; align-items: center; gap: 7px; }
.rd-header-phone svg { width: 17px; height: 17px; color: var(--rd-orange); }
.rd-burger { display: none; width: 46px; height: 46px; border: 1px solid var(--rd-line); border-radius: 8px; background: #fff; cursor: pointer; align-items: center; justify-content: center; }
.rd-burger svg { width: 22px; height: 22px; }

/* Mobile nav */
.rd-mobile { position: fixed; inset: 0; z-index: 90; background: var(--rd-ink); color: #fff; transform: translateX(100%); transition: transform .3s ease; display: flex; flex-direction: column; padding: 24px; }
.rd-mobile.is-open { transform: translateX(0); }
.rd-mobile-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.rd-mobile-top .rd-logo { color: #fff; }
.rd-mobile a { color: #fff; font-size: 22px; font-weight: 700; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.rd-mobile .rd-btn { margin-top: 24px; }
.rd-x { width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.2); border-radius: 8px; background: transparent; color: #fff; cursor: pointer; }

/* ---------- Hero ---------- */
.rd-hero { position: relative; background: var(--rd-ink); color: #fff; overflow: hidden; }
.rd-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.rd-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,9,12,.92) 0%, rgba(8,9,12,.7) 45%, rgba(8,9,12,.35) 100%); }
.rd-hero-inner { position: relative; padding: 64px 0 124px; }
.rd-hero h1 { color: #fff; max-width: 720px; }
.rd-hero p { color: rgba(255,255,255,.82); font-size: 1.2rem; max-width: 540px; margin-top: 8px; }
.rd-hero-values { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 34px; }
.rd-hero-value { display: flex; align-items: center; gap: 11px; font-weight: 600; font-size: 15px; }
.rd-hero-value svg { width: 22px; height: 22px; color: var(--rd-orange); flex: 0 0 22px; }

/* Booking search card (overlaps hero) */
.rd-searchbar { position: relative; z-index: 5; margin-top: -76px; margin-bottom: 0; }
.rd-search-card { background: #fff; border-radius: var(--rd-radius-lg); box-shadow: var(--rd-shadow-lg); padding: 12px; }
.rd-search-tabs { display: flex; gap: 4px; padding: 6px 6px 12px; }
.rd-search-tab { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 8px; font-weight: 700; font-size: 14px; color: var(--rd-text-2); cursor: pointer; border: none; background: none; font-family: inherit; }
.rd-search-tab.is-active { background: var(--rd-ink); color: #fff; }
.rd-search-tab svg { width: 17px; height: 17px; }
.rd-search-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr auto; gap: 10px; align-items: end; }
.rd-search-field { display: flex; flex-direction: column; gap: 6px; padding: 10px 14px; border: 1px solid var(--rd-line); border-radius: 10px; background: var(--rd-soft); transition: border-color .15s; }
.rd-search-field:focus-within { border-color: var(--rd-orange); background: #fff; }
.rd-search-field label { font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--rd-text-3); }
.rd-search-field input, .rd-search-field select { border: none; background: transparent; font-family: inherit; font-size: 15px; font-weight: 600; color: var(--rd-text); outline: none; padding: 0; width: 100%; }
.rd-search-card .rd-btn { height: 100%; min-height: 62px; }
.rd-search-meta { display: flex; justify-content: space-between; align-items: center; padding: 12px 8px 4px; font-size: 13px; color: var(--rd-text-2); }
.rd-search-meta a { color: var(--rd-orange); font-weight: 700; }

/* ---------- Value strip ---------- */
.rd-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.rd-strip-item { text-align: center; padding: 8px; }
.rd-strip-item .num { font-size: 2.6rem; font-weight: 900; letter-spacing: -.03em; color: var(--rd-ink); }
.rd-strip-item .lbl { color: var(--rd-text-2); font-weight: 600; font-size: 14.5px; }
.rd-section.ink .rd-strip-item .num { color: #fff; }
.rd-section.ink .rd-strip-item .lbl { color: rgba(255,255,255,.6); }

/* ---------- Fleet grid ---------- */
.rd-fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rd-car {
	background: #fff; border: 1px solid var(--rd-line); border-radius: var(--rd-radius-lg);
	overflow: hidden; display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .2s ease;
}
.rd-car:hover { transform: translateY(-4px); box-shadow: var(--rd-shadow); }
.rd-car-media { position: relative; aspect-ratio: 16 / 10; background: linear-gradient(135deg, #1d2128, #0e1014); display: grid; place-items: center; background-size: cover; background-position: center; }
.rd-car-media .ph { width: 64px; height: 64px; color: rgba(255,255,255,.22); }
.rd-car-cat { position: absolute; top: 14px; left: 14px; background: #fff; color: var(--rd-ink); font-size: 11.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: 5px 11px; border-radius: 30px; }
.rd-car-fav { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; }
.rd-car-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.rd-car-name { font-size: 1.18rem; font-weight: 800; letter-spacing: -.02em; }
.rd-car-or { font-size: 12.5px; color: var(--rd-text-3); margin-top: 2px; }
.rd-car-specs { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0 18px; }
.rd-spec { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: var(--rd-text-2); background: var(--rd-soft); padding: 5px 10px; border-radius: 7px; }
.rd-spec svg { width: 14px; height: 14px; color: var(--rd-text-3); }
.rd-car-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--rd-line); }
.rd-car-price .amt { font-size: 1.5rem; font-weight: 900; letter-spacing: -.03em; color: var(--rd-ink); }
.rd-car-price .per { font-size: 12.5px; color: var(--rd-text-3); }
.rd-car-price .from { display: block; font-size: 11px; color: var(--rd-text-3); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }

/* ---------- Category tiles ---------- */
.rd-cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.rd-cat { position: relative; border-radius: var(--rd-radius-lg); overflow: hidden; background: var(--rd-soft); padding: 26px 22px; min-height: 150px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--rd-line); transition: border-color .15s, transform .15s; }
.rd-cat:hover { border-color: var(--rd-orange); transform: translateY(-3px); }
.rd-cat .ic { width: 42px; height: 42px; color: var(--rd-orange); }
.rd-cat .nm { font-weight: 800; font-size: 1.15rem; letter-spacing: -.02em; }
.rd-cat .ct { font-size: 13px; color: var(--rd-text-2); }

/* ---------- Steps ---------- */
.rd-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.rd-step { position: relative; padding: 30px; background: #fff; border: 1px solid var(--rd-line); border-radius: var(--rd-radius-lg); }
.rd-step .n { font-size: 13px; font-weight: 900; color: var(--rd-orange); letter-spacing: .1em; }
.rd-step .ic { width: 48px; height: 48px; color: var(--rd-ink); margin: 14px 0; }
.rd-step h3 { font-size: 1.25rem; }
.rd-step p { color: var(--rd-text-2); margin: 0; font-size: 15px; }

/* ---------- Features ---------- */
.rd-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.rd-feature { padding: 4px; }
.rd-feature .ic { width: 30px; height: 30px; color: var(--rd-orange); margin-bottom: 14px; }
.rd-feature h3 { font-size: 1.2rem; }
.rd-feature p { color: var(--rd-text-2); margin: 0; font-size: 15px; }
.rd-section.ink .rd-feature p { color: rgba(255,255,255,.66); }

/* ---------- Testimonials ---------- */
.rd-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rd-quote { background: #fff; border: 1px solid var(--rd-line); border-radius: var(--rd-radius-lg); padding: 28px; }
.rd-quote .stars { color: var(--rd-orange); letter-spacing: 2px; margin-bottom: 12px; font-size: 14px; }
.rd-quote p { font-size: 1.05rem; color: var(--rd-text); }
.rd-quote .who { font-weight: 700; color: var(--rd-text-2); font-size: 14px; }

/* ---------- Locations ---------- */
.rd-locs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.rd-loc { display: flex; gap: 14px; padding: 20px; border: 1px solid var(--rd-line); border-radius: var(--rd-radius); background: #fff; }
.rd-loc .pin { width: 40px; height: 40px; flex: 0 0 40px; border-radius: 10px; background: var(--rd-orange-soft); color: var(--rd-orange); display: grid; place-items: center; }
.rd-loc .pin svg { width: 20px; height: 20px; }
.rd-loc .nm { font-weight: 800; }
.rd-loc .ad { font-size: 13.5px; color: var(--rd-text-2); }

/* ---------- CTA band ---------- */
.rd-cta { background: var(--rd-orange); color: #fff; border-radius: var(--rd-radius-lg); padding: 60px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.rd-cta h2 { color: #fff; margin: 0; }
.rd-cta p { color: rgba(255,255,255,.9); margin: 6px 0 0; }

/* ---------- Page header ---------- */
.rd-pagehead { background: var(--rd-ink); color: #fff; padding: 70px 0; }
.rd-pagehead h1 { color: #fff; }
.rd-pagehead .crumb { color: rgba(255,255,255,.55); font-size: 14px; font-weight: 600; }
.rd-pagehead .crumb a:hover { color: var(--rd-orange); }

/* ---------- Single vehicle ---------- */
.rd-vehicle { display: grid; grid-template-columns: 1.3fr 1fr; gap: 44px; align-items: start; }
.rd-vehicle-media { border-radius: var(--rd-radius-lg); overflow: hidden; aspect-ratio: 16/11; background: linear-gradient(135deg, #1d2128, #0e1014); display: grid; place-items: center; background-size: cover; background-position: center; }
.rd-vehicle-media .ph { width: 96px; height: 96px; color: rgba(255,255,255,.2); }
.rd-vehicle-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 22px 0; }
.rd-vehicle-spec { background: var(--rd-soft); border-radius: 10px; padding: 14px 16px; }
.rd-vehicle-spec .k { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--rd-text-3); font-weight: 700; }
.rd-vehicle-spec .v { font-weight: 700; font-size: 1.05rem; }
.rd-pricebox { border: 1px solid var(--rd-line); border-radius: var(--rd-radius-lg); padding: 26px; box-shadow: var(--rd-shadow); position: sticky; top: 96px; }
.rd-pricebox .price { font-size: 2.4rem; font-weight: 900; letter-spacing: -.03em; }
.rd-pricebox .price small { font-size: 1rem; font-weight: 600; color: var(--rd-text-3); }

/* ---------- Portal wrappers (plugin shortcodes) ---------- */
.rd-portal-page { padding: 56px 0 90px; }

/* ---------- Footer ---------- */
.rd-footer { background: var(--rd-ink); color: rgba(255,255,255,.7); padding: 70px 0 30px; }
.rd-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; }
.rd-footer h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.rd-footer a { color: rgba(255,255,255,.7); font-size: 15px; display: block; padding: 6px 0; }
.rd-footer a:hover { color: var(--rd-orange); }
.rd-footer .rd-logo { color: #fff; margin-bottom: 14px; }
.rd-footer .blurb { font-size: 14.5px; max-width: 320px; }
.rd-footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 50px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; font-size: 13.5px; color: rgba(255,255,255,.5); flex-wrap: wrap; }

/* ---------- Notices ---------- */
.rd-empty-note { text-align: center; padding: 60px 20px; color: var(--rd-text-2); background: var(--rd-soft); border-radius: var(--rd-radius-lg); }

/* ---------- Reveal animation ---------- */
.rd-reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.rd-reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	.rd-fleet-grid, .rd-features, .rd-steps, .rd-quotes { grid-template-columns: repeat(2, 1fr); }
	.rd-cats { grid-template-columns: repeat(2, 1fr); }
	.rd-strip { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
	.rd-vehicle { grid-template-columns: 1fr; }
	.rd-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
	.rd-nav, .rd-header-phone { display: none; }
	.rd-burger { display: inline-flex; }
	.rd-search-row { grid-template-columns: 1fr 1fr; }
	.rd-search-card .rd-btn { grid-column: 1 / -1; min-height: 54px; }
	.rd-section { padding: 64px 0; }
	.rd-cta { padding: 40px; }
}
@media (max-width: 560px) {
	.rd-fleet-grid, .rd-features, .rd-steps, .rd-quotes, .rd-cats, .rd-locs, .rd-strip, .rd-footer-grid { grid-template-columns: 1fr; }
	.rd-search-row { grid-template-columns: 1fr; }
	.rd-hero-inner { padding: 56px 0 130px; }
}
@media (prefers-reduced-motion: reduce) { .rd-reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---- v1.1 additions: top bar, about, deals, contact, social ---- */
.rd-topbar { background: var(--rd-ink); color: rgba(255,255,255,.78); font-size: 13px; }
.rd-topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 40px; }
.rd-topbar a { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.78); padding: 0 10px; font-weight: 600; }
.rd-topbar a:hover { color: #fff; }
.rd-topbar svg { width: 14px; height: 14px; color: var(--rd-orange); }
.rd-topbar-left { display: flex; align-items: center; gap: 8px; }
.rd-topbar-tag { color: rgba(255,255,255,.5); margin-left: 8px; }
.rd-topbar-right { display: flex; align-items: center; gap: 2px; }
@media (max-width: 860px) { .rd-topbar-tag, .rd-topbar-right a span { display: none; } }

/* Social */
.rd-social { display: flex; gap: 10px; margin-top: 18px; }
.rd-social a { width: 38px; height: 38px; border-radius: 9px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; }
.rd-social a:hover { background: var(--rd-orange); }
.rd-social svg { width: 18px; height: 18px; }

/* About split */
.rd-about { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.rd-about.flip .rd-about-media { order: -1; }
.rd-about-text h2 { margin-bottom: 16px; }
.rd-about-body { color: var(--rd-text-2); font-size: 1.05rem; }
.rd-about-media { aspect-ratio: 4/3; border-radius: var(--rd-radius-lg); background: linear-gradient(135deg, #1d2128, #0e1014); background-size: cover; background-position: center; display: grid; place-items: center; }
.rd-about-media .ph { width: 90px; height: 90px; color: rgba(255,255,255,.2); }
.rd-checks { list-style: none; padding: 0; margin: 22px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.rd-checks li { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--rd-text); font-size: 15px; }
.rd-checks svg { width: 20px; height: 20px; color: var(--rd-orange); flex: 0 0 20px; }

/* Deals */
.rd-deals { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.rd-deal { position: relative; border-radius: var(--rd-radius-lg); padding: 28px; background: #fff; border: 1px solid var(--rd-line); overflow: hidden; transition: transform .15s, box-shadow .2s; display: block; }
.rd-deal::before { content: ""; position: absolute; top: 0; left: 0; width: 5px; height: 100%; background: var(--rd-orange); }
.rd-deal:hover { transform: translateY(-4px); box-shadow: var(--rd-shadow); }
.rd-deal-badge { display: inline-block; background: var(--rd-orange-soft); color: var(--rd-orange-press); font-weight: 800; font-size: 12px; letter-spacing: .03em; padding: 5px 12px; border-radius: 20px; margin-bottom: 14px; }
.rd-deal h3 { font-size: 1.3rem; }
.rd-deal p { color: var(--rd-text-2); font-size: 14.5px; margin: 0 0 14px; }
.rd-deal-go { font-weight: 800; color: var(--rd-ink); display: inline-flex; align-items: center; gap: 6px; }
.rd-deal-go svg { width: 18px; height: 18px; color: var(--rd-orange); }

/* Contact */
.rd-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.rd-contact-card { display: flex; gap: 14px; align-items: center; padding: 16px; border: 1px solid var(--rd-line); border-radius: var(--rd-radius); margin-bottom: 12px; }
.rd-contact-card .ic { width: 44px; height: 44px; flex: 0 0 44px; border-radius: 10px; background: var(--rd-orange-soft); color: var(--rd-orange); display: grid; place-items: center; }
.rd-contact-card .ic svg { width: 20px; height: 20px; }
.rd-contact-card .k { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--rd-text-3); font-weight: 700; }
.rd-contact-card a, .rd-contact-card span { font-weight: 700; color: var(--rd-text); }
.rd-map { margin-top: 6px; border-radius: var(--rd-radius); overflow: hidden; border: 1px solid var(--rd-line); }
.rd-map iframe { width: 100%; height: 260px; border: 0; display: block; }
.rd-form { background: var(--rd-soft); border-radius: var(--rd-radius-lg); padding: 28px; }
.rd-form h3 { font-size: 1.4rem; margin-bottom: 16px; }
.rd-form input, .rd-form textarea { width: 100%; border: 1px solid var(--rd-line); border-radius: 9px; padding: 13px 14px; font-family: inherit; font-size: 15px; margin-bottom: 12px; background: #fff; outline: none; }
.rd-form input:focus, .rd-form textarea:focus { border-color: var(--rd-orange); box-shadow: 0 0 0 3px rgba(255,95,0,.14); }
.rd-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.rd-form .rd-btn { width: 100%; margin-top: 4px; }
.rd-form-msg { margin-top: 12px; font-size: 14px; font-weight: 600; }
.rd-form-msg.ok { color: var(--rd-go); }
.rd-form-msg.err { color: #dc2626; }
@media (max-width: 860px) { .rd-about, .rd-contact { grid-template-columns: 1fr; } .rd-deals { grid-template-columns: 1fr; } .rd-checks { grid-template-columns: 1fr; } .rd-form-row { grid-template-columns: 1fr; } }

/* ---- Sticky trailing booking bar (front page) ---- */
.rd-stickybar { position: fixed; left: 0; right: 0; top: 0; z-index: 90; background: #fff; border-bottom: 1px solid var(--rd-line); box-shadow: 0 8px 28px rgba(12,13,16,.12); transform: translateY(-110%); transition: transform .3s ease; }
.rd-stickybar-inner { display: flex; align-items: center; gap: 14px; height: 70px; }
.rd-stickybar-brand { display: flex; align-items: center; gap: 9px; font-weight: 900; font-size: 19px; letter-spacing: -.03em; color: var(--rd-ink); white-space: nowrap; }
.rd-stickybar-brand .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--rd-orange); display: inline-block; }
.rd-stickybar.is-visible { transform: translateY(0); }
.rd-stickybar-fields { display: flex; gap: 8px; margin-left: auto; }
.rd-stickybar-fields select, .rd-stickybar-fields input { height: 46px; border: 1px solid var(--rd-line); border-radius: 9px; padding: 0 14px; font-family: inherit; font-size: 14px; font-weight: 600; background: var(--rd-soft); color: var(--rd-text); outline: none; max-width: 200px; }
.rd-stickybar-fields select:focus, .rd-stickybar-fields input:focus { border-color: var(--rd-orange); background: #fff; }
.rd-stickybar .rd-btn { height: 46px; }
@media (max-width: 920px) { .rd-stickybar-fields { display: none; } .rd-stickybar .rd-btn { margin-left: auto; } .rd-stickybar-inner { height: 60px; } }

/* ============================================================
   Announcement bar
   ============================================================ */
.rd-announce { position: relative; z-index: 95; }
.rd-announce.is-sticky { position: sticky; top: 0; }
.rd-announce-inner { display: flex; align-items: center; justify-content: center; gap: 12px; min-height: 44px; padding: 7px 48px; font-size: 13.5px; font-weight: 600; text-align: center; flex-wrap: wrap; }
.rd-announce-ico { width: 17px; height: 17px; flex: 0 0 auto; }
.rd-announce-msg strong { font-weight: 800; }
.rd-announce-cd { background: rgba(255,255,255,.2); border-radius: 6px; padding: 3px 10px; font-variant-numeric: tabular-nums; font-weight: 700; }
.rd-announce-btn { background: #fff; color: var(--rd-ink); border-radius: 6px; padding: 5px 13px; font-size: 12.5px; font-weight: 700; }
.rd-announce-link { text-decoration: underline; font-weight: 700; }
.rd-announce-x { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; padding: 6px; opacity: .85; }
.rd-announce-x:hover { opacity: 1; }
.rd-announce-x svg { width: 16px; height: 16px; }

/* ============================================================
   Footer (AJNA-inspired) — full width
   ============================================================ */
.rd-footer-x { background: var(--rd-ink); color: rgba(255,255,255,.66); }
.rd-pstrip-band { padding: 30px 0 6px; }
.rd-pstrip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.rd-pstrip-tile { aspect-ratio: 1; background: #23262e; background-size: cover; background-position: center; border-radius: 12px; display: grid; place-items: center; color: rgba(255,255,255,.28); }
.rd-pstrip-tile .rd-ico { width: 30px; height: 30px; }
.rd-pstrip-ig { background: var(--rd-orange); border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; color: #fff; text-decoration: none; }
.rd-pstrip-ig svg { width: 24px; height: 24px; }
.rd-pstrip-ig span { font-size: 12px; font-weight: 700; }

.rd-news-band { border-bottom: 1px solid rgba(255,255,255,.1); }
.rd-news { display: flex; align-items: center; gap: 28px; padding: 30px 0; flex-wrap: wrap; }
.rd-news-title { color: #fff; font-weight: 800; font-size: clamp(1.4rem, 2.6vw, 1.85rem); letter-spacing: -.025em; flex: 0 0 auto; font-family: var(--rd-font-head); }
.rd-news-form { display: flex; gap: 10px; flex: 1 1 320px; min-width: 260px; }
.rd-news-form input { flex: 1 1 auto; width: 100%; height: 50px; border-radius: 10px; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); color: #fff; padding: 0 16px; font-family: inherit; font-size: 14.5px; outline: none; }
.rd-news-form input::placeholder { color: rgba(255,255,255,.5); }
.rd-news-form input:focus { border-color: var(--rd-orange); background: rgba(255,255,255,.1); }
.rd-news-form .rd-btn { flex: 0 0 auto; height: 50px; }
.rd-news-msg { width: 100%; padding: 8px 0 0; font-size: 13.5px; font-weight: 600; }
.rd-news-msg.ok { color: #6ee7a8; }
.rd-news-msg.err { color: #fca5a5; }

.rd-footer-brand { text-align: center; padding: 34px 0 30px; }
.rd-footer-brand .rd-logo { color: #fff; justify-content: center; }
.rd-footer-brand img, .rd-footer-brand .custom-logo { max-height: var(--rd-logo-foot-h, 40px); width: auto; margin: 0 auto; filter: brightness(0) invert(1); }
.rd-footer-brand .custom-logo-link { display: inline-flex; justify-content: center; line-height: 0; }
.rd-footer-tag { color: rgba(255,255,255,.6); font-size: 14.5px; margin: 12px 0 16px; }
.rd-footer-phone { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.7); font-weight: 600; margin-bottom: 16px; }
.rd-footer-phone svg { width: 16px; height: 16px; color: var(--rd-orange); }
.rd-footer-phone a { color: inherit; }
.rd-socials { display: flex; gap: 8px; justify-content: center; }
.rd-soc { width: 40px; height: 40px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; }
.rd-soc:hover { background: var(--rd-orange); }
.rd-soc svg { width: 18px; height: 18px; }

.rd-legal-band { border-top: 1px solid rgba(255,255,255,.1); }
.rd-footer-legal { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 0; font-size: 12.5px; color: rgba(255,255,255,.5); flex-wrap: wrap; }
.rd-legal-links { display: flex; gap: 18px; align-items: center; }
.rd-legal-links a:hover { color: var(--rd-orange); }
.rd-powered { color: rgba(255,255,255,.4); }

.rd-stickybar-logo { max-height: 32px; width: auto; display: block; }
.rd-mobile-menu a { display: block; }
@media (max-width: 768px) { .rd-pstrip { grid-template-columns: repeat(3, 1fr); } }

/* Contact page socials (dark icons on light) */
.rd-contact-socials { display: flex; gap: 8px; margin: 4px 0 8px; }
.rd-soc-dark { width: 40px; height: 40px; background: var(--rd-ink); color: #fff; display: grid; place-items: center; border-radius: 0; }
.rd-soc-dark:hover { background: var(--rd-orange); }
.rd-soc-dark svg { width: 18px; height: 18px; }
.rd-prose p { margin: 0 0 1em; color: var(--rd-text-2); }
