/* PirCar — Ultra-Premium Luxury Corporate Styles */

:root {
    --black: #000000;
    --anthracite: #000000;
    --anthracite-light: #1e1e1e;
    --anthracite-mid: #2a2a2a;
    --gold: #c9a962;
    --gold-light: #d4af37;
    --gold-dark: #a68b4b;
    --gold-muted: rgba(201, 169, 98, 0.15);
    --white: #ffffff;
    --cream: #f5f0e8;
    --gray: #8a8a8a;
    --gray-light: #b0b0b0;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-gold: 0 4px 30px rgba(201, 169, 98, 0.15);
    --shadow-deep: 0 25px 50px rgba(0, 0, 0, 0.5);
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background: #000000;
}

body {
    font-family: var(--font-body);
    background: #000000;
    color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--gold);
    color: var(--black);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 300;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.display-1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    letter-spacing: 0.08em;
}

.display-2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
}

.gold-text { color: var(--gold-light); }
.gold-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1.5rem auto;
}

.section-label {
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
}

/* Preloader */
#preloader {
    position: fixed;
    inset: 0;
    background: #000000;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--transition), visibility 0.8s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Fallback if external JS fails to load */
@keyframes preloader-auto-hide {
    0%, 70% { opacity: 1; visibility: visible; }
    100% { opacity: 0; visibility: hidden; pointer-events: none; }
}

#preloader:not(.hidden) {
    animation: preloader-auto-hide 3s ease forwards;
}

.preloader-logo {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--gold);
    letter-spacing: 0.5em;
    animation: pulse-gold 2s ease-in-out infinite;
}

@keyframes pulse-gold {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Navigation */
.navbar-pircar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.5s var(--transition);
    background: transparent;
}

.navbar-pircar.scrolled {
    background: rgba(0, 0, 0, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.navbar-brand-pircar {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--gold-light) !important;
    letter-spacing: 0.3em;
    text-decoration: none;
}

.navbar-brand-pircar span {
    font-weight: 300;
    color: var(--cream);
}

.navbar-brand-pircar.has-logo {
    letter-spacing: 0;
    line-height: 0;
    display: flex;
    align-items: center;
}

.navbar-pircar.has-site-logo {
    padding: 1.1rem 0;
    background: #000000;
}

.navbar-pircar.has-site-logo.scrolled {
    padding: 0.85rem 0;
    background: #000000;
}

.navbar-brand-pircar.has-logo .site-logo-wrap {
    display: inline-flex;
    align-items: center;
    background: #000000;
    line-height: 0;
}

.site-logo-img {
    display: block;
    height: 58px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    object-position: left center;
    background: #000000;
}

.navbar-pircar.has-site-logo.scrolled .site-logo-img {
    height: 50px;
    max-width: 220px;
}

.preloader-logo-img {
    display: block;
    max-width: min(320px, 80vw);
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    animation: pulse-gold 2s ease-in-out infinite;
}

.nav-link-pircar {
    color: var(--cream) !important;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color 0.3s;
}

.nav-link-pircar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: all 0.3s var(--transition);
    transform: translateX(-50%);
}

.nav-link-pircar:hover,
.nav-link-pircar.active {
    color: var(--gold-light) !important;
}

.nav-link-pircar:hover::after,
.nav-link-pircar.active::after {
    width: 60%;
}

.lang-switcher a {
    color: var(--gray);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    transition: color 0.3s;
}

.lang-switcher a.active,
.lang-switcher a:hover {
    color: var(--gold);
}

/* Desktop navigation — executive luxury bar */
@media (min-width: 992px) {
    .navbar-pircar .desktop-header-inner {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) max-content;
        align-items: center;
        column-gap: 1.75rem;
        width: 100%;
        max-width: 100%;
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }

    .navbar-brand-pircar {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
        flex-shrink: 0;
    }

    #navbarNav {
        position: static;
        display: flex !important;
        flex-basis: auto;
        height: auto;
        grid-column: 2;
        grid-row: 1;
        justify-self: center;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        background: transparent;
        overflow: hidden;
    }

    .desktop-nav-extras {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
        align-items: center;
        gap: 1.25rem;
        flex-shrink: 0;
        position: relative;
        z-index: 2;
        white-space: nowrap;
        padding-left: 0.5rem;
    }

    .navbar-pircar {
        padding: 1.5rem 0;
        background: #000000;
        border-bottom: 1px solid rgba(201, 169, 98, 0.12);
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.02);
    }

    .navbar-pircar.has-site-logo {
        padding: 1.25rem 0;
        background: #000000;
    }

    .navbar-pircar.scrolled,
    .navbar-pircar.has-site-logo.scrolled {
        padding: 0.9rem 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-bottom-color: rgba(201, 169, 98, 0.14);
    }

    .mobile-nav-panel {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex: 0 1 auto;
        min-height: 0;
        width: 100%;
        padding: 0;
        overflow: visible;
    }

    .mobile-nav-panel::before {
        display: none;
    }

    .mobile-nav-list {
        position: relative;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: 0;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0.7rem 0;
        text-align: center;
    }

    .mobile-nav-list::before,
    .mobile-nav-list::after {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: min(100%, 720px);
        height: 1px;
        pointer-events: none;
    }

    .mobile-nav-list::before {
        top: 0;
        background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.2), transparent);
    }

    .mobile-nav-list::after {
        bottom: 0;
        background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.12), transparent);
    }

    .mobile-nav-list .nav-item {
        display: flex;
        align-items: center;
        border: none;
    }

    .mobile-nav-list .nav-item:not(:last-child)::after {
        content: '';
        width: 1px;
        height: 12px;
        margin: 0 0.15rem;
        background: rgba(201, 169, 98, 0.22);
        flex-shrink: 0;
    }

    .mobile-nav-list .nav-link-pircar {
        display: inline-block;
        padding: 0.65rem 0.6rem !important;
        font-family: var(--font-body);
        font-size: 0.7rem;
        font-weight: 500;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: rgba(245, 240, 232, 0.72) !important;
        white-space: nowrap;
        transition: color 0.55s var(--transition);
    }

    .mobile-nav-list .nav-link-pircar::after {
        display: block;
        bottom: 0.35rem;
        height: 2px;
        background: var(--gold);
        opacity: 0;
        transition: width 0.55s var(--transition), opacity 0.55s var(--transition);
    }

    .mobile-nav-list .nav-link-pircar:hover {
        color: rgba(245, 240, 232, 0.95) !important;
        background: transparent;
    }

    .mobile-nav-list .nav-link-pircar.active {
        color: var(--gold-light) !important;
        background: transparent;
    }

    .mobile-nav-list .nav-link-pircar:hover::after {
        width: 45%;
        opacity: 0.55;
    }

    .mobile-nav-list .nav-link-pircar.active::after {
        width: 60%;
        opacity: 1;
    }

    .lang-switcher-desktop {
        display: inline-flex;
        align-items: center;
        flex-shrink: 0;
        gap: 0.5rem;
        padding: 0.45rem 0.7rem;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(201, 169, 98, 0.16);
    }

    .lang-switcher-desktop a {
        font-size: 0.65rem;
        font-weight: 500;
        letter-spacing: 0.12em;
        padding: 0.15rem 0.3rem;
        color: rgba(176, 176, 176, 0.95);
        transition: color 0.45s ease;
    }

    .lang-switcher-desktop a.active {
        color: rgba(212, 175, 55, 0.9);
    }

    .lang-switcher-desktop a:hover {
        color: rgba(245, 240, 232, 0.85);
    }

    .lang-switcher-desktop .lang-sep {
        display: block;
        width: 1px;
        height: 12px;
        background: rgba(201, 169, 98, 0.22);
        flex-shrink: 0;
    }

    .btn-nav-portal {
        flex-shrink: 0;
        padding: 0.55rem 0.15rem 0.65rem;
        font-size: 0.65rem;
        font-weight: 500;
        letter-spacing: 0.14em;
        white-space: nowrap;
        color: var(--gold-light);
        background: transparent;
        border: none;
        border-bottom: 2px solid rgba(201, 169, 98, 0.5);
        border-radius: 0;
        transition: color 0.5s var(--transition), border-color 0.5s var(--transition);
    }

    .btn-nav-portal:hover {
        color: var(--cream);
        border-bottom-color: rgba(201, 169, 98, 0.75);
        background: transparent;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar-pircar .desktop-header-inner {
        column-gap: 1rem;
    }

    .mobile-nav-list .nav-link-pircar {
        padding: 0.6rem 0.4rem !important;
        font-size: 0.62rem;
        font-weight: 500;
        letter-spacing: 0.11em;
    }

    .mobile-nav-list .nav-item:not(:last-child)::after {
        margin: 0 0.08rem;
        height: 10px;
    }

    .lang-switcher-desktop {
        padding: 0.35rem 0.55rem;
        gap: 0.35rem;
    }

    .lang-switcher-desktop a {
        font-size: 0.6rem;
    }

    .btn-nav-portal {
        font-size: 0.6rem;
        letter-spacing: 0.11em;
    }

    .site-logo-img {
        height: 48px;
        max-width: 200px;
    }
}

