/* ========
   GLOBAL RESET
======== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: #111111;
    background: #ffffff;
    line-height: 1.6;
}

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

button {
    font-family: inherit;
}


/* =========
   CONTAINER
========== */

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


/* ============
   HEADER
 ===========*/

.site-header {
    width: 100%;
    height: 82px;

    background: #ffffff;

    border-bottom: 1px solid #eeeeee;

    position: sticky;
    top: 0;
    z-index: 1000;
}


/* 
   NAV WRAPPER 
   */

.nav-wrapper {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* 
   LOGO
 */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    font-family: "Manrope", sans-serif;

    font-size: 17px;
    font-weight: 800;

    letter-spacing: 1.5px;
}


/* Logo icon */

.logo-mark {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    background: #111111;
    color: #d8ff3e;

    font-size: 19px;
    font-weight: 800;

    transform: skew(-10deg);
}


/* Logo text */

.logo-text {
    color: #111111;
}

.logo-text span {
    font-weight: 500;
}


/* 
   DESKTOP NAVIGATION
 */

.main-nav {
    display: flex;
    align-items: center;

    gap: 28px;

    font-size: 14px;
    font-weight: 600;
}

.main-nav a {
    transition: opacity 0.2s ease;
}

.main-nav a:hover {
    opacity: 0.55;
}


/* 
   NAV CTA
 */

.nav-cta {
    background: #111111;
    color: #ffffff;

    padding: 12px 19px;

    border-radius: 100px;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.nav-cta:hover {
    opacity: 1 !important;

    background: #222222;

    transform: translateY(-2px);
}


/* 
   MOBILE MENU BUTTON
*/

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: none;
    background: transparent;

    cursor: pointer;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;
}

.menu-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    background: #111111;

    transition: 0.3s ease;
}


/* =========================
   HERO SECTION
========================= */

.hero {

    /* position: relative;

    min-height: calc(100vh - 82px);

    display: flex;

    align-items: center;

    overflow: hidden;

    background: #141618;

    color: #ffffff; */
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}


/* 
   HERO BACKGROUND
*/

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-image:
        url("images/hero photo.png");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}


/* 
   HERO CONTAINER
 */

.hero-container {

    position: relative;

    z-index: 1;

    width: 100%;

    padding-top: 100px;

    padding-bottom: 100px;
}


/* 
   HERO CONTENT
 */

.hero-content {

    max-width: 720px;
}


/* 
   EYEBROW
 */

.eyebrow {

    display: flex;

    align-items: center;

    gap: 10px;

    text-transform: uppercase;

    letter-spacing: 2px;

    font-size: 11px;

    font-weight: 700;

    color: #74787c;

    margin-bottom: 22px;
}


.eyebrow span {

    display: block;

    width: 28px;

    height: 2px;

    background: currentColor;
}


.hero-eyebrow {

    color: #d8ff3e;
}


/* 
   HERO HEADING
 */

.hero h1 {

    font-family: "Manrope", sans-serif;

    font-size: clamp(48px, 7vw, 88px);

    line-height: 0.98;

    letter-spacing: -4px;

    font-weight: 800;

    margin-bottom: 28px;
}


.hero h1 em {

    font-style: normal;

    color: #d8ff3e;

    font-weight: 600;
}


/* 
   HERO DESCRIPTION
 */

.hero-description {

    max-width: 540px;

    font-size: 18px;

    line-height: 1.7;

    color: #d8d9da;

    margin-bottom: 34px;
}


/* 
   HERO BUTTONS
 */

.hero-actions {

    display: flex;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;
}


.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 24px;

    border-radius: 100px;

    padding: 15px 22px;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;

    font-weight: 700;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.btn span {

    font-size: 17px;
}


/* Primary */

.btn-primary {

    background: #d8ff3e;

    color: #111111;
}


.btn-primary:hover {

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(216, 255, 62, 0.18);
}


/* Outline */

.btn-outline {

    border: 1px solid rgba(255, 255, 255, 0.40);

    color: #ffffff;

    background: transparent;
}


.btn-outline:hover {

    background: #ffffff;

    color: #111111;
}


/* 
   HERO TRUST
*/

.hero-trust {

    display: flex;

    gap: 34px;

    margin-top: 72px;
}


.trust-item {

    display: flex;

    flex-direction: column;
}


.trust-item strong {

    font-family: "Manrope", sans-serif;

    font-size: 17px;

    font-weight: 700;
}


.trust-item span {

    font-size: 11px;

    color: #9da0a2;
}


/* 
   SCROLL INDICATOR
 */

.hero-scroll {

    position: absolute;

    right: 34px;

    bottom: 34px;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 10px;

    color: #aaa;

    font-size: 10px;

    letter-spacing: 2px;

    writing-mode: vertical-rl;
}


