:root {
    --base: #050b1a;
    --surface: #121c30;
    --darker: #030712;
    --accent: #ffcf56;
    --accent-contrast: #1a1200;
    --muted: #a0afc6;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", Arial, sans-serif;
    background-color: var(--base);
    color: #f8f9fc;
}

.bg-base {
    background-color: var(--base);
}

.bg-surface {
    background-color: var(--surface);
}

.bg-darker {
    background-color: var(--darker);
}

.text-accent {
    color: var(--accent);
}

.text-muted {
    color: var(--muted) !important;
}

.btn-accent {
    background-color: var(--accent);
    color: var(--accent-contrast);
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-accent:hover,
.btn-accent:focus {
    color: var(--accent-contrast);
    transform: translateY(-2px);
    box-shadow: 0 0.75rem 1.5rem rgba(255, 207, 86, 0.25);
}

.navbar .nav-link {
    color: #f1f5ff;
    transition: color 0.2s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: var(--accent);
}

.navbar .btn-accent {
    padding: 0.6rem 1.4rem;
    border-radius: 999px;
}

/* Language switch inline links */
.lang-switch .nav-link {
    line-height: 1;
    display: inline-block;
}
.lang-switch .nav-link.active {
    font-weight: 600;
    color: var(--accent) !important;
}


.hero-section {
    position: relative;
    min-height: 90vh;
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-image: linear-gradient(rgba(3, 7, 18, 0.6), rgba(3, 7, 18, 0.6)), url("whitew212clean5.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(3, 7, 18, 0.65) 0%, rgba(3, 7, 18, 0.2) 100%);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.contact-hero {
    background-image: linear-gradient(rgba(3, 7, 18, 0.7), rgba(3, 7, 18, 0.5)), url("whitew212clean5.jpg");
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.image-panel {
    border-radius: 1.5rem;
    overflow: hidden;
}

.image-panel img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.accent-dot {
    display: inline-block;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: var(--accent);
    flex-shrink: 0;
}

.service-card,
.surface-panel {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
}

.service-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.service-card:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.35);
}

.fleet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fleet-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
}

.fleet-list li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 1.5rem;
    line-height: 1;
    top: 0;
}

.table-responsive {
    border-radius: 1rem;
    overflow: hidden;
}

.booking-form {
    max-width: 720px;
}

.booking-form .form-control,
.booking-form .form-select {
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f8f9fc;
}

.booking-form .form-control::placeholder {
    color: rgba(248, 249, 252, 0.6);
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 0.25rem rgba(255, 207, 86, 0.2);
}

.detail-tile {
    padding: 1.5rem;
    border-radius: 1rem;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 100%;
}

section {
    scroll-margin-top: 6rem;
}

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 991px) {
    .hero-section {
        text-align: center;
        padding-top: 7rem;
        padding-bottom: 4rem;
    }

    .hero-section .d-flex {
        align-items: stretch;
    }

    .navbar-collapse {
        background-color: var(--darker);
        border-radius: 0 0 1rem 1rem;
        padding: 1rem 1.25rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .booking-form {
        padding: 2.5rem 1.25rem;
    }
}