@media (min-width: 1200px) {
    .mobile-nav-list .nav-link-pircar {
        padding: 0.65rem 0.7rem !important;
        font-size: 0.72rem;
        letter-spacing: 0.15em;
    }

    .btn-nav-portal {
        font-size: 0.68rem;
        letter-spacing: 0.15em;
    }
}

@media (min-width: 1400px) {
    .navbar-pircar .desktop-header-inner {
        column-gap: 2.25rem;
    }

    .mobile-nav-list::before,
    .mobile-nav-list::after {
        width: min(100%, 780px);
    }

    .mobile-nav-list .nav-link-pircar {
        padding: 0.7rem 0.8rem !important;
        font-size: 0.75rem;
        letter-spacing: 0.16em;
    }

    .mobile-nav-list .nav-item:not(:last-child)::after {
        margin: 0 0.2rem;
        height: 13px;
    }

    .btn-nav-portal {
        font-size: 0.7rem;
        letter-spacing: 0.16em;
    }
}

/* Mobile navigation */
.navbar-toggler-pircar {
    color: var(--gold-light);
    padding: 0.25rem 0.5rem;
    z-index: 1002;
}

.navbar-toggler-pircar:focus {
    box-shadow: 0 0 0 2px rgba(201, 169, 98, 0.35);
    outline: none;
}

.navbar-toggler-pircar .icon-close {
    display: none;
}

.navbar-toggler-pircar[aria-expanded="true"] .icon-menu {
    display: none;
}

.navbar-toggler-pircar[aria-expanded="true"] .icon-close {
    display: inline-block;
}

body.mobile-nav-open {
    overflow: hidden;
}

body.mobile-nav-open .navbar-pircar {
    background: #000000;
}

@keyframes mobileNavItemIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mobileNavFooterIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn-pircar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    color: var(--black);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--black);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold-light);
    border: 1px solid var(--gold);
}

.btn-outline-gold:hover {
    background: var(--gold-muted);
    color: var(--gold-light);
    border-color: var(--gold-light);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    color: var(--cream);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

/* Hero */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: var(--hero-bg-image, url('/uploads/hero-background.jpg'));
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, var(--hero-overlay-opacity, 0.70));
    backdrop-filter: blur(var(--hero-blur, 1px));
    -webkit-backdrop-filter: blur(var(--hero-blur, 1px));
    z-index: 1;
    pointer-events: none;
}

.hero-bg {
    display: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-image:
        radial-gradient(1px 1px at 20% 30%, rgba(201, 169, 98, 0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 80% 70%, rgba(201, 169, 98, 0.2) 0%, transparent 100%),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    animation: float-particles 20s ease-in-out infinite;
}

@keyframes float-particles {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 8rem 1.5rem 4rem;
    max-width: 900px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray-light);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin: 1.5rem 0 2.5rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Trust Bar — executive strip */
.trust-bar {
    position: relative;
    background: linear-gradient(180deg, #060606 0%, #000000 45%, #060606 100%);
    border-top: 1px solid rgba(201, 169, 98, 0.14);
    border-bottom: 1px solid rgba(201, 169, 98, 0.14);
    padding: 2.75rem 0;
    overflow: hidden;
}

.trust-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 120% at 50% 0%, rgba(201, 169, 98, 0.07) 0%, transparent 65%),
        radial-gradient(ellipse 50% 80% at 50% 100%, rgba(201, 169, 98, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.trust-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(92%, 960px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.32), transparent);
    pointer-events: none;
}

.trust-bar-row {
    position: relative;
    z-index: 1;
}

.trust-item {
    text-align: center;
    padding: 1.35rem 1rem;
    position: relative;
}

@media (min-width: 992px) {
    .trust-item:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        width: 1px;
        height: 56px;
        background: linear-gradient(180deg, transparent, rgba(201, 169, 98, 0.22), transparent);
    }
}