.hero-scroll strong {

    color: #d8ff3e;

    font-size: 18px;

    font-weight: 400;
}


/* =========================
   FLEET SECTION
========================= */

.fleet {
    background: #ffffff;
}


/* =========================
   CAR GRID
========================= */

.car-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}


/* 
   CAR CAR 
   */


.car-card {

    background: #ffffff;

    border: 1px solid #e5e6e7;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.car-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.08);
}


/* 
   CAR IMAGE
 */

.car-image {

    height: 275px;

    position: relative;

    overflow: hidden;

    background: #eeeeee;
}


.car-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}


.car-card:hover .car-image img {

    transform: scale(1.05);
}


/* 
   CAR TAG
*/

.car-tag {

    position: absolute;

    top: 14px;

    left: 14px;

    background: #ffffff;

    color: #111111;

    padding: 7px 11px;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;

    font-weight: 700;
}


/* 
   CAR INFO
 */

.car-info {

    padding: 22px;
}


.car-main-info {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 15px;
}


.car-info h3 {

    font-family: "Manrope", sans-serif;

    font-size: 18px;

    line-height: 1.3;
}


.car-info p {

    font-size: 12px;

    color: #888888;

    margin-top: 4px;
}


.car-price {

    font-size: 11px;

    font-weight: 700;

    white-space: nowrap;

    color: #555555;
}


/* 
   CAR LINK
 */

.car-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 25px;

    font-size: 12px;

    font-weight: 700;
}


.car-link span {

    font-size: 17px;

    transition:
        transform 0.2s ease;
}


.car-link:hover span {

    transform: translateX(5px);
}


/* =========================
   ABOUT SECTION
========================= */

.about {

    background: #f4f5f5;
}


/* 
   ABOUT GRID
 */

.about-grid {

    display: grid;

    grid-template-columns:
        1.05fr 0.95fr;

    gap: 90px;

    align-items: center;
}


/*
   ABOUT IMAGE
*/

.about-image {

    height: 620px;

    position: relative;

    overflow: hidden;
}


.about-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;
}


/* 
   IMAGE BADGE
*/

.about-badge {

    position: absolute;

    left: 25px;

    bottom: 25px;

    background: #d8ff3e;

    padding: 18px 22px;

    display: flex;

    flex-direction: column;
}


.about-badge strong {

    font-family: "Manrope", sans-serif;

    font-size: 20px;

    font-weight: 800;
}


.about-badge span {

    font-size: 11px;

    color: #333333;
}


/* 
   ABOUT CONTENT
 */

.about-content h2 {

    font-family: "Manrope", sans-serif;

    font-size: clamp(38px, 5vw, 64px);

    line-height: 1.02;

    letter-spacing: -2.5px;

    font-weight: 800;
}


.about-content h2 em {

    font-style: normal;

    color: #777b7e;

    font-weight: 600;
}


.about-description {

    max-width: 500px;

    color: #6f7377;

    margin: 28px 0;

    font-size: 15px;

    line-height: 1.75;
}


/*
   BENEFITS
 */

.benefits-list {

    list-style: none;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px;

    margin: 30px 0;
}


.benefits-list li {

    display: flex;

    align-items: center;

    font-size: 13px;

    font-weight: 600;
}


.benefit-icon {

    width: 22px;

    height: 22px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    margin-right: 8px;

    border-radius: 50%;

    background: #111111;

    color: #d8ff3e;

    font-size: 11px;
}


/* 
   ABOUT LINK
 */

.about-link {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    font-size: 13px;

    font-weight: 700;

    border-bottom: 1px solid #111111;

    padding-bottom: 5px;
}


.about-link span {

    font-size: 17px;

    transition:
        transform 0.2s ease;
}


.about-link:hover span {

    transform: translateX(5px);
}


/* =========================
   BOOKING SECTION
========================= */

.booking {
    background: #ffffff;
}


/* =========================
   BOOKING BOX
========================= */

.booking-box {

    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    background: #111111;

    color: #ffffff;

    overflow: hidden;
}


/* 
   BOOKING CONTENT
 */

.booking-content {

    padding: 70px;
}


.booking-eyebrow {
    color: #d8ff3e;
}


.booking-content h2 {

    font-family: "Manrope", sans-serif;

    font-size: clamp(42px, 5vw, 66px);

    line-height: 1;

    letter-spacing: -2px;

    font-weight: 800;
}


.booking-content h2 em {

    font-style: normal;

    color: #d8ff3e;

    font-weight: 600;
}


.booking-description {

    max-width: 400px;

    color: #aaaaaa;

    margin: 25px 0 42px;

    font-size: 14px;

    line-height: 1.7;
}


/* 
   BOOKING STEPS
 */

.booking-steps {

    display: flex;

    flex-direction: column;

    gap: 20px;
}


.booking-step {

    display: flex;

    align-items: flex-start;

    gap: 16px;
}


.booking-step > span {

    color: #d8ff3e;

    font-family: "Manrope", sans-serif;

    font-size: 11px;

    font-weight: 700;
}


.booking-step strong {

    display: block;

    color: #ffffff;

    font-size: 13px;
}


.booking-step p {

    color: #999999;

    font-size: 11px;

    margin-top: 2px;
}


/* 
   FORM WRAPPER
    */

.booking-form-wrapper {

    background: #f6f7f7;

    color: #111111;

    padding: 50px;
}


/* 
   FORM
 */

.booking-form {

    width: 100%;
}


/* 
   FORM HEADING
 */

.form-heading {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    margin-bottom: 30px;
}


.form-heading h3 {

    font-family: "Manrope", sans-serif;

    font-size: 21px;

    font-weight: 800;
}


.form-heading span {

    font-size: 9px;

    color: #777777;

    text-transform: uppercase;

    letter-spacing: 1px;

    font-weight: 700;
}


/* 
   FORM ROW
 */

.form-row {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 14px;
}


/* 
   FORM GROUP
    */

.form-group {

    margin-bottom: 17px;
}


.form-group label {

    display: block;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;

    font-weight: 700;

    color: #333333;

    margin-bottom: 8px;
}


.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    border: 1px solid #dddddd;

    background: #ffffff;

    padding: 14px 15px;

    border-radius: 2px;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;

    color: #111111;

    outline: none;

    transition:
        border-color 0.2s ease;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: #111111;
}


.form-group textarea {

    resize: vertical;

    min-height: 100px;
}


/* 
   FORM SECTION TITLE
*/

.form-section-title {

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    font-weight: 700;

    color: #888888;

    border-bottom: 1px solid #dddddd;

    padding-bottom: 10px;

    margin: 28px 0 20px;
}


/* 
   BOOKING BUTTON
 */

.booking-submit {

    width: 100%;

    border: none;

    cursor: pointer;

    margin-top: 5px;
}


/* 
   FORM NOTE
 */

.form-note {

    text-align: center;

    color: #888888;

    font-size: 10px;

    line-height: 1.5;

    margin-top: 12px;
}



/* =========================
   CONTACT SECTION
========================= */

.contact {

    background: #f7f7f7;
}


/* 
   CONTACT GRID
= */

.contact-grid {

    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 110px;

    align-items: start;
}


/* 
   CONTACT CONTENT
 */

.contact-content h2 {

    font-family: "Manrope", sans-serif;

    font-size: clamp(38px, 5vw, 64px);

    line-height: 1.02;

    letter-spacing: -2.5px;

    font-weight: 800;
}


.contact-content h2 em {

    font-style: normal;

    color: #777b7e;

    font-weight: 600;
}


.contact-description {

    max-width: 420px;

    color: #777777;

    margin: 26px 0 35px;

    font-size: 15px;

    line-height: 1.7;
}


/* 
   CONTACT DETAILS
 */

.contact-details {

    display: flex;

    flex-direction: column;

    gap: 18px;
}


.contact-detail {

    display: flex;

    flex-direction: column;
}


.contact-detail span {

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1px;

    color: #999999;
}


.contact-detail strong {

    font-size: 13px;

    font-weight: 600;

    color: #222222;
}


/* 
   CONTACT FORM
 */

.contact-form-wrapper {

    background: #ffffff;

    border: 1px solid #e5e5e5;

    padding: 42px;
}


.contact-form {

    width: 100%;
}


/* 
   DARK BUTTON
 */

.btn-dark {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 24px;

    background: #111111;

    color: #ffffff;

    border: none;

    cursor: pointer;
}


.btn-dark:hover {

    background: #292929;
}


.contact-submit {

    margin-top: 5px;
}



/* =========================
   FOOTER
========================= */

.site-footer {

    background: #111111;

    color: #ffffff;

    padding-top: 75px;
}


/* 
   FOOTER TOP
 */

.footer-top {

    display: grid;

    grid-template-columns:
        1.6fr
        0.8fr
        0.9fr
        1fr;

    gap: 50px;

    padding-bottom: 65px;
}


/* 
   FOOTER BRAND
 */

.footer-brand p {

    max-width: 280px;

    color: #858585;

    font-size: 13px;

    line-height: 1.7;

    margin-top: 22px;
}


/* Footer logo */

.footer-logo {

    color: #ffffff;
}


.footer-logo .logo-text {

    color: #ffffff;
}


/*
   FOOTER COLUMNS
 */

.footer-column {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 10px;
}


.footer-column h4 {

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    color: #777777;

    margin-bottom: 8px;
}


.footer-column a {

    font-size: 12px;

    color: #cccccc;

    transition:
        color 0.2s ease;
}


.footer-column a:hover {

    color: #d8ff3e;
}


.footer-muted {

    font-size: 12px;

    color: #777777;
}


/* 
   FOOTER BOTTOM
 */

.footer-bottom {

    min-height: 70px;

    border-top: 1px solid #292929;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.footer-bottom p {

    color: #666666;

    font-size: 10px;
}


/* 
   LEGAL LINKS
 */

.legal-links {

    display: flex;

    align-items: center;

    gap: 22px;
}


.legal-links a {

    color: #888888;

    font-size: 10px;

    transition:
        color 0.2s ease;
}


.legal-links a:hover {

    color: #ffffff;
}

/* =====================================================
   BOOKING SERVICE GATEWAY
===================================================== */
.booking-service-gateway {
    display: flex;
    align-items: stretch;
}

.booking-gateway-card {
    width: 100%;
    padding: 42px;
    border: 1px solid #e5e5e5;
    background: #fff;
    box-sizing: border-box;
}

.booking-gateway-card h3 {
    margin: 12px 0 12px;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.08;
}

.booking-gateway-card > p:not(.eyebrow):not(.form-note) {
    max-width: 560px;
    line-height: 1.7;
    color: #555;
}

.booking-gateway-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.booking-gateway-actions .btn {
    text-decoration: none;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 16px 20px;
    border: 1px solid #111;
    color: #111;
    background: #fff;
    cursor: pointer;
}

.btn-outline:hover {
    background: #f4f4f4;
}


/* =====================================================
   COOKIE NOTICE
===================================================== */
.cookie-notice {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
}

.cookie-notice[hidden] { display: none; }

.cookie-notice-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 20px;
    background: #111;
    color: #fff;
    box-shadow: 0 20px 60px rgba(0,0,0,.22);
}

.cookie-notice-title {
    margin: 0 0 4px;
    font-weight: 800;
}

.cookie-notice-text {
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 13px;
    line-height: 1.55;
}

.cookie-notice-text a,
.cookie-link {
    color: #fff;
}

.cookie-notice-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-button {
    border: 0;
    padding: 12px 16px;
    background: #fff;
    color: #111;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.cookie-link {
    font-size: 12px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 760px) {
    .cookie-notice {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .cookie-notice-inner,
    .cookie-notice-actions {
        flex-direction: column;
        align-items: stretch;
    }
}


/* ========================================
   FINAL HOMEPAGE HERO + RESPONSIVE POLISH
======================================== */
.hero {
    min-height: clamp(620px, 78vh, 820px);
    height: auto;
    display: flex;
    align-items: center;
    position: relative;
    isolation: isolate;
}
.hero-background {
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 58%;
    background-repeat: no-repeat;
    transform: scale(1.01);
}
.hero-background::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgba(10,12,14,.74) 0%, rgba(10,12,14,.48) 42%, rgba(10,12,14,.10) 72%, rgba(10,12,14,.05) 100%),
      linear-gradient(180deg, rgba(10,12,14,.15), rgba(10,12,14,.32));
}
.hero-container {
    min-height: clamp(620px, 78vh, 820px);
    display: flex;
    align-items: center;
    padding-top: 72px;
    padding-bottom: 72px;
}
.hero-content {
    max-width: 760px;
    color: #fff;
}
.hero-content::before {
    content: "Autovermietung · Abschleppdienst · Umzug";
    display: inline-flex;
    margin-bottom: 20px;
    padding: 8px 13px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 999px;
    background: rgba(0,0,0,.20);
    backdrop-filter: blur(10px);
    color: rgba(255,255,255,.92);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.hero-content::after { content: none; }
.hero h1 { text-shadow: 0 8px 32px rgba(0,0,0,.25); }
.hero-description { color: rgba(255,255,255,.88); text-shadow: 0 3px 16px rgba(0,0,0,.18); }

@media (max-width: 860px) {
    .hero { min-height: 680px; }
    .hero-container { min-height: 680px; }
}

@media (max-width: 700px) {
    .hero { min-height: 610px; }
    .hero-container { min-height: 610px; padding-top: 48px; padding-bottom: 48px; }
    .hero-background { background-position: 62% center; }
    .hero-content { max-width: 100%; }
    .hero-content::before { font-size: 9px; letter-spacing: .10em; padding: 7px 10px; }
}

