```css
/* =========================================================
   DRIVORA - MAIN STYLES
   ========================================================= */

/* ---------- RESET ---------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    background: #08090b;
    color: #f5f5f5;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
    object-fit: cover;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: none;
    cursor: pointer;
}


/* ---------- VARIABLES ---------- */

:root {
    --bg: #08090b;
    --bg-soft: #0e1013;
    --card: #121417;
    --card-hover: #171a1e;

    --white: #ffffff;
    --text: #f4f4f4;
    --muted: #92979f;

    --line: rgba(255, 255, 255, 0.09);

    --accent: #d9ff3f;
    --accent-dark: #b8db24;

    --danger: #ff5c5c;

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --transition: 0.3s ease;
}


/* ---------- CONTAINER ---------- */

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}


/* ---------- NAVBAR ---------- */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(8, 9, 11, 0.88);
    backdrop-filter: blur(18px);

    border-bottom: 1px solid var(--line);
}

.navbar-container {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* ---------- LOGO ---------- */

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-weight: 800;
    letter-spacing: 1px;
}

.logo-mark {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background: var(--accent);
    color: #08090b;

    font-size: 19px;
}

.logo-text {
    font-size: 20px;
}


/* ---------- NAV MENU ---------- */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    position: relative;

    color: var(--muted);

    font-size: 14px;
    font-weight: 600;

    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -9px;

    width: 0;
    height: 2px;

    background: var(--accent);

    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


/* ---------- NAV ACTIONS ---------- */

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.language-btn {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;

    border: 1px solid var(--line);
    border-radius: 10px;

    background: transparent;
    color: var(--white);

    font-size: 12px;

    transition: var(--transition);
}

.language-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border-radius: 10px;

    background: var(--card);
    color: var(--white);

    font-size: 22px;
}


/* ---------- BUTTONS ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 48px;

    padding: 0 20px;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 700;

    transition: var(--transition);
}

.btn-primary {
    background: var(--accent);
    color: #08090b;
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--line);
    background: transparent;
    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-large {
    min-height: 54px;
    padding: 0 25px;
}


/* ---------- PAGE HERO ---------- */

.page-hero {
    position: relative;

    padding: 110px 0 90px;

    border-bottom: 1px solid var(--line);

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(217, 255, 63, 0.08),
            transparent 45%
        );
}

.page-hero .container {
    max-width: 850px;
    text-align: center;
}

.section-label {
    display: inline-block;

    margin-bottom: 18px;

    color: var(--accent);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}

.page-hero h1 {
    margin-bottom: 20px;

    font-size: clamp(42px, 6vw, 76px);

    line-height: 1.05;
    letter-spacing: -2px;
}

.page-hero p {
    max-width: 650px;
    margin: auto;

    color: var(--muted);

    font-size: 17px;
}


/* ---------- SECTIONS ---------- */

.section {
    padding: 100px 0;
}


/* ---------- SERVICES ---------- */

.services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.service-card {
    position: relative;

    padding: 30px;

    min-height: 260px;

    border: 1px solid var(--line);
    border-radius: var(--radius-md);

    background: var(--card);

    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-7px);
    background: var(--card-hover);
    border-color: rgba(217, 255, 63, 0.35);
}

.service-icon {
    width: 54px;
    height: 54px;

    display: grid;
    place-items: center;

    margin-bottom: 30px;

    border-radius: 14px;

    background: rgba(217, 255, 63, 0.1);
    color: var(--accent);

    font-size: 23px;
}

.service-card h3 {
    margin-bottom: 10px;

    font-size: 21px;
}

.service-card p {
    color: var(--muted);

    font-size: 14px;
}

.service-link {
    position: absolute;

    right: 25px;
    bottom: 25px;

    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border: 1px solid var(--line);
    border-radius: 50%;

    color: var(--muted);

    transition: var(--transition);
}

.service-link:hover {
    background: var(--accent);
    color: #08090b;
}


/* ---------- DETAIL PAGE ---------- */

.detail-layout {
    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    gap: 70px;

    align-items: center;
}

.detail-image {
    min-height: 520px;

    overflow: hidden;

    border-radius: var(--radius-lg);

    border: 1px solid var(--line);
}

.detail-image img {
    height: 100%;
    min-height: 520px;
}

.detail-content h2 {
    margin-bottom: 20px;

    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.1;
}

.detail-content > p {
    margin-bottom: 28px;

    color: var(--muted);

    font-size: 15px;
}

.feature-list {
    display: flex;
    flex-direction: column;

    gap: 15px;

    margin: 25px 0 30px;

    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;

    color: #d9dce0;

    font-size: 14px;
}

.feature-list i {
    color: var(--accent);
}

.detail-price {
    display: flex;
    align-items: baseline;
    gap: 10px;

    margin-bottom: 25px;
}

.detail-price span {
    color: var(--muted);
    font-size: 13px;
}

.detail-price strong {
    font-size: 36px;
}


/* ---------- CARS ---------- */

.cars-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.car-card {
    overflow: hidden;

    border: 1px solid var(--line);
    border-radius: var(--radius-md);

    background: var(--card);

    transition: var(--transition);
}

.car-card:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 255, 63, 0.3);
}

.car-image {
    height: 240px;
    overflow: hidden;
}

.car-image img {
    height: 100%;

    transition: transform 0.6s ease;
}

.car-card:hover .car-image img {
    transform: scale(1.06);
}

.car-info {
    padding: 23px;
}

.car-info h3 {
    margin-bottom: 7px;

    font-size: 21px;
}

.car-info p {
    margin-bottom: 20px;

    color: var(--muted);

    font-size: 13px;
}

.car-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 20px;

    color: var(--muted);

    font-size: 12px;
}

.car-meta strong {
    color: var(--white);
}

.car-info .btn {
    width: 100%;
}


/* ---------- CAR SPECS ---------- */

.car-specs {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 12px;

    margin: 30px 0;
}

.spec-item {
    display: flex;
    flex-direction: column;

    gap: 5px;

    padding: 16px;

    border: 1px solid var(--line);
    border-radius: 12px;

    background: var(--card);
}

.spec-item i {
    margin-bottom: 5px;

    color: var(--accent);
}

.spec-item span {
    color: var(--muted);

    font-size: 11px;
}

.spec-item strong {
    font-size: 14px;
}


/* ---------- OFFERS ---------- */

.offers-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    align-items: stretch;
}

.offer-card {
    position: relative;

    padding: 35px;

    border: 1px solid var(--line);
    border-radius: var(--radius-md);

    background: var(--card);

    transition: var(--transition);
}

.offer-card:hover {
    transform: translateY(-6px);
}

.offer-card.featured {
    border-color: var(--accent);

    box-shadow:
        0 0 50px rgba(217, 255, 63, 0.07);
}

.offer-badge {
    display: inline-block;

    margin-bottom: 25px;
    padding: 6px 10px;

    border-radius: 6px;

    background: rgba(217, 255, 63, 0.1);
    color: var(--accent);

    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.offer-card h3 {
    margin-bottom: 8px;

    font-size: 24px;
}

.offer-card > p {
    color: var(--muted);

    font-size: 13px;
}

.offer-price {
    display: flex;
    align-items: baseline;
    gap: 6px;

    margin: 25px 0;
}

.offer-price strong {
    font-size: 45px;
    line-height: 1;
}

.offer-price span {
    color: var(--muted);

    font-size: 12px;
}

.offer-card .btn {
    width: 100%;
}


/* ---------- FORMS ---------- */

.booking-layout {
    display: grid;

    grid-template-columns: 0.75fr 1.25fr;

    gap: 70px;

    align-items: start;
}

.booking-info {
    position: sticky;
    top: 120px;
}

.booking-info h2 {
    margin-bottom: 18px;

    font-size: clamp(34px, 4vw, 55px);
    line-height: 1.05;
}

.booking-info p {
    color: var(--muted);
}

.booking-form,
.contact-form {
    padding: 35px;

    border: 1px solid var(--line);
    border-radius: var(--radius-lg);

    background: var(--card);
}

.form-row {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: #d8dadd;

    font-size: 13px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;

    padding: 14px 15px;

    border: 1px solid var(--line);
    border-radius: 10px;

    outline: none;

    background: #0b0d0f;
    color: var(--white);

    font-size: 13px;

    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
}

.form-group select option {
    background: #0b0d0f;
}


/* ---------- ABOUT ---------- */

.about-layout {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}

.about-image {
    overflow: hidden;

    border-radius: var(--radius-lg);

    border: 1px solid var(--line);
}

.about-image img {
    min-height: 480px;
}

.about-content h2 {
    margin-bottom: 20px;

    font-size: clamp(35px, 4vw, 55px);
    line-height: 1.05;
}

.about-content p {
    margin-bottom: 18px;

    color: var(--muted);

    font-size: 15px;
}

.about-stats {
    padding-top: 0;
}

.stats-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.big-stat {
    padding: 35px 20px;

    text-align: center;

    border-right: 1px solid var(--line);
}

.big-stat:last-child {
    border-right: none;
}

.big-stat strong {
    display: block;

    margin-bottom: 5px;

    color: var(--accent);

    font-size: 40px;
}

.big-stat span {
    color: var(--muted);

    font-size: 12px;
}


/* ---------- CONTACT ---------- */

.contact-layout {
    display: grid;

    grid-template-columns: 0.7fr 1.3fr;

    gap: 60px;

    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;

    gap: 28px;
}

.contact-item {
    display: flex;
    align-items: flex-start;

    gap: 15px;
}

.contact-icon {
    flex-shrink: 0;

    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    background: rgba(217, 255, 63, 0.1);
    color: var(--accent);
}

.contact-item h3 {
    margin-bottom: 3px;

    font-size: 15px;
}

.contact-item p {
    color: var(--muted);

    font-size: 13px;
}


/* ---------- 404 ---------- */

.error-page {
    min-height: calc(100vh - 82px);

    display: grid;
    place-items: center;

    text-align: center;

    padding: 70px 0;
}

.error-number {
    display: block;

    margin-bottom: 15px;

    color: var(--accent);

    font-size: clamp(100px, 20vw, 230px);
    font-weight: 800;

    line-height: 0.8;

    letter-spacing: -10px;
}

.error-page h1 {
    margin-bottom: 15px;

    font-size: clamp(30px, 5vw, 55px);
}

.error-page p {
    max-width: 500px;

    margin: 0 auto 30px;

    color: var(--muted);
}


/* ---------- FOOTER ---------- */

.footer {
    margin-top: 50px;

    border-top: 1px solid var(--line);

    background: #060708;
}

.footer-content {
    padding: 55px 0;
}

.footer-brand p {
    max-width: 350px;

    margin-top: 15px;

    color: var(--muted);

    font-size: 13px;
}

.footer-bottom {
    padding: 20px 0;

    border-top: 1px solid var(--line);

    color: #6e7278;

    font-size: 11px;
}


/* ---------- SELECTION ---------- */

::selection {
    background: var(--accent);
    color: #08090b;
}


/* ---------- SCROLLBAR ---------- */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: #292d32;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}
```