.trust-item i {
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold-light);
    border: 1px solid rgba(201, 169, 98, 0.3);
    border-radius: 50%;
    background: rgba(201, 169, 98, 0.05);
    box-shadow: 0 0 24px rgba(201, 169, 98, 0.06);
    transition: color 0.45s var(--transition), border-color 0.45s var(--transition), background 0.45s var(--transition), box-shadow 0.45s var(--transition);
}

.trust-item:hover i {
    color: var(--cream);
    border-color: rgba(201, 169, 98, 0.5);
    background: rgba(201, 169, 98, 0.1);
    box-shadow: 0 0 28px rgba(201, 169, 98, 0.12);
}

.trust-item span {
    display: block;
    max-width: 11.5rem;
    margin: 0 auto;
    font-size: 0.64rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    line-height: 1.55;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.78);
    transition: color 0.45s var(--transition);
}

.trust-item:hover span {
    color: rgba(245, 240, 232, 0.95);
}

@media (max-width: 991.98px) {
    .trust-bar {
        padding: 2rem 0 2.25rem;
    }

    .trust-item {
        padding: 1.25rem 0.75rem;
    }

    .trust-item i {
        width: 46px;
        height: 46px;
        font-size: 1.05rem;
        margin-bottom: 0.85rem;
    }

    .trust-item span {
        font-size: 0.58rem;
        letter-spacing: 0.12em;
        max-width: 10rem;
    }
}

@media (max-width: 575.98px) {
    .trust-item span {
        font-size: 0.54rem;
        letter-spacing: 0.1em;
    }
}

/* Sections */
.section-pircar {
    padding: 6rem 0;
    position: relative;
    background: #000000;
}

.section-pircar.dark,
.section-pircar.darker {
    background: #000000;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    background: var(--anthracite-light);
    border: 1px solid rgba(201, 169, 98, 0.1);
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.5s var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.5s var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 98, 0.3);
    box-shadow: var(--shadow-deep);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 169, 98, 0.3);
    margin-bottom: 1.5rem;
    color: var(--gold);
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--cream);
}

.service-card p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    font-size: 0.8rem;
    color: var(--gray-light);
    padding: 0.35rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.service-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* Services — executive luxury section */
.services-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #000000 0%, #050505 48%, #000000 100%);
    padding: 6rem 0 1.75rem;
    border-top: 1px solid rgba(201, 169, 98, 0.1);
    border-bottom: 1px solid rgba(201, 169, 98, 0.08);
}

.services-section-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, 1100px);
    height: 420px;
    background: radial-gradient(ellipse 80% 70% at 50% 0%, rgba(201, 169, 98, 0.07) 0%, transparent 72%);
    pointer-events: none;
}

.services-section .services-header {
    margin-bottom: 4.5rem;
}

.services-section .services-subtitle {
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.85;
    letter-spacing: 0.02em;
    color: rgba(176, 176, 176, 0.92);
}

.services-section .services-grid {
    counter-reset: service-card;
}

.services-section .service-card {
    background: linear-gradient(160deg, rgba(22, 22, 22, 0.98) 0%, rgba(8, 8, 8, 0.99) 100%);
    border: 1px solid rgba(201, 169, 98, 0.11);
    padding: 2.35rem 2rem 2.1rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.services-section .service-card::before {
    height: 1px;
    transform: scaleX(1);
    opacity: 0.4;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.55), transparent);
}

.services-section .service-card::after {
    content: counter(service-card, decimal-leading-zero);
    counter-increment: service-card;
    position: absolute;
    top: 1.35rem;
    right: 1.35rem;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    color: rgba(201, 169, 98, 0.18);
    pointer-events: none;
}

.services-section .service-card:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 169, 98, 0.26);
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.services-section .service-card:hover::before {
    opacity: 0.85;
}

.services-section .service-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    margin-bottom: 1.65rem;
    font-size: 1.15rem;
    color: var(--gold-light);
    background: rgba(201, 169, 98, 0.05);
    border-color: rgba(201, 169, 98, 0.28);
    box-shadow: 0 0 28px rgba(201, 169, 98, 0.06);
    transition: color 0.45s var(--transition), border-color 0.45s var(--transition), background 0.45s var(--transition), box-shadow 0.45s var(--transition);
}

.services-section .service-card:hover .service-icon {
    color: var(--cream);
    border-color: rgba(201, 169, 98, 0.45);
    background: rgba(201, 169, 98, 0.09);
    box-shadow: 0 0 32px rgba(201, 169, 98, 0.12);
}

.services-section .service-card h3 {
    font-family: var(--font-display);
    font-size: 1.38rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--gold-light);
    margin-bottom: 0.9rem;
    padding-right: 2rem;
}

.services-section .service-card p {
    font-size: 0.86rem;
    line-height: 1.7;
    color: rgba(176, 176, 176, 0.95);
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(201, 169, 98, 0.09);
}

.services-section .service-list li {
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    color: rgba(245, 240, 232, 0.72);
    padding: 0.4rem 0 0.4rem 1.1rem;
}

.services-section .service-list li::before {
    content: '';
    top: 0.72rem;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(201, 169, 98, 0.75);
}

@media (max-width: 991.98px) {
    .services-section {
        padding: 5rem 0 1.5rem;
    }

    .services-section + .fleet-showcase {
        padding-top: 1rem;
    }

    .services-section .services-header {
        margin-bottom: 3.5rem;
    }

    .services-section .services-subtitle {
        font-size: 0.9rem;
        line-height: 1.75;
        padding: 0 0.5rem;
    }

    .services-section .service-card {
        padding: 2rem 1.65rem 1.85rem;
    }

    .services-section .service-card h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .services-section .service-card::after {
        top: 1.1rem;
        right: 1.1rem;
        font-size: 0.75rem;
    }
}

/* Fleet — executive showcase */
.fleet-showcase {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #000000 0%, #040404 50%, #000000 100%);
    padding: 1.75rem 0 6rem;
    border-top: 1px solid rgba(201, 169, 98, 0.1);
    border-bottom: 1px solid rgba(201, 169, 98, 0.08);
}

.services-section + .fleet-showcase {
    border-top: none;
    padding-top: 1.25rem;
}

.fleet-showcase-glow {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(100%, 1000px);
    height: 480px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse 85% 75% at 50% 0%, rgba(201, 169, 98, 0.08) 0%, transparent 72%);
    pointer-events: none;
}

.fleet-showcase-header {
    margin-bottom: 2.75rem;
}

.fleet-showcase-lead {
    max-width: 42rem;
    margin: 1.35rem auto 0;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.75;
    letter-spacing: 0.02em;
    color: rgba(176, 176, 176, 0.92);
}

.fleet-showcase-card {
    position: relative;
    border: 1px solid rgba(201, 169, 98, 0.14);
    border-radius: 0;
    background: linear-gradient(155deg, rgba(18, 18, 18, 0.99) 0%, rgba(6, 6, 6, 0.99) 100%);
    box-shadow:
        0 28px 56px rgba(0, 0, 0, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.fleet-card-topline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.5), transparent);
    z-index: 2;
    pointer-events: none;
}

.fleet-showcase-visual {
    background: #080808;
    border-right: 1px solid rgba(201, 169, 98, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem;
}

.fleet-stage {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 480px;
}

.fleet-stage-frame {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem;
}

.fleet-stage-corner {
    position: absolute;
    width: 28px;
    height: 28px;
    border-color: rgba(201, 169, 98, 0.55);
    border-style: solid;
    pointer-events: none;
    z-index: 2;
}

.fleet-stage-corner--tl { top: 1rem; left: 1rem; border-width: 1px 0 0 1px; }
.fleet-stage-corner--tr { top: 1rem; right: 1rem; border-width: 1px 1px 0 0; }
.fleet-stage-corner--bl { bottom: 1rem; left: 1rem; border-width: 0 0 1px 1px; }
.fleet-stage-corner--br { bottom: 1rem; right: 1rem; border-width: 0 1px 1px 0; }

.fleet-image-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 100%;
    height: 260px;
    min-height: 260px;
    max-height: 260px;
    box-sizing: border-box;
    background: #0a0a0a;
    border-radius: 0;
    overflow: hidden;
}

.fleet-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
}

.fleet-gallery-strip {
    display: flex;
    gap: 0.5rem;
    padding: 0.85rem 0.25rem 0;
    background: transparent;
    border-top: 1px solid rgba(201, 169, 98, 0.1);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.fleet-gallery-thumb {
    flex: 0 0 auto;
    width: 76px;
    height: 50px;
    padding: 0;
    border: 1px solid rgba(201, 169, 98, 0.15);
    border-radius: 0;
    overflow: hidden;
    background: #0a0a0a;
    cursor: pointer;
    opacity: 0.65;
    transition: opacity 0.35s ease, border-color 0.35s ease;
}

.fleet-gallery-thumb-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    background: #0b0b0b;
}

.fleet-gallery-thumb:hover,
.fleet-gallery-thumb.active {
    opacity: 1;
    border-color: rgba(201, 169, 98, 0.55);
}

.fleet-image-placeholder {
    background: radial-gradient(ellipse at center, var(--anthracite-light) 0%, #0b0b0b 70%);
}

.fleet-car-svg {
    width: 85%;
    max-width: 420px;
    opacity: 0.92;
}

.fleet-showcase-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 2.5rem 2.25rem;
}

.fleet-panel-eyebrow {
    margin: 0 0 1.25rem;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(201, 169, 98, 0.65);
}

.fleet-panel-title-row {
    margin-bottom: 0.85rem;
    padding-bottom: 1.35rem;
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.fleet-showcase-badge {
    display: inline-block;
    padding: 0.3rem 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
    border: 1px solid rgba(201, 169, 98, 0.32);
    border-radius: 0;
    background: rgba(201, 169, 98, 0.06);
}

.fleet-showcase-vehicle {
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.5vw, 1.9rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--gold-light);
    margin-bottom: 0;
    line-height: 1.25;
}

.fleet-showcase-desc {
    color: rgba(176, 176, 176, 0.95);
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 1.65rem;
    line-height: 1.7;
}

.fleet-showcase-stats {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.fleet-showcase-stats li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem 0.9rem;
    background: linear-gradient(90deg, rgba(201, 169, 98, 0.05) 0%, rgba(201, 169, 98, 0.01) 100%);
    border: 1px solid rgba(201, 169, 98, 0.1);
    border-left: 2px solid rgba(201, 169, 98, 0.35);
    border-radius: 0;
    transition: border-color 0.4s var(--transition), background 0.4s var(--transition);
}

.fleet-showcase-stats li:hover {
    border-color: rgba(201, 169, 98, 0.22);
    border-left-color: rgba(201, 169, 98, 0.55);
    background: linear-gradient(90deg, rgba(201, 169, 98, 0.08) 0%, rgba(201, 169, 98, 0.02) 100%);
}

.fleet-showcase-stats li:nth-child(3) {
    grid-column: 1 / -1;
}

.fleet-stat-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 1rem;
    background: rgba(201, 169, 98, 0.06);
    border: 1px solid rgba(201, 169, 98, 0.22);
    border-radius: 50%;
}

.fleet-stat-body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.fleet-stat-body strong {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.9);
    font-weight: 500;
}

.fleet-stat-body > span {
    font-size: 0.84rem;
    font-weight: 300;
    color: rgba(245, 240, 232, 0.88);
    line-height: 1.45;
}

.fleet-panel-footer {
    padding-top: 0.25rem;
    border-top: 1px solid rgba(201, 169, 98, 0.08);
}

.fleet-showcase-cta {
    align-self: flex-start;
    min-width: 220px;
    text-align: center;
    margin-top: 1.5rem;
    letter-spacing: 0.18em;
}

.fleet-panel-trust {
    margin: 1rem 0 0;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(138, 138, 138, 0.95);
}

@media (min-width: 1200px) {
    .fleet-image-wrapper {
        height: 280px;
        min-height: 280px;
        max-height: 280px;
    }

    .fleet-showcase-panel {
        padding: 2.75rem 2.5rem;
    }
}

/* Booking Form */
.booking-section {
    background: #000000;
    position: relative;
}

.booking-page {
    padding-top: 8rem;
    padding-bottom: 5rem;
    min-height: calc(100vh - 4rem);
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.booking-form {
    background: var(--anthracite-light);
    border: 1px solid rgba(201, 169, 98, 0.15);
    padding: 3rem;
}

.portal-access-box {
    padding: 1.5rem 1.35rem;
    border: 1px solid rgba(201, 169, 98, 0.28);
    background: linear-gradient(160deg, rgba(18, 18, 18, 0.98) 0%, rgba(8, 8, 8, 0.99) 100%);
}

.portal-credential {
    display: inline-block;
    margin-top: 0.35rem;
    padding: 0.45rem 0.65rem;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    color: var(--cream);
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(201, 169, 98, 0.2);
}

.form-label-pircar {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control-pircar,
.form-select-pircar {
    background: var(--anthracite);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--cream);
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
    border-radius: 0;
    transition: border-color 0.3s;
}

.form-control-pircar:focus,
.form-select-pircar:focus {
    background: var(--anthracite);
    border-color: var(--gold);
    color: var(--cream);
    box-shadow: 0 0 0 0.15rem rgba(201, 169, 98, 0.15);
    outline: none;
}

.form-control-pircar::placeholder {
    color: var(--gray);
}

.form-select-pircar option {
    background: var(--anthracite);
    color: var(--cream);
}

.price-estimate {
    background: var(--gold-muted);
    border: 1px solid rgba(201, 169, 98, 0.3);
    padding: 1.5rem;
    text-align: center;
    margin-top: 1.5rem;
}

.price-estimate .amount {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gold-light);
}

.form-check-pircar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-check-pircar input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
}

/* Testimonials */
.testimonial-card {
    background: var(--anthracite-light);
    border: 1px solid rgba(201, 169, 98, 0.1);
    padding: 2.5rem;
    height: 100%;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.2;
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--anthracite-mid);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.25rem;
}

.testimonial-name {
    font-size: 0.85rem;
    color: var(--cream);
    font-weight: 500;
}

.testimonial-role {
    font-size: 0.75rem;
    color: var(--gray);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

/* FAQ — executive accordion */
.faq-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #000000 0%, #030303 48%, #000000 100%);
    padding: 5.5rem 0 6.5rem;
    border-top: 1px solid rgba(201, 169, 98, 0.1);
    border-bottom: 1px solid rgba(201, 169, 98, 0.08);
}

.faq-section-glow {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(100%, 920px);
    height: 420px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse 80% 70% at 50% 0%, rgba(201, 169, 98, 0.07) 0%, transparent 72%);
    pointer-events: none;
}

.faq-header {
    margin-bottom: 3rem;
}

.faq-subtitle {
    max-width: 38rem;
    margin: 1.25rem auto 0;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.75;
    letter-spacing: 0.02em;
    color: rgba(176, 176, 176, 0.92);
}

.faq-intro-panel {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2.25rem 2rem;
    border: 1px solid rgba(201, 169, 98, 0.14);
    background: linear-gradient(160deg, rgba(16, 16, 16, 0.98) 0%, rgba(5, 5, 5, 0.98) 100%);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.faq-intro-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.35rem;
    font-weight: 500;
}

.faq-intro-lead {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.2vw, 1.65rem);
    font-weight: 300;
    line-height: 1.45;
    letter-spacing: 0.03em;
    color: var(--cream);
    margin-bottom: 2rem;
}

.faq-intro-points {
    list-style: none;
    padding: 0;
    margin: 0 0 2.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-intro-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: rgba(176, 176, 176, 0.95);
    line-height: 1.55;
}

.faq-intro-points i {
    flex-shrink: 0;
    margin-top: 0.15rem;
    font-size: 0.95rem;
    color: var(--gold);
}

.faq-intro-cta {
    margin-top: auto;
    align-self: flex-start;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    padding: 0.95rem 1.75rem;
}

.faq-panel {
    position: relative;
    border: 1px solid rgba(201, 169, 98, 0.14);
    background: linear-gradient(155deg, rgba(14, 14, 14, 0.99) 0%, rgba(4, 4, 4, 0.99) 100%);
    box-shadow:
        0 28px 56px rgba(0, 0, 0, 0.48),
        inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.faq-panel-topline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.5), transparent);
    pointer-events: none;
}

.faq-item {
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
    transition: background 0.35s var(--transition);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item.is-open {
    background: linear-gradient(90deg, rgba(201, 169, 98, 0.06) 0%, transparent 55%);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--cream);
    padding: 1.35rem 1.5rem 1.35rem 1.25rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1.15rem;
    transition: color 0.3s var(--transition);
}

.faq-question:hover {
    color: var(--gold-light);
}

.faq-question:hover .faq-num {
    color: var(--gold-light);
    border-color: rgba(201, 169, 98, 0.45);
}

.faq-num {
    flex-shrink: 0;
    width: 2.35rem;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: rgba(201, 169, 98, 0.75);
    text-align: center;
    padding-bottom: 0.15rem;
    border-bottom: 1px solid rgba(201, 169, 98, 0.22);
    transition: color 0.3s, border-color 0.3s;
}

.faq-q-text {
    flex: 1;
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 1.6vw, 1.22rem);
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.4;
}

.faq-toggle {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(201, 169, 98, 0.28);
    color: var(--gold);
    transition: transform 0.35s var(--transition), border-color 0.3s, background 0.3s;
}

.faq-toggle i {
    font-size: 0.85rem;
    line-height: 1;
    transition: transform 0.35s var(--transition);
}

.faq-question.active .faq-toggle {
    background: rgba(201, 169, 98, 0.12);
    border-color: rgba(201, 169, 98, 0.5);
}

.faq-question.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--transition);
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem 4.75rem;
    color: rgba(176, 176, 176, 0.95);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.02em;
    border-left: 1px solid rgba(201, 169, 98, 0.18);
    margin: 0 1.5rem 0 1.25rem;
}

@media (max-width: 991.98px) {
    .faq-section {
        padding: 4.5rem 0 5rem;
    }

    .faq-intro-panel {
        padding: 1.75rem 1.5rem;
    }

    .faq-intro-lead {
        margin-bottom: 1.5rem;
    }

    .faq-intro-points {
        margin-bottom: 1.75rem;
    }

    .faq-answer-inner {
        padding-left: 1.25rem;
        margin-left: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .faq-question {
        padding: 1.15rem 1rem;
        gap: 0.85rem;
    }

    .faq-num {
        width: 2rem;
        font-size: 0.75rem;
    }

    .faq-toggle {
        width: 1.75rem;
        height: 1.75rem;
    }

    .faq-answer-inner {
        padding: 0 1rem 1.25rem;
        margin: 0 1rem;
    }
}

/* Contact — executive page */
.contact-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #000000 0%, #050505 50%, #000000 100%);
    border-top: 1px solid rgba(201, 169, 98, 0.1);
}

.contact-page {
    padding-top: 8rem;
    padding-bottom: 5rem;
    min-height: calc(100vh - 4rem);
}

.contact-section-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, 900px);
    height: 380px;
    background: radial-gradient(ellipse 80% 70% at 50% 0%, rgba(201, 169, 98, 0.07) 0%, transparent 72%);
    pointer-events: none;
}

.contact-section .contact-header {
    margin-bottom: 3.5rem;
}

.contact-subtitle {
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(176, 176, 176, 0.92);
}

.contact-alert {
    max-width: 48rem;
    margin: 0 auto 2rem;
}

.contact-info-panel {
    height: 100%;
    padding: 2rem 1.75rem;
    background: linear-gradient(160deg, rgba(22, 22, 22, 0.98) 0%, rgba(8, 8, 8, 0.99) 100%);
    border: 1px solid rgba(201, 169, 98, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.contact-info-eyebrow {
    margin: 0 0 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(201, 169, 98, 0.65);
}

.contact-info-item {
    display: flex;
    gap: 1.1rem;
    margin-bottom: 1.65rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item i {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 169, 98, 0.28);
    border-radius: 50%;
    color: var(--gold-light);
    font-size: 1.05rem;
    background: rgba(201, 169, 98, 0.05);
    flex-shrink: 0;
}

.contact-info-item strong {
    display: block;
    color: rgba(212, 175, 55, 0.9);
    font-size: 0.62rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
    font-weight: 500;
}

.contact-info-value {
    display: block;
    color: rgba(245, 240, 232, 0.88);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.35s ease;
}

a.contact-info-value:hover {
    color: var(--gold-light);
}

.contact-form-panel {
    height: 100%;
    padding: 2rem 1.75rem;
    background: linear-gradient(160deg, rgba(18, 18, 18, 0.99) 0%, rgba(8, 8, 8, 0.99) 100%);
    border: 1px solid rgba(201, 169, 98, 0.14);
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.contact-form-panel .booking-form {
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}

.contact-submit-btn {
    min-width: 220px;
    letter-spacing: 0.18em;
}

@media (max-width: 991.98px) {
    .contact-page {
        padding-top: 7rem;
        padding-bottom: 4rem;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 1.65rem 1.35rem;
    }

    .contact-submit-btn {
        width: 100%;
        max-width: none;
    }
}

/* Footer — executive */
.footer-pircar {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #020202 0%, #000000 42%, #000000 100%);
    padding: 0 0 2.25rem;
}

.footer-topline {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.45), transparent);
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(100%, 1100px);
    height: 320px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse 75% 70% at 50% 0%, rgba(201, 169, 98, 0.06) 0%, transparent 72%);
    pointer-events: none;
}

.footer-grid {
    padding: 4.5rem 0 0;
}

.footer-brand-panel {
    height: 100%;
    padding: 2rem 1.75rem;
    border: 1px solid rgba(201, 169, 98, 0.14);
    background: linear-gradient(160deg, rgba(16, 16, 16, 0.98) 0%, rgba(5, 5, 5, 0.98) 100%);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.footer-brand {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3vw, 2.15rem);
    font-weight: 400;
    color: var(--gold-light);
    letter-spacing: 0.28em;
    margin-bottom: 0.55rem;
}

.footer-tagline {
    margin: 0 0 1.25rem;
    padding-bottom: 1.15rem;
    border-bottom: 1px solid rgba(201, 169, 98, 0.1);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(201, 169, 98, 0.72);
}

.footer-desc {
    color: rgba(176, 176, 176, 0.95);
    font-size: 0.86rem;
    font-weight: 300;
    line-height: 1.75;
    letter-spacing: 0.02em;
    margin: 0 0 1.75rem;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(201, 169, 98, 0.28);
    color: var(--gold-light);
    font-size: 1rem;
    text-decoration: none;
    background: rgba(201, 169, 98, 0.05);
    transition: color 0.35s ease, border-color 0.35s ease, background 0.35s ease, transform 0.35s ease;
}

.footer-social-link:hover {
    color: var(--cream);
    border-color: rgba(201, 169, 98, 0.55);
    background: rgba(201, 169, 98, 0.12);
    transform: translateY(-2px);
}

.footer-nav-col,
.footer-contact-col {
    height: 100%;
    padding-top: 0.35rem;
}

.footer-title {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.85rem;
    font-weight: 500;
}

.footer-title-line {
    width: 2.5rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(201, 169, 98, 0.65), transparent);
    margin-bottom: 1.35rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    position: relative;
    display: inline-block;
    color: rgba(176, 176, 176, 0.95);
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    transition: color 0.35s ease, transform 0.35s ease;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: rgba(201, 169, 98, 0.55);
    transition: width 0.35s var(--transition);
}

.footer-links a:hover {
    color: var(--gold-light);
    transform: translateX(3px);
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    margin-bottom: 1.75rem;
}

.footer-contact-item {
    display: flex;
    gap: 0.95rem;
    align-items: flex-start;
}

.footer-contact-item i {
    flex-shrink: 0;
    width: 2.35rem;
    height: 2.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 169, 98, 0.28);
    color: var(--gold-light);
    font-size: 0.9rem;
    background: rgba(201, 169, 98, 0.05);
}

.footer-contact-item strong {
    display: block;
    color: rgba(212, 175, 55, 0.88);
    font-size: 0.58rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.footer-contact-value {
    display: block;
    color: rgba(245, 240, 232, 0.88);
    font-size: 0.84rem;
    font-weight: 300;
    line-height: 1.55;
    text-decoration: none;
    transition: color 0.35s ease;
}

a.footer-contact-value:hover {
    color: var(--gold-light);
}

.footer-contact-cta {
    font-size: 0.64rem;
    letter-spacing: 0.2em;
    padding: 0.85rem 1.5rem;
}

.footer-bottom {
    margin-top: 3.25rem;
}

.footer-bottom-bar {
    position: relative;
    border: 1px solid rgba(201, 169, 98, 0.12);
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.98) 0%, rgba(4, 4, 4, 0.99) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.02),
        0 18px 36px rgba(0, 0, 0, 0.28);
}

.footer-bottom-topline {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.42), transparent);
}

.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem 2rem;
    padding: 1.15rem 1.5rem;
}

.footer-copy {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem 0.65rem;
    margin: 0;
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    line-height: 1.5;
}

.footer-copy-year {
    color: rgba(138, 138, 138, 0.95);
}

.footer-copy-brand {
    font-family: var(--font-display);
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.92);
}

.footer-copy-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(201, 169, 98, 0.45);
    flex-shrink: 0;
}

.footer-copy-rights {
    color: rgba(138, 138, 138, 0.88);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
}

.footer-legal-link {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1rem;
    color: rgba(176, 176, 176, 0.95);
    font-size: 0.64rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    transition:
        color 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

.footer-legal-link:hover {
    color: var(--gold-light);
    border-color: rgba(201, 169, 98, 0.28);
    background: rgba(201, 169, 98, 0.06);
}

.footer-legal-divider {
    width: 1px;
    height: 1.1rem;
    background: linear-gradient(180deg, transparent, rgba(201, 169, 98, 0.35), transparent);
    flex-shrink: 0;
}

@media (max-width: 991.98px) {
    .footer-grid {
        padding-top: 3.5rem;
    }

    .footer-brand-panel {
        padding: 1.65rem 1.35rem;
    }

    .footer-nav-col,
    .footer-contact-col {
        padding-top: 0;
    }

    .footer-contact-col {
        margin-top: 0.5rem;
    }
}

@media (max-width: 575.98px) {
    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 1.15rem 1.15rem;
    }

    .footer-legal {
        width: 100%;
        justify-content: flex-start;
    }

    .footer-legal-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.6rem;
    }
}

/* Floating Elements */
.float-whatsapp {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s var(--transition);
    text-decoration: none;
}

.float-whatsapp:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.float-booking {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.float-booking .btn-pircar {
    box-shadow: var(--shadow-gold);
}

/* Animations — visible by default; JS adds motion for supported browsers */
.fade-up {
    opacity: 1;
    transform: translateY(0);
}

html.js .fade-up:not(.visible) {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

html.js .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* Status badges */
.status-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 0;
}

.status-new { background: rgba(100, 149, 237, 0.2); color: #6495ed; border: 1px solid #6495ed; }
.status-confirmed { background: rgba(201, 169, 98, 0.2); color: var(--gold-light); border: 1px solid var(--gold); }
.status-assigned { background: rgba(147, 112, 219, 0.2); color: #9370db; border: 1px solid #9370db; }
.status-completed { background: rgba(60, 179, 113, 0.2); color: #3cb371; border: 1px solid #3cb371; }
.status-cancelled { background: rgba(220, 20, 60, 0.2); color: #dc143c; border: 1px solid #dc143c; }

/* Admin & Portal shared */
.admin-body, .portal-body {
    background: #0f0f0f;
    min-height: 100vh;
}

.admin-sidebar {
    background: var(--anthracite);
    border-right: 1px solid rgba(201, 169, 98, 0.1);
    min-height: 100vh;
    padding: 2rem 0;
    position: fixed;
    width: 260px;
    left: 0;
    top: 0;
}

.admin-main {
    margin-left: 260px;
    padding: 2rem;
}

.admin-nav-link {
    display: block;
    padding: 0.85rem 1.5rem;
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.85rem;
    border-left: 3px solid transparent;
    transition: all 0.3s;
}

.admin-nav-link:hover,
.admin-nav-link.active {
    color: var(--gold-light);
    background: rgba(201, 169, 98, 0.05);
    border-left-color: var(--gold);
}

.stat-card {
    background: var(--anthracite-light);
    border: 1px solid rgba(201, 169, 98, 0.1);
    padding: 1.5rem;
}

.stat-card .stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold-light);
}

.stat-card .stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
}

.table-pircar {
    width: 100%;
    color: var(--cream);
}

.table-pircar th {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
    padding: 1rem;
    font-weight: 500;
}

.table-pircar td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.table-pircar tr:hover td {
    background: rgba(201, 169, 98, 0.03);
}

.login-card {
    max-width: 420px;
    margin: 0 auto;
    background: var(--anthracite-light);
    border: 1px solid rgba(201, 169, 98, 0.15);
    padding: 3rem;
}

.alert-pircar {
    padding: 1rem 1.25rem;
    border: 1px solid;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.alert-success { background: rgba(60, 179, 113, 0.1); border-color: #3cb371; color: #3cb371; }
.alert-error { background: rgba(220, 20, 60, 0.1); border-color: #dc143c; color: #dc143c; }
.alert-info { background: rgba(201, 169, 98, 0.1); border-color: var(--gold); color: var(--gold-light); }

.cms-hero-preview {
    position: relative;
    max-height: 240px;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 98, 0.25);
    border-radius: 8px;
    background: #000000;
}

.cms-hero-preview-img {
    display: block;
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center center;
}

.cms-hero-preview-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, var(--hero-overlay-opacity, 0.70));
    backdrop-filter: blur(var(--hero-blur, 1px));
    -webkit-backdrop-filter: blur(var(--hero-blur, 1px));
    pointer-events: none;
}

/* Cookie banner DSGVO */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--anthracite);
    border-top: 1px solid rgba(201, 169, 98, 0.2);
    padding: 1.5rem;
    z-index: 9998;
    display: none;
}

.cookie-banner.show {
    display: block;
}

