:root {
    --brand: #f58220;
    --brand-dark: #d96c12;
    --brand-soft: #fff1e3;
    --ink: #17181c;
    --ink-soft: #2a2d34;
    --muted: #6b7280;
    --line: rgba(23, 24, 28, .08);
    --white: #ffffff;
    --surface: #ffffff;
    --bg: #fffaf4;
    --bg-soft: linear-gradient(180deg, #fff8ef 0%, #fff5eb 100%);
    --shadow-lg: 0 24px 70px rgba(23,24,28,.12);
    --shadow-md: 0 14px 35px rgba(23,24,28,.08);
    --radius-xl: 28px;
    --radius-lg: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: var(--bg);
    overflow-x: hidden;
}
a { text-decoration: none; }
img { max-width: 100%; display: block; }
.site-shell { min-height: 100vh; }
.section-space { padding: 96px 0; }
.bg-soft-gradient { background: var(--bg-soft); }
.bg-white { background: #fffdfb !important; }
.overflow-hidden { overflow: hidden; }

.main-navbar {
    background: rgba(14,15,18,.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,.06);
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
    padding: .7rem 0;
}
.nav-shell { align-items: center; }
.brand-logo-full {
    width: clamp(120px, 16vw, 176px);
    height: auto;
    max-height: 54px;
    object-fit: contain;
}
.navbar .nav-link {
    color: rgba(255,255,255,.84);
    font-weight: 600;
    padding: .8rem 1rem;
    font-size: .96rem;
}
.navbar .nav-link.active,
.navbar .nav-link:hover { color: var(--brand); }
.navbar-toggler { padding: .4rem .6rem; }
.navbar-toggler:focus { box-shadow: none; }

.btn-brand {
    background: linear-gradient(135deg, var(--brand), #ff9f4a);
    border: none;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(245,130,32,.28);
}
.btn-brand:hover { background: linear-gradient(135deg, var(--brand-dark), var(--brand)); color: #fff; }

.hero-section,
.page-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f1114 0%, #181a20 55%, #262b33 100%);
}
.page-banner {
    padding-top: 108px;
}
.page-banner::before,
.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10,11,14,.86) 0%, rgba(10,11,14,.65) 45%, rgba(10,11,14,.50) 100%);
}
.banner-fleet,
.banner-about,
.banner-contact {
    position: relative;
    isolation: isolate;
}
.banner-fleet::after,
.banner-about::after,
.banner-contact::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-position: center;
    background-size: cover;
    opacity: .35;
    transform: scale(1.04);
}
.banner-fleet::after { background-image: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1600&q=80'); }
.banner-about::after { background-image: url('https://images.unsplash.com/photo-1486496572940-2bb2341fdbdf?auto=format&fit=crop&w=1600&q=80'); }
.banner-contact::after { background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1600&q=80'); }
.page-banner > .container,
.hero-content-layer { position: relative; z-index: 2; }

.hero-bg-carousel,
.hero-bg-carousel .carousel-inner,
.hero-bg-carousel .carousel-item,
.hero-slide,
.hero-section,
.hero-content-row {
    min-height: 100svh;
}
.hero-bg-carousel { position: absolute; inset: 0; }
.hero-slide {
    position: relative;
    background-size: cover;
    background-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(245,130,32,.18), transparent 25%),
        linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.18));
}
.hero-content-layer {
    position: relative;
    z-index: 2;
}
.hero-content-row { padding-top: 102px; padding-bottom: 56px; }
.hero-chip {
    display: inline-flex;
    align-items: center;
    padding: .72rem 1.1rem;
    border-radius: 999px;
    background: rgba(245,130,32,.14);
    border: 1px solid rgba(245,130,32,.34);
    color: #ffe2c6;
    font-weight: 700;
}
.hero-section .display-3 {
    font-size: clamp(2.2rem, 5.3vw, 4.5rem);
    line-height: 1.02;
    max-width: 12ch;
}
.hero-section .lead {
    max-width: 56ch;
    font-size: clamp(1rem, 1.5vw, 1.18rem);
}
.hero-stats .stat-card {
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    color: #fff;
    padding: 1rem .8rem;
    min-height: 112px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.hero-stats .stat-card strong { font-size: clamp(1.4rem, 2vw, 1.9rem); }
.hero-stats .stat-card span { color: rgba(255,255,255,.78); font-size: .9rem; }

.glass-card,
.feature-card,
.content-panel,
.info-card,
.booking-engine-card,
.contact-card,
.map-card,
.gallery-card,
.map-preview-card,
.cta-box {
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(255,255,255,.45);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}
.booking-panel {
    padding: 1.65rem;
    backdrop-filter: blur(16px);
    background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.09));
}
.booking-panel .form-control,
.booking-panel .form-select,
.contact-card .form-control,
.contact-card .form-select,
.contact-card textarea {
    border-radius: 16px;
    border: 1px solid rgba(148,163,184,.24);
    min-height: 54px;
    padding: .9rem 1rem;
}
.booking-panel .form-control,
.booking-panel .form-select {
    background: rgba(255,255,255,.95);
}
.booking-panel .form-label { color: #fff3dd; font-weight: 600; }
.booking-notes .mini-note {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .55rem .8rem;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
    color: #fff3dd;
    font-size: .87rem;
}
.booking-notes i { color: #ffbf77; }

.section-head { max-width: 760px; }
.section-label {
    display: inline-block;
    margin-bottom: .7rem;
    font-size: .82rem;
    letter-spacing: .11em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--brand-dark);
}
.section-title {
    font-size: clamp(1.9rem, 3.1vw, 3.1rem);
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--ink);
}
.section-copy,
.feature-card p,
.info-card p,
.content-panel p,
.map-preview-card p { color: var(--muted); font-size: 1.02rem; }

