:root {
    --accent-color: #c9a14a;
    --secondary-color: #f0d089;
    --header-bg: #121212;
    --body-bg: #0d0d0d;
    --text-color: #f4f1ea;
    --muted-text: #c7c0b1;
    --card-bg: #171717;
    --border-color: #2f2a20;
    --surface-soft: #1f1b16;
    --button-text: #0f0f0f;
    --nav-font: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    --body-font: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    --heading-font: "Trebuchet MS", Helvetica, sans-serif;
    --nav-size: 15px;
    --body-size: 16px;
    --heading-size: clamp(2.4rem, 5vw, 4.5rem);
    --hero-image: none;
    --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.28);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--body-font);
    font-size: var(--body-size);
    background:
        radial-gradient(circle at top left, rgba(201, 161, 74, 0.16), transparent 26%),
        linear-gradient(180deg, #111111 0%, var(--body-bg) 45%, #090909 100%);
    color: var(--text-color);
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(16px);
    background: var(--header-bg);
    border-bottom: 1px solid rgba(201, 161, 74, 0.12);
}

.site-header__inner,
.footer-grid,
.hero-grid,
.section-grid,
.fleet-grid,
.service-grid,
.contact-grid {
    display: grid;
    gap: 24px;
}

.site-header__inner {
    grid-template-columns: 1fr auto auto;
    align-items: center;
    padding: 16px 0;
}

.brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brand__name {
    font-family: var(--heading-font);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand__sub {
    color: var(--muted-text);
    font-size: 0.9rem;
}

.nav-links,
.lang-switch {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.nav-links a,
.lang-switch a,
.pill-link {
    font-family: var(--nav-font);
    font-size: var(--nav-size);
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid transparent;
    color: var(--muted-text);
    transition: 0.2s ease;
}

.nav-links a:hover,
.lang-switch a:hover,
.lang-switch a.is-active {
    color: var(--text-color);
    border-color: rgba(201, 161, 74, 0.4);
    background: rgba(201, 161, 74, 0.08);
}

.hero {
    padding: 54px 0 26px;
}

.hero-panel {
    border: 1px solid rgba(201, 161, 74, 0.18);
    border-radius: 32px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.34)),
        var(--hero-image) center/cover no-repeat,
        linear-gradient(135deg, var(--header-bg), var(--secondary-color));
    box-shadow: var(--shadow-soft);
}

.hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    align-items: stretch;
    padding: 42px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(201, 161, 74, 0.12);
    border: 1px solid rgba(201, 161, 74, 0.24);
    color: #f3d898;
    font-size: 0.92rem;
}

.hero h1,
.section-head h2 {
    margin: 16px 0 14px;
    line-height: 1.06;
}

.hero h1 {
    font-family: var(--heading-font);
    font-size: var(--heading-size);
    max-width: 10ch;
}

.hero p,
.section-head p,
.card-muted,
.feature-list li,
.footer-note {
    font-size: var(--body-size);
    color: var(--muted-text);
    line-height: 1.7;
}

.hero-actions,
.stats-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.button,
button,
input[type="submit"] {
    border: 0;
    border-radius: 14px;
    padding: 14px 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.button:hover,
button:hover,
input[type="submit"]:hover {
    transform: translateY(-1px);
}

.button--primary,
button,
input[type="submit"] {
    background: var(--accent-color);
    color: var(--button-text);
    box-shadow: 0 16px 34px rgba(201, 161, 74, 0.24);
}

.button--ghost {
    background: transparent;
    color: var(--text-color);
    border: 1px solid rgba(201, 161, 74, 0.28);
}

.quick-booking,
.card,
.service-card,
.fleet-card,
.info-card,
.footer-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(201, 161, 74, 0.14);
    background: rgba(20, 20, 20, 0.92);
    box-shadow: var(--shadow-soft);
}

.quick-booking {
    padding: 24px;
}

.form-grid {
    display: grid;
    gap: 14px;
}

.form-grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
    display: grid;
    gap: 8px;
    font-family: var(--body-font);
    color: var(--muted-text);
    font-size: 0.95rem;
}

input,
select,
textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-color);
    min-height: 50px;
}

textarea {
    min-height: 132px;
    resize: vertical;
}

section {
    padding: 42px 0;
}

.section-head {
    margin-bottom: 22px;
    max-width: 720px;
}

.service-grid,
.fleet-grid,
.contact-grid,
.footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.fleet-card,
.info-card,
.footer-card,
.card {
    padding: 22px;
}

.service-card__icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(201, 161, 74, 0.12);
    color: #f6daa0;
    font-size: 1.35rem;
}

.fleet-card img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #161616, #24201c);
}

.fleet-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    color: var(--muted-text);
    font-size: 0.92rem;
}

.stats-row .card {
    min-width: 160px;
    padding: 18px;
    border-radius: 20px;
}

.stat-value {
    font-size: 1.55rem;
    font-weight: 700;
    color: #f2d48d;
}

.contact-grid .info-card {
    min-height: 100%;
}

.footer {
    padding: 22px 0 36px;
}

.footer-card {
    padding: 26px;
}

.footer-bottom {
    padding-top: 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    color: var(--muted-text);
    border-top: 1px solid rgba(201, 161, 74, 0.12);
}

.db-warning {
    margin: 24px auto;
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid rgba(255, 177, 65, 0.3);
    background: rgba(255, 177, 65, 0.08);
    color: #f7ddb1;
}

@media (max-width: 980px) {
    .site-header__inner,
    .hero-grid,
    .service-grid,
    .fleet-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .site-header__inner {
        padding-bottom: 20px;
    }

    .hero-grid {
        padding: 24px;
    }
}

@media (max-width: 640px) {
    body {
        padding-bottom: env(safe-area-inset-bottom);
    }

    .container {
        width: min(100% - 22px, 1180px);
    }

    .hero {
        padding-top: 28px;
    }

    .form-grid--2 {
        grid-template-columns: 1fr;
    }

    input,
    select,
    textarea {
        min-height: 52px;
        font-size: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}