/* Responsive */
@media (max-width: 991.98px) {
    .admin-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s;
        z-index: 1001;
    }

    .admin-sidebar.open {
        transform: translateX(0);
    }

    .admin-main {
        margin-left: 0;
    }

    .booking-form {
        padding: 2rem 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn-pircar {
        width: 100%;
        max-width: 280px;
    }

    .navbar-pircar {
        background: #000000;
    }

    .navbar-pircar .container {
        position: relative;
        z-index: 1002;
    }

    .navbar-brand-pircar,
    .navbar-toggler-pircar {
        position: relative;
        z-index: 1003;
    }

    #navbarNav.collapse.show,
    #navbarNav.collapse.collapsing {
        position: fixed;
        inset: 0;
        z-index: 1001;
        display: block !important;
        height: 100dvh !important;
        padding: 0;
        margin: 0;
        background:
            radial-gradient(ellipse 80% 45% at 50% 0%, rgba(201, 169, 98, 0.08) 0%, transparent 55%),
            #000000;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    #navbarNav.collapse.collapsing {
        transition: none !important;
    }

    .mobile-nav-panel {
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: 100%;
        padding:
            max(5.5rem, calc(env(safe-area-inset-top) + 4.5rem))
            max(1.5rem, env(safe-area-inset-right))
            max(2.5rem, env(safe-area-inset-bottom))
            max(1.5rem, env(safe-area-inset-left));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-nav-panel::before {
        content: '';
        display: block;
        width: 48px;
        height: 1px;
        margin: 0 auto 2rem;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
        opacity: 0.7;
    }

    #navbarNav.show .mobile-nav-list .nav-item {
        opacity: 0;
        animation: mobileNavItemIn 0.45s ease forwards;
    }

    #navbarNav.show .mobile-nav-list .nav-item:nth-child(1) { animation-delay: 0.04s; }
    #navbarNav.show .mobile-nav-list .nav-item:nth-child(2) { animation-delay: 0.08s; }
    #navbarNav.show .mobile-nav-list .nav-item:nth-child(3) { animation-delay: 0.12s; }
    #navbarNav.show .mobile-nav-list .nav-item:nth-child(4) { animation-delay: 0.16s; }
    #navbarNav.show .mobile-nav-list .nav-item:nth-child(5) { animation-delay: 0.2s; }
    #navbarNav.show .mobile-nav-list .nav-item:nth-child(6) { animation-delay: 0.24s; }
    #navbarNav.show .mobile-nav-list .nav-item:nth-child(7) { animation-delay: 0.28s; }

    #navbarNav.show .mobile-nav-footer {
        opacity: 0;
        animation: mobileNavFooterIn 0.5s ease 0.32s forwards;
    }

    .mobile-nav-list {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
        text-align: center;
    }

    .mobile-nav-list .nav-item {
        border-bottom: 1px solid rgba(201, 169, 98, 0.1);
    }

    .mobile-nav-list .nav-item:first-child {
        border-top: 1px solid rgba(201, 169, 98, 0.1);
    }

    .mobile-nav-list .nav-link-pircar {
        display: block;
        padding: 1rem 1.25rem !important;
        font-size: 0.82rem;
        letter-spacing: 0.18em;
    }

    .mobile-nav-list .nav-link-pircar::after {
        display: none;
    }

    .mobile-nav-list .nav-link-pircar.active,
    .mobile-nav-list .nav-link-pircar:hover {
        color: var(--gold-light) !important;
        background: rgba(201, 169, 98, 0.06);
    }

    .mobile-nav-footer {
        width: 100%;
        max-width: 360px;
        margin: 2rem auto 0;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(201, 169, 98, 0.2);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
    }

    .lang-switcher-mobile {
        display: flex;
        gap: 0.5rem;
        padding: 0.35rem;
        border: 1px solid rgba(201, 169, 98, 0.25);
        border-radius: 4px;
        background: rgba(201, 169, 98, 0.04);
    }

    .lang-switcher-mobile a {
        min-width: 44px;
        text-align: center;
        padding: 0.45rem 0.75rem;
        font-size: 0.75rem;
        letter-spacing: 0.12em;
        border-radius: 2px;
    }

    .lang-switcher-mobile a.active {
        background: rgba(201, 169, 98, 0.15);
        color: var(--gold-light);
    }

    .mobile-nav-cta {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.85rem 1.5rem;
        font-size: 0.72rem;
    }
}

@media (max-width: 768px) {
    .section-pircar {
        padding: 4rem 0;
    }

    .hero-section {
        min-height: auto;
        max-height: none;
    }

    .hero-content {
        padding: 6.5rem 1rem 2.5rem;
    }

    .fleet-showcase {
        padding: 1.5rem 0 5rem;
    }

    .fleet-showcase-header {
        margin-bottom: 2.25rem;
    }

    .fleet-showcase-lead {
        font-size: 0.88rem;
        padding: 0 0.5rem;
    }

    .fleet-showcase-card .row {
        flex-direction: column;
    }

    .fleet-showcase-visual {
        border-right: none;
        border-bottom: 1px solid rgba(201, 169, 98, 0.1);
        padding: 1.75rem 1.25rem;
    }

    .fleet-stage {
        min-height: auto;
    }

    .fleet-stage {
        max-width: 100%;
    }

    .fleet-stage-frame {
        padding: 0.5rem;
    }

    .fleet-image-wrapper {
        width: 100% !important;
        height: 200px !important;
        min-height: 200px !important;
        max-height: 200px !important;
    }

    .fleet-image-wrapper img {
        position: absolute !important;
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: contain !important;
        object-position: center center !important;
    }

    .fleet-showcase-panel {
        min-height: auto;
        padding: 1.85rem 1.35rem 2rem;
    }

    .fleet-panel-eyebrow {
        margin-bottom: 1rem;
        letter-spacing: 0.2em;
    }

    .fleet-showcase-stats {
        grid-template-columns: 1fr;
        gap: 0.65rem;
        margin-bottom: 1.5rem;
    }

    .fleet-showcase-cta {
        width: 100%;
        max-width: none;
        margin-top: 1.25rem;
    }

    .fleet-panel-trust {
        text-align: center;
        line-height: 1.6;
    }

    .fleet-gallery-thumb {
        width: 64px;
        height: 44px;
    }

    .fleet-stage-corner {
        width: 22px;
        height: 22px;
    }

    #fleet.fleet-showcase {
        padding-bottom: 1rem;
        scroll-margin-bottom: 6rem;
    }

    .site-logo-img {
        height: 48px;
        max-width: 200px;
    }

    .navbar-pircar.has-site-logo.scrolled .site-logo-img {
        height: 44px;
        max-width: 180px;
    }

    .float-whatsapp {
        bottom: 76px;
        right: 12px;
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        z-index: 998;
    }

    .float-booking {
        right: 12px;
        bottom: 12px;
        z-index: 998;
    }

    .float-booking .btn-pircar {
        padding: 0.6rem 0.9rem;
        font-size: 0.65rem;
        letter-spacing: 0.08em;
    }
}