.feature-card,
.content-panel,
.info-card,
.map-preview-card,
.contact-card,
.map-card,
.booking-engine-card { padding: 1.7rem; }
.feature-card h3,
.info-card h3 { font-size: 1.2rem; font-weight: 800; margin: 1rem 0 .6rem; }
.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(135deg, var(--brand), #ffb06e);
    color: #fff;
    font-size: 1.35rem;
    box-shadow: 0 14px 28px rgba(245,130,32,.24);
}
.check-list { display: grid; gap: .95rem; }
.check-list div {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    color: var(--ink-soft);
    font-weight: 600;
}
.check-list i { color: var(--brand); margin-top: .1rem; }

.gallery-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 1rem;
}
.gallery-card { overflow: hidden; padding: 0; min-height: 220px; }
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.gallery-card:hover img { transform: scale(1.04); }
.gallery-tall,
.full-height-card { min-height: 100%; }
.gallery-tall { grid-row: span 2; min-height: 470px; }
.full-height-card { min-height: 460px; }

.testimonial-marquee {
    overflow: hidden;
    position: relative;
}
.testimonial-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: feedback-scroll 52s linear infinite;
}
.testimonial-marquee:hover .testimonial-track { animation-play-state: paused; }
.testimonial-card {
    width: 320px;
    min-width: 320px;
    height: 244px;
    padding: 1.35rem;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonial-card p { color: #535862; line-height: 1.7; margin: 0; }
.testimonial-meta strong { display: block; font-weight: 800; }
.testimonial-meta span { color: var(--muted); font-size: .92rem; }
.stars { color: #ffb020; }
@keyframes feedback-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.location-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
}
.location-pills span {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: .72rem 1rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}
.mini-map-frame,
.contact-map-frame {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    background: #fff;
    border: 1px solid var(--line);
}
.mini-map-frame iframe,
.contact-map-frame iframe {
    display: block;
    width: 100%;
    border: 0;
}
.mini-map-frame iframe { min-height: 380px; }
.contact-map-frame iframe { min-height: 360px; }

.booking-engine-card { padding: 1.2rem; }
.booking-engine-head { padding: .65rem .65rem 0; }
.rentsyst-frame-wrap {
    position: relative;
    width: 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.rentsyst-frame {
    width: 100%;
    min-height: 960px;
    border: 0;
    display: block;
    background: #fff;
}
.rentsyst-placeholder {
    border-radius: 24px;
    padding: 2rem;
    background: linear-gradient(180deg, #fff8ef, #fff2e2);
    border: 1px dashed rgba(245,130,32,.4);
}
.placeholder-badge {
    display: inline-block;
    padding: .5rem .8rem;
    border-radius: 999px;
    background: rgba(245,130,32,.12);
    color: var(--brand-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}
.code-box {
    background: #17181c;
    color: #f8fafc;
    padding: 1rem;
    border-radius: 16px;
    overflow-x: auto;
}
.code-box pre { margin: 0; white-space: pre-wrap; font-size: .95rem; }

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}
.contact-item i {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--brand-soft);
    color: var(--brand-dark);
    font-size: 1.1rem;
}
.contact-item small { display: block; color: var(--muted); margin-bottom: .2rem; }
.contact-item a,
.contact-item span { color: var(--ink); font-weight: 600; }
.form-label-dark { color: var(--ink); font-weight: 700; }
.recaptcha-disclaimer { font-size: .84rem; color: var(--muted); }
.bot-trap { position: absolute; left: -9999px; }
.h1-size { font-size: clamp(1.8rem, 2.8vw, 2.7rem); }

.cta-box {
    padding: 2rem;
    background: linear-gradient(135deg, #121418 0%, #1d232b 100%);
    color: #fff;
    border: 0;
}
.cta-box h2 { font-size: clamp(1.8rem, 2.7vw, 2.7rem); font-weight: 800; }

.site-footer {
    padding: 0 0 28px;
    background: transparent;
}
.footer-panel {
    background: linear-gradient(135deg, #121418, #1f242b);
    color: rgba(255,255,255,.88);
    padding: 2.2rem;
    box-shadow: var(--shadow-lg);
}
.footer-logo {
    width: clamp(120px, 14vw, 180px);
    max-height: 54px;
    object-fit: contain;
}
.footer-panel h6 { color: #fff; font-weight: 800; margin-bottom: 1rem; }
.footer-copy,
.footer-links span,
.footer-links a { color: rgba(255,255,255,.72); }
.footer-links li + li { margin-top: .65rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.58);
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #25D366;
    color: #fff;
    font-size: 1.65rem;
    box-shadow: 0 16px 36px rgba(37,211,102,.32);
    z-index: 1040;
}
.floating-whatsapp:hover { color: #fff; transform: translateY(-2px); }

@media (max-width: 1199.98px) {
    .hero-section .display-3 { max-width: 14ch; }
}

@media (max-width: 991.98px) {
    .section-space { padding: 78px 0; }
    .hero-bg-carousel,
    .hero-bg-carousel .carousel-inner,
    .hero-bg-carousel .carousel-item,
    .hero-slide,
    .hero-section,
    .hero-content-row { min-height: auto; }
    .hero-content-row { padding-top: 112px; padding-bottom: 44px; }
    .booking-panel { margin-top: .4rem; }
    .navbar-collapse {
        background: rgba(18,20,24,.98);
        border-radius: 18px;
        padding: 1rem;
        margin-top: .8rem;
        border: 1px solid rgba(255,255,255,.08);
    }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-tall { grid-row: auto; min-height: 240px; }
}

@media (max-width: 767.98px) {
    .brand-logo-full { width: 132px; max-height: 44px; }
    .section-space { padding: 66px 0; }
    .hero-section .display-3 { max-width: none; font-size: clamp(2rem, 9vw, 3rem); }
    .hero-stats .stat-card { min-height: 102px; padding: .9rem .55rem; }
    .hero-stats .stat-card span { font-size: .82rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-card,
    .gallery-tall,
    .full-height-card { min-height: 230px; }
    .testimonial-card { width: 280px; min-width: 280px; height: 254px; }
    .rentsyst-frame { min-height: 760px; }
    .mini-map-frame iframe { min-height: 300px; }
    .contact-map-frame iframe { min-height: 320px; }
    .footer-panel { padding: 1.5rem; border-radius: 24px; }
}

@media (max-width: 575.98px) {
    .main-navbar { padding: .55rem 0; }
    .page-banner { padding-top: 96px; }
    .hero-chip { font-size: .82rem; }
    .booking-panel,
    .feature-card,
    .content-panel,
    .info-card,
    .map-preview-card,
    .contact-card,
    .map-card,
    .booking-engine-card,
    .cta-box { padding: 1.25rem; border-radius: 22px; }
    .rentsyst-placeholder { padding: 1.25rem; }
    .rentsyst-frame { min-height: 680px; }
    .floating-whatsapp { width: 54px; height: 54px; right: 14px; bottom: 14px; }
}