/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    background: #020609;
    font-family:
        Arial,
        Helvetica,
        sans-serif;
}

.content {
	position: fixed;
	top: 0px;
	left: 0px;
	
	width: 100vw;
	height: 100vh;
	
	overflow-x: hidden;
	overflow-y: scroll;
}

/* HEADER */
.header {
    width: 100%;
    height: 90px;
    background: #020609;
    border-bottom: 1px solid #111820;
    display: flex;
    align-items: center;
}


.navbar {
    width: 100%;
    max-width: 1000px;
    height: 100%;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}

/* LOGO*/
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    width: 80px;
    height: auto;
    display: block;
}

/* NAVIGATION */
.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex: 1;
}

.nav-links a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.6px;
    white-space: nowrap;
    transition: color 0.25s ease, background 0.25s ease;
}

.nav-links a:hover {
    color: #2789ca;
}

.nav-links a.active {
    color: #2789ca;
}

/* NAVIGATION */
.leistung-links {
	color: #000;
	text-decoration: none;
}

.leistung-links a {
    color: #000;
}

.leistung-links a:hover {
    color: #000;
}

.leistung-links a.active {
    color: #2b77bd;
}

/* NAVIGATION */
.preise-links {
	color: #000;
	text-decoration: none;

    border-bottom:
        1px solid
        rgba(91, 112, 127, 0.45);
}

.preise-links a {
    color: #000;
}

.preise-links a:hover {
    color: #000;
}

.preise-links a.active {
    color: #2b77bd;
}

/* TERMIN BUTTON */
.appointment-btn {
    padding: 11px 16px;
    border: 1px solid #1471ae;
    border-radius: 10px;
    color: #e3e3e3;
    text-decoration: none;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.6px;
    white-space: nowrap;
    transition: background 0.25s ease, box-shadow 0.25s ease;
    flex-shrink: 0;
}

.appointment-btn:hover {
    background: #1471ae;
    box-shadow: 0 0 18px rgba(20, 113, 174, 0.35);
}

/* HAMBURGER BUTTON */
.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1px solid #1471ae;
    border-radius: 8px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    transition: background 0.25s ease;
}

.menu-toggle:hover {
    background: rgba(20, 113, 174, 0.15);
}

.menu-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    background: #e7e7e7;
    border-radius: 5px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

/* HAMBURGER → X */
.menu-toggle.open span:nth-child(1) {
    transform: translateY(7px), rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px), rotate(-45deg);
}

/* MOBILE NAVIGATION */
@media (max-width: 850px) {
    /* Navigation wird zum Dropdown */
    .nav-links {
        position: absolute;
        top: 75px;
        left: 15px;
        right: 15px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        background: #060b10;
        border: 1px solid #18232c;
        border-radius: 12px;
        overflow: hidden;
        z-index: 1000;

        /* Geschlossen */
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    }

    /* Geöffnet */
    .nav-links.open {
        max-height: 400px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links a {
        width: 100%;
        padding: 18px 20px;
        text-align: center;
        border-bottom: 1px solid #111820;
        font-size: 11px;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links a:hover {
        background: rgba(20, 113, 174, 0.1);
    }

    /* Hamburger anzeigen */
    .menu-toggle {
        display: flex;
    }

}


/* KLEINE HANDYS */
@media (max-width: 520px) {
    .navbar {
        padding: 0 15px;
        gap: 10px;
    }

    /* Logo kleiner */
	.logo img {
		width: 80px;
	}

    /* Termin Button kompakter */
    .appointment-btn {
        padding: 10px 10px;
        font-size: 8px;
        letter-spacing: 0.3px;
    }

    .menu-toggle {
        width: 38px;
        height: 38px;
    }

    .nav-links {
        left: 10px;
        right: 10px;
    }

}


/* SEHR KLEINE DISPLAYS */
@media (max-width: 390px) {
    .appointment-btn {
        display: none;
    }

    .navbar {
        justify-content: space-between;
    }

    .menu-toggle {
        margin-left: auto;
    }
}






/* HERO */
.hero {
    position: relative;
    width: 100%;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* BACKGROUND IMAGE */
.hero-background {
    position: absolute;
    inset: 0;
    background-image:url("../img/hero-car.jpg");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

/* DARK OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:linear-gradient(90deg, rgba(2, 6, 9, 0.97) 0%, rgba(2, 6, 9, 0.88) 28%, rgba(2, 6, 9, 0.45) 52%, rgba(2, 6, 9, 0.05) 75%), linear-gradient(0deg, rgba(2, 6, 9, 0.55) 0%, rgba(2, 6, 9, 0) 35%);
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 60px;
    color: white;
}


/* HEADLINE */
.hero h1 {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
}

.hero-small {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #f1f1f1;
}

.hero-large {
    margin-top: 2px;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #2e8ed3;
}

/* SUBTITLE */
.hero h2 {
    margin-bottom: 24px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #d4d4d4;
}

/* TEXT */
.hero p {
    margin-bottom: 28px;
    font-size: 14px;
    line-height: 1.6;
    color: #d0d0d0;
}

/* BUTTON */
.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    padding: 15px 28px;
    background: linear-gradient(135deg, #2d90d5, #1e6ea9);
    border-radius: 4px;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px, rgba(35, 130, 200, 0.4);
}


/* CALENDAR ICON */
.calendar-icon {
    width: 20px;
    height: 20px;
}

.calendar-icon svg {
    width: 100%;
    height: 100%;
}



/* =========================
   TABLET
========================= */

@media (max-width: 900px) {


    .hero {

        min-height: 600px;

    }


    .hero-content {

        padding:

            60px 35px;

    }


    .hero-small,
    .hero-large {

        font-size: 36px;

    }


    .hero-overlay {

        background:

            linear-gradient(
                90deg,
                rgba(2, 6, 9, 0.95) 0%,
                rgba(2, 6, 9, 0.78) 45%,
                rgba(2, 6, 9, 0.2) 100%
            );

    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {
    .hero {
        min-height: 650px;
        align-items: flex-end;
    }

    .hero-background {
        background-position: 62% center;
    }

    .hero-overlay {
        background:linear-gradient(90deg, rgba(2, 6, 9, 0.92), rgba(2, 6, 9, 0.65)), linear-gradient(0deg, rgba(2, 6, 9, 0.95) 0%, rgba(2, 6, 9, 0.25) 70%);
    }

    .hero-content {
        padding:
            45px 25px;
    }

    .hero-small,
    .hero-large {
        font-size: 30px;
        letter-spacing: 1px;
    }

    .hero h2 {
        font-size: 12px;
        line-height: 1.5;
    }

    .hero p {
        font-size: 13px;
    }

    .hero p br {
        display: none;
    }

    .hero-button {
        width: 100%;
        justify-content: center;
    }

}




/* SERVICES */
.services {
    width: 100%;
    background: #f4f4f5;
    padding: 55px 20px;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* SERVICE ITEM */
.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ICON */
.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
    color: #267db6;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

/* TITLE */
.service-item h3 {
    margin-bottom: 14px;
    color: #292d31;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* TEXT */
.service-item p {
    color: #555b61;
    font-size: 13px;
    line-height: 1.6;
}

@media (max-width: 500px) {
    .services {
        padding: 45px 20px;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .service-icon {
        width: 55px;
        height: 55px;
    }
}




/* LEISTUNGEN SECTION */
.leistungen {
    width: 100%;
    padding: 28px 20px 30px;
    background: linear-gradient(110deg, #18212a, #111820);
}

/* CONTAINER */
.leistungen-container {
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
}

/* ÜBERSCHRIFT */
.section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 18px;
}

.section-title h2 {
    color: #e1e3e5;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.8px;
}

.title-line {
    width: 32px;
    height: 2px;
    margin-top: 9px;
    background: #2789ca;
}

/* GRID */
.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* TABLET */
@media (max-width: 750px) {
    .leistungen-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* HANDY */
@media (max-width: 550px) {
    .leistungen-grid {
        grid-template-columns: 1fr;
    }
}

/* CARD */
.leistung-card {
    display: flex;
    flex-direction: column;
    min-height: 193px;
    overflow: hidden;
    text-decoration: none;
    background: #151d24;
    border: 1px solid #394650;
    border-radius: 9px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.leistung-card:hover {
    transform: translateY(-4px); border-color: #2789ca; box-shadow: 0 10px 25px, rgba(0, 0, 0, 0.35);
}

/* BILD */
.leistung-image {
    width: 100%;
    height: 116px;
    overflow: hidden;
}

.leistung-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.leistung-card:hover
.leistung-image img {
    transform: scale(1.06);
}


/* CONTENT */
.leistung-content {
    position: relative;
    flex: 1;
    padding: 16px 48px 14px 18px;
}

.leistung-content h3 {
    margin-bottom: 6px;
    color: #e2e4e6;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

.leistung-content p {
    color: #c2c7cb;
    font-size: 12px;
    line-height: 1.5;
}


/* PFEIL */
.leistung-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #2d90d5;
    font-size: 22px;
    font-weight: 300;
    transition: transform 0.25s ease;
}

.leistung-card:hover
.leistung-arrow {
    transform: translate(5px, -50%);
}




/* ÜBER UNS / KONTAKT */
.about-contact {
    width: 100%;
    padding: 30px 20px;
    background: #f3f3f4;
}

.about-contact-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
}

/* ÜBER UNS */
.about-section {
    width: 48%;
    padding-right: 35px;
}

/* SECTION HEADING */
.section-heading {
    margin-bottom: 18px;
}

.section-heading h2 {
    color: #30353a;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.heading-line {
    width: 28px;
    height: 2px;
    margin-top: 8px;
    background: #2b85c2;
}

/* ÜBER UNS TEXT */
.about-text {
    margin-bottom: 22px;
    color: #4c5359;
    font-size: 12px;
    line-height: 1.6;
}

/* VORTEILE */
.advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
}

.advantage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ICON */
.advantage-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.advantage-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

/* TITEL */
.advantage-item h3 {
    width: 100%;
    min-height: 28px;
    margin: 0 0 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #3b4146;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.4;
}

/* TEXT */
.advantage-item p {
    width: 100%;
    margin: 0;
    text-align: center;
    color: #555b60;
    font-size: 10px;
    line-height: 1.5;
}


/* TRENNLINIE */
.vertical-divider {
    width: 1px;
    background: #d3d6d8;
    margin: 0 28px;
}

/* KONTAKT */
.contact-section {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 40px;
}

.contact-info {
    min-width: 170px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

/* CONTACT ITEM */
.contact-item {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #4c5359;
    font-size: 11px;
    line-height: 1.5;
}

/* ICON */
.contact-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon img {
    width: 22px !important;
    height: 22px !important;
    max-width: 22px;
    object-fit: contain;
    display: block;
}

/* MAP */
.map {
    position: relative;
    width: 240px;
    height: 185px;
    overflow: hidden;
    border-radius: 6px;
    flex-shrink: 0;
    background: #e7e7e7;
	border: solid 1px #eaebed;
}

.map:hover {
	border: solid 1px #2977bd;
	cursor: pointer;
}

.map img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* MAP MARKER */
.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 28px;
    padding: 5px;
    transform: translate(-50%, -70%);
    background: #2b85c2;
    border-radius: 50% 50% 50% 0;
    transform: translate(-50%, -50%), rotate(-45deg);
}

.map-marker svg {
    width: 100%;
    height: 100%;
    transform: rotate(45deg);
}

/* =========================
   ÜBER UNS / KONTAKT RESPONSIVE
========================= */

@media (max-width: 750px) {

    /* Beide Bereiche untereinander */
    .about-contact-container {
        flex-direction: column;
        align-items: stretch;
    }

    /* Über Uns volle Breite */
    .about-section {
        width: 100%;
        padding-right: 0;
    }

    /* Vertikale Trennlinie entfernen */
    .vertical-divider {
        width: 100%;
        height: 1px;
        margin: 30px 0;
    }

    /* Kontaktbereich */
    .contact-section {
        width: 100%;
    }

}

@media (max-width: 550px) {

    /* Kontakt und Karte untereinander */
    .contact-section {
        flex-direction: column;
        align-items: stretch;
        gap: 30px;
    }

    /* Kontaktinformationen */
    .contact-info {
        width: 100%;
        min-width: 0;
    }

    /* Karte volle Breite */
    .map {
        width: 100%;
        height: 220px;
    }

}



/* FOOTER */
.footer {
    width: 100%;
    background:linear-gradient(90deg, #070b0f, #0b1015);
    border-top:1px solid, rgba(255, 255, 255, 0.06);
}

/* FOOTER CONTAINER */
.footer-container {
    width: 100%;
    max-width: 1100px;
    min-height: 85px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    width: 80px;
    height: auto;
    display: block;
}

/* SOCIAL MEDIA */
.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #aeb5bb;
    background: #161d24;
    border: 1px solid, rgba(255, 255, 255, 0.08);
    transition: 0.25s ease;
}

.social-icon:hover {
    color: #ffffff;
    background: #2b85c2;
    transform: translateY(-3px);
}

.social-icon svg {
    width: 15px;
    height: 15px;
}


/* COPYRIGHT */
.footer-bottom {
    width: 100%;
    text-align: center;
    padding: 0 20px 15px;
    margin-top: -60px;
    color: #747b82;
    font-size: 11px;
}




/* =========================
   KFZ HERO
========================= */

.kfz-hero {

    position: relative;

    width: 100%;

    min-height: 395px;

    overflow: hidden;

    color: #ffffff;

    background-image:

        linear-gradient(
            90deg,
            rgba(5, 9, 13, 0.98) 0%,
            rgba(5, 9, 13, 0.90) 35%,
            rgba(5, 9, 13, 0.45) 58%,
            rgba(5, 9, 13, 0.10) 100%
        ),
		
		url('../img/hero-car.jpg');

    background-size: cover;

    background-position: center;

    border-bottom:

        1px solid
        rgba(255, 255, 255, 0.15);

}


/* =========================
   BREADCRUMB
========================= */

.kfz-breadcrumb {

    position: absolute;

    top: 18px;

    left: 50%;

    transform:
        translateX(-50%);

    width: 100%;

    max-width: 940px;

    padding: 0 20px;

    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 10px;

    z-index: 2;

}


.kfz-breadcrumb a {

    color: #9aa2a9;

    text-decoration: none;

    transition:
        color 0.25s ease;

}


.kfz-breadcrumb a:hover {

    color: #2b85c2;

}


.kfz-breadcrumb span {

    color: #727b83;

    font-size: 16px;

}


.kfz-breadcrumb strong {

    color: #d7dce0;

    font-weight: 600;

}


/* =========================
   HERO CONTENT
========================= */

.kfz-hero-content {

    width: 100%;

    max-width: 940px;

    margin: 0 auto;

    padding:

        82px 20px
        40px;

}


/* =========================
   TITLE
========================= */

.kfz-hero h1 {

    margin: 0;

    font-size: 50px;

    line-height: 1;

    font-weight: 600;

    letter-spacing: 1px;

    color: #f2f3f4;

}


.kfz-hero h1 span {

    color: #3b94d4;

}


/* =========================
   SUBTITLE
========================= */

.kfz-hero h2 {

    margin:

        18px 0
        20px;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 0.3px;

    color: #d9dde0;

}


/* =========================
   TEXT
========================= */

.kfz-hero-text {

    margin: 0;

    color: #c0c6cb;

    font-size: 12px;

    line-height: 1.65;

}


/* =========================
   BENEFITS
========================= */

.kfz-benefits {

    display: flex;

    align-items: center;

    gap: 38px;

    margin-top: 32px;

}


/* =========================
   BENEFIT
========================= */

.kfz-benefit {

    display: flex;

    align-items: center;

    gap: 12px;

    color: #d8dde1;

    font-size: 10px;

    line-height: 1.6;

}


/* =========================
   ICON
========================= */

.kfz-benefit-icon {

    width: 34px;

    height: 34px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

}


.kfz-benefit-icon img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: contain;

}




/* =========================
   REPAIR SERVICES SECTION
========================= */

.repair-services {

    width: 100%;

    padding: 28px 20px;

    background:
        linear-gradient(
            90deg,
            #f4f4f5 0%,
            #ececef 100%
        );

}


.repair-container {

    width: 100%;

    max-width: 900px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 58% 38%;

    gap: 4%;

}

/* TABLET & MOBILE */
@media (max-width: 750px) {

    .repair-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

}




/* =========================
   SECTION HEADING
========================= */

.section-heading h2 {

    margin: 0;

    color: #30363b;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 0.3px;

}


.heading-line {

    width: 28px;

    height: 2px;

    margin-top: 9px;

    background: #2b85c2;

}


/* =========================
   DESCRIPTION
========================= */

.section-description {

    margin:

        12px 0
        15px;

    color: #4f555a;

    font-size: 11px;

    line-height: 1.6;

}


/* =========================
   SERVICE ITEM
========================= */

.service-item2 {

    width: 100%;

    display: flex !important;

    flex-direction: row !important;

    align-items: center;

    justify-content: space-between;

    min-height: 82px;

    padding: 10px 0;

    border-bottom: 1px solid #d7dadd;
	
	font-size: 13px;

}

.service-item3 {

    width: 100%;

    display: flex !important;

    flex-direction: row !important;

    align-items: center;

    justify-content: space-between;

    min-height: 82px;

    padding: 10px 0;

    border-bottom: 1px solid #d7dadd;
	
	font-size: 13px;

}

.service-item3:hover {
	background-color: #e4e5e7;
	
	cursor: pointer;
}


/* =========================
   SERVICE IMAGE
========================= */

.service-image {

    width: 75px;

    height: 62px;

    min-width: 75px;

    flex-shrink: 0;

    margin-right: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    border: 1px solid #d4d8dc;

    border-radius: 7px;

}


.service-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

}


/* =========================
   SERVICE CONTENT
========================= */

.service-content {

    flex: 1;

    min-width: 0;

}


.service-content h3 {

    margin: 0 0 7px;

}


.service-content p {

    margin: 0;

}


/* =========================
   ARROW
========================= */

.service-arrow {

    margin-left: 20px;

    flex-shrink: 0;

    color: #2b85c2;

    font-size: 26px;

}


/* =========================
   BUTTON
========================= */

.repair-button {

    width: fit-content;

    margin-top: 16px;

    padding:

        12px 22px;

    display: flex;

    align-items: center;

    gap: 10px;

    text-decoration: none;

    color: #ffffff;

    background:

        linear-gradient(
            90deg,
            #2b85c2,
            #236fa7
        );

    border-radius: 4px;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.5px;

    transition:

        transform 0.25s ease,
        box-shadow 0.25s ease;

}


.repair-button:hover {

    transform:
        translateY(-2px);

    box-shadow:

        0 8px 20px
        rgba(43, 133, 194, 0.25);

}


.repair-button img {

    width: 17px;

    height: 17px;

    object-fit: contain;

}


/* =========================
   RECHTE SEITE
========================= */

.services-right {

    display: flex;

    flex-direction: column;

    gap: 20px;

}


/* =========================
   WHY CARD
========================= */

.why-card {

    padding:

        28px 32px;

    border-radius: 8px;

    color: #ffffff;

    background:

        linear-gradient(
            135deg,
            #151d25,
            #11171e
        );

    box-shadow:

        0 8px 25px
        rgba(0, 0, 0, 0.08);

}


.why-card .section-heading h2 {

    color: #e6e8ea;

}


.why-list {

    margin:

        22px 0 0;

    padding: 0;

    list-style: none;

    display: flex;

    flex-direction: column;

    gap: 17px;

}


.why-list li {

    display: flex;

    align-items: center;

    gap: 12px;

    color: #c5c9cd;

    font-size: 10px;

}


.why-list img {

    width: 16px;

    height: 16px;

    object-fit: contain;

}


/* =========================
   BRANDS CARD
========================= */

.brands-card {

    padding:

        18px 25px
        25px;

    text-align: center;

    border-radius: 8px;

    background:

        linear-gradient(
            135deg,
            #eeeeef,
            #e4e5e7
        );

    box-shadow:

        0 8px 25px
        rgba(0, 0, 0, 0.04);

}


.car-brand-image {

    width: 185px;

    height: 60px;

    margin-bottom: 10px;

    object-fit: contain;

}


.brands-card h3 {

    margin:

        0 0
        10px;

    color: #363b40;

    font-size: 13px;

    font-weight: 700;

}


.brands-card p {

    margin: 0;

    color: #53595e;

    font-size: 10px;

    line-height: 1.6;

}


/* =========================
   BRAND ICONS
========================= */

.brand-icons {

    margin-top: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 23px;

}


.brand-icons img {

    width: 28px;

    height: 28px;

    object-fit: contain;

    opacity: 0.6;

    filter: grayscale(100%);

}


.brand-icons span {

    color: #92979c;

    font-size: 17px;

    letter-spacing: 3px;

}



/* =========================
   SO EINFACH GEHT'S
========================= */

.process-section {

    width: 100%;

    padding: 18px 20px 28px;

    background:
        linear-gradient(
            90deg,
            #f4f4f5 0%,
            #ebebee 100%
        );

}


/* CONTAINER */

.process-container {

    width: 100%;

    max-width: 1000px;

    margin: 0 auto;

}


/* =========================
   ÜBERSCHRIFT
========================= */

.process-heading {

    margin-bottom: 12px;

}


.process-heading h2 {

    margin: 0;

    color: #343a3f;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 0.3px;

}


.heading-line {

    width: 27px;

    height: 2px;

    margin-top: 8px;

    background: #2b85c2;

}


/* =========================
   SCHRITTE
========================= */

.process-steps {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


/* =========================
   EINZELNER SCHRITT
========================= */

.process-step {

    width: 190px;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

}


/* =========================
   ZAHL
========================= */

.step-number {

    width: 25px;

    height: 25px;

    margin-bottom: 5px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #4c5964;

    background: #e2e5e8;

    border: 1px solid #cbd1d6;

    box-shadow:
        0 2px 5px
        rgba(0, 0, 0, 0.08);

    font-size: 11px;

    font-weight: 600;

}


/* =========================
   ICON
========================= */

.step-icon {

    width: 42px;

    height: 42px;

    margin-bottom: 8px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.step-icon img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: contain;

}


/* =========================
   TITLE
========================= */

.process-step h3 {

    margin:
        0 0 8px;

    color: #353b40;

    font-size: 11px;

    font-weight: 700;

}


/* =========================
   TEXT
========================= */

.process-step p {

    margin: 0;

    color: #565d63;

    font-size: 9px;

    line-height: 1.7;

}


/* =========================
   PFEILE
========================= */

.process-arrow {

    margin: 0 10px;

    color: #78818a;

    font-size: 25px;

    font-weight: 300;

    transform:
        translateY(-12px);

}

@media (max-width: 750px) {

    .process-steps {

        flex-direction: column;

        gap: 15px;

    }


    .process-step {

        width: 100%;

    }


    .process-arrow {

        margin: 0;

        transform:
            rotate(90deg);

    }

}





/* =========================
   HERO 3
========================= */

.hero3 {

    position: relative;

    width: 100%;

    min-height: 375px;

    overflow: hidden;

    display: flex;

    align-items: center;

    background-image:

        url("../img/hero-car.jpg");

    background-size: cover;

    background-position: center;

}


/* =========================
   DUNKLER VERLAUF
========================= */

.hero3-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(2, 7, 12, 0.98) 0%,
            rgba(2, 7, 12, 0.94) 30%,
            rgba(2, 7, 12, 0.62) 52%,
            rgba(2, 7, 12, 0.12) 78%,
            rgba(2, 7, 12, 0.20) 100%
        );

    z-index: 1;

}


/* =========================
   INHALT
========================= */

.hero3-content {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 940px;

    margin: 0 auto;

    padding: 0 20px;

    color: #ffffff;

}


/* =========================
   LABEL
========================= */

.hero3-label {

    margin-bottom: 12px;

    color: #3d95d3;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 0.5px;

}


/* =========================
   ÜBERSCHRIFT
========================= */

.hero3 h1 {

    margin: 0;

    font-size: 42px;

    line-height: 1.1;

    font-weight: 700;

    letter-spacing: 1px;

}


.hero3-title-white {

    color: #f1f2f3;

}


.hero3-title-blue {

    color: #3d95d3;

}


/* =========================
   TEXT
========================= */

.hero3 p {

    margin:

        22px 0
        0;

    color: #d0d4d7;

    font-size: 16px;

    line-height: 1.7;

}




/* =========================
   IMPRESSUM DETAILS
========================= */

.impressum-details {

    width: 100%;

    background:
        linear-gradient(
            135deg,
            #111a22 0%,
            #0a1117 100%
        );

    color: #d5d9dc;

    padding: 35px 20px 30px;

}


/* =========================
   CONTAINER
========================= */

.impressum-container {

    width: 100%;

    max-width: 890px;

    margin: 0 auto;

}


/* =========================
   EINTRAG
========================= */

.impressum-row {

    display: flex;

    align-items: flex-start;

    gap: 28px;

    padding:

        0 0
        26px;

    margin-bottom: 20px;

    border-bottom:

        1px solid
        rgba(130, 155, 170, 0.30);

}

.impressum-row2 {
    display: flex;
    justify-content: center; /* horizontal */
    align-items: center;     /* vertikal */

    gap: 0;
    padding: 0;
    margin-bottom: 20px;

    border-bottom: 1px solid rgba(130, 155, 170, 0.30);
}

.impressum-row2 img {
    display: block;
    margin: 0 auto;
}


/* Letzter Eintrag ohne Linie */

.impressum-row-last {

    border-bottom: none;

    margin-bottom: 0;

}


/* =========================
   ICON
========================= */

.impressum-icon {

    width: 72px;

    height: 72px;

    min-width: 72px;

    border-radius: 50%;

    border:

        1px solid
        #2586c4;

    display: flex;

    align-items: center;

    justify-content: center;

}


.impressum-icon img {

    width: 38px;

    height: 38px;

    object-fit: contain;

    display: block;

}


/* =========================
   CONTENT
========================= */

.impressum-content {

    flex: 1;

    min-width: 0;

}


.impressum-content h2 {

    margin:

        2px 0
        14px;

    color: #3d94d1;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 0.6px;

}


/* =========================
   TEXT
========================= */

.impressum-content p {

    margin:

        0 0
        7px;

    color: #cbd0d4;

    font-size: 14px;

    line-height: 1.55;

}


/* =========================
   ERSTER BEREICH
========================= */

.impressum-contact-grid {

    display: grid;

    grid-template-columns:

        1fr
        1fr;

    gap: 60px;

}

/* IMPRESSUM RESPONSIVE */
@media (max-width: 600px) {

    .impressum-contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

}


/* =========================
   KONTAKT
========================= */

.impressum-contact {

    display: flex;

    flex-direction: column;

    gap: 15px;

    padding-top: 2px;

}


.impressum-contact div {

    display: flex;

    align-items: center;

    gap: 15px;

    color: #cbd0d4;

    font-size: 14px;

}


.impressum-contact img {

    width: 18px;

    height: 18px;

    object-fit: contain;

    display: block;

}




/* =========================
   KONTAKT SECTION
========================= */

.contact-section2 {

    width: 100%;

    padding: 32px 20px 28px;

    background:

        linear-gradient(
            135deg,
            #111a22 0%,
            #091016 100%
        );

    color: #ffffff;

}


/* =========================
   CONTAINER
========================= */

.contact-container {

    width: 100%;

    max-width: 930px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.7fr 1fr;

    gap: 32px;

}


/* =========================
   HEADING
========================= */

.contact-heading {

    margin-bottom: 22px;

}


.contact-heading > span {

    display: block;

    margin-bottom: 8px;

    color: #3b91cf;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.5px;

}


.contact-heading h1 {

    margin: 0;

    color: #f1f2f3;

    font-size: 32px;

    line-height: 1.1;

    letter-spacing: 0.7px;

}


.contact-heading h1 strong {

    color: #3b91cf;

    font-weight: 700;

}


.contact-heading p {

    margin:

        10px 0
        0;

    color: #d0d4d7;

    font-size: 14px;

}


/* =========================
   FORMULAR
========================= */

.contact-form {

    padding:

        20px;

    border-radius: 6px;

    background:

        linear-gradient(
            135deg,
            rgba(28, 40, 50, 0.95),
            rgba(20, 29, 37, 0.95)
        );

    box-shadow:

        0 10px 30px
        rgba(0, 0, 0, 0.12);

}


/* =========================
   FORM ROW
========================= */

.form-row {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 14px;

}


/* =========================
   FORM GROUP
========================= */

.form-group {

    display: flex;

    flex-direction: column;

    margin-bottom: 14px;

}


.form-group label {

    margin-bottom: 6px;

    color: #c7ccd0;

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 0.5px;

}


/* =========================
   INPUTS
========================= */

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    box-sizing: border-box;

    border:

        1px solid
        #2c3d4b;

    border-radius: 6px;

    outline: none;

    color: #e5e8ea;

    background:

        rgba(20, 30, 38, 0.75);

    font-family: inherit;

    font-size: 13px;

    transition:

        border-color 0.25s ease,
        box-shadow 0.25s ease;

}


.form-group input,
.form-group select {

    height: 42px;

    padding:
        0 13px;

}


.form-group textarea {

    height: 87px;

    padding:
        12px 13px;

    resize: vertical;

}


/* PLACEHOLDER */

.form-group input::placeholder,
.form-group textarea::placeholder {

    color: #b3bac0;

    opacity: 1;

}


/* FOCUS */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color:
        #2d85c2;

    box-shadow:

        0 0 0 3px
        rgba(45, 133, 194, 0.08);

}


/* SELECT */

.form-group select {

    appearance: none;

    cursor: pointer;

    background-image:

        linear-gradient(
            45deg,
            transparent 50%,
            #aeb6bc 50%
        ),

        linear-gradient(
            135deg,
            #aeb6bc 50%,
            transparent 50%
        );

    background-position:

        calc(100% - 17px) 17px,
        calc(100% - 12px) 17px;

    background-size:

        5px 5px,
        5px 5px;

    background-repeat:
        no-repeat;

}


/* =========================
   DATENSCHUTZ CHECKBOX
========================= */

.privacy-checkbox {

    display: flex;

    align-items: center;

    gap: 9px;

    margin:

        3px 0
        18px;

    cursor: pointer;

    color: #c5cbd0;

    font-size: 11px;

}


.privacy-checkbox input {

    display: none;

}


.custom-checkbox {

    width: 17px;

    height: 17px;

    min-width: 17px;

    border:

        1px solid
        #314350;

    border-radius: 4px;

    background:
        #17222b;

}


.privacy-checkbox input:checked
+ .custom-checkbox {

    background:
        #2d85c2;

    border-color:
        #2d85c2;

}


.privacy-checkbox a {

    color:
        #3b91cf;

    text-decoration: none;

}


/* =========================
   SEND BUTTON
========================= */

.contact-submit {

    width: 100%;

    height: 41px;

    border: none;

    border-radius: 4px;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 11px;

    color: #ffffff;

    background:

        linear-gradient(
            90deg,
            #2d86c5,
            #226ca7
        );

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.5px;

    transition:

        transform 0.2s ease,
        box-shadow 0.2s ease;

}


.contact-submit:hover {

    transform:
        translateY(-2px);

    box-shadow:

        0 7px 20px
        rgba(43, 133, 194, 0.25);

}


.contact-submit img {

    width: 16px;

    height: 16px;

    object-fit: contain;

}


/* =========================
   RECHTE SEITE
========================= */

.contact-right {

    display: flex;

    flex-direction: column;

    gap: 5px;

}


/* =========================
   INFO CARD
========================= */

.contact-info-card, .contact-info-card2 {

    min-height: 74px;

    padding:

        12px 18px;

    display: flex;

    align-items: center;

    gap: 15px;

    border:

        1px solid
        rgba(54, 71, 83, 0.45);

    border-radius: 6px;

    background:

        linear-gradient(
            135deg,
            rgba(24, 34, 42, 0.95),
            rgba(20, 28, 35, 0.95)
        );

}

.contact-info-card2:hover  {
	border: 1px solid #2977bd;
	
	cursor: pointer;
}


.contact-card-icon {

    width: 56px;

    height: 56px;

    min-width: 56px;

    border-radius: 50%;

    border:

        1px solid
        #2586c4;

    display: flex;

    align-items: center;

    justify-content: center;

}


.contact-card-icon img {

    width: 28px;

    height: 28px;

    object-fit: contain;

    display: block;

}


.contact-info-card h3, .contact-info-card2 h3 {

    margin:

        0 0
        7px;

    color: #dce0e3;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.4px;

}


.contact-info-card p, .contact-info-card2 p {

    margin: 0;

    color: #d1d5d8;

    font-size: 14px;

    line-height: 1.55;

}


/* =========================
   SCHNELLE TERMINANFRAGE
========================= */

.quick-request {

    min-height: 86px;

    margin-top: 9px;

    padding:

        18px 22px;

    display: flex;

    align-items: center;

    gap: 18px;

    border:

        1px solid
        #226fae;

    border-radius: 5px;

    background:

        linear-gradient(
            110deg,
            #163f67,
            #1b243c
        );

}


.quick-request-icon {

    width: 52px;

    height: 52px;

    min-width: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.quick-request-icon img {

    width: 100%;

    height: 100%;

    object-fit: contain;

}


.quick-request h2 {

    margin:

        0 0
        8px;

    color: #f0f2f3;

    font-size: 15px;

    font-weight: 600;

}


.quick-request p {

    margin: 0;

    color: #d0d5d9;

    font-size: 12px;

    line-height: 1.55;

}

@media (max-width: 800px) {

    .contact-container {

        grid-template-columns:
            1fr;

        gap: 30px;

    }


    .contact-right {

        display: grid;

        grid-template-columns:
            1fr 1fr;

        gap: 10px;

    }


    .quick-request {

        grid-column:
            1 / -1;

    }

}


@media (max-width: 550px) {

    .contact-section {

        padding:
            30px 15px;

    }


    .contact-heading h1 {

        font-size: 27px;

    }


    .form-row {

        grid-template-columns:
            1fr;

        gap: 0;

    }


    .contact-right {

        grid-template-columns:
            1fr;

    }


    .contact-form {

        padding: 16px;

    }


    .privacy-checkbox {

        align-items:
            flex-start;

        line-height: 1.5;

    }

}




/* FEHLER BEI INPUT FELDERN */

.input-error {

    border-color: #d9534f !important;

    box-shadow:
        0 0 0 3px
        rgba(217, 83, 79, 0.12);

}


/* FEHLER BEI CHECKBOX */

.checkbox-error .custom-checkbox {

    border-color: #d9534f;

    box-shadow:

        0 0 0 3px
        rgba(217, 83, 79, 0.12);

}




/* =========================
   PREISE SECTION
========================= */

.prices-section {

    width: 100%;

    padding: 28px 20px 14px;

    box-sizing: border-box;

    background:
        linear-gradient(
            135deg,
            #111a22 0%,
            #080f14 100%
        );

    color: #ffffff;

}


/* =========================
   CONTAINER
========================= */

.prices-container {

    width: 100%;

    max-width: 940px;

    margin: 0 auto;

}


/* =========================
   ÜBERSCHRIFT
========================= */

.prices-heading {

    text-align: center;

    margin-bottom: 10px;

}


.prices-heading h2 {

    margin: 0;

    color: #e6e9eb;

    font-size: 20px;

    font-weight: 700;

    letter-spacing: 0.4px;

}


.prices-heading-line {

    width: 30px;

    height: 2px;

    margin: 9px auto 0;

    background: #2c86c4;

}


/* =========================
   PREISLISTE
========================= */

.price-list {

    width: 100%;

    border:
        1px solid
        rgba(91, 112, 127, 0.45);

}


/* =========================
   PREIS ZEILE
========================= */

.price-row {

    min-height: 64px;

    display: grid;

    grid-template-columns:
        250px
        1fr
        145px;

    align-items: center;

    padding: 0 18px;

    box-sizing: border-box;

    border-bottom:

        1px solid
        rgba(91, 112, 127, 0.45);

}

.price-row:last-child {

    border-bottom: none;

}

.price-row2 {
    min-height: 64px;

    display: grid;

    grid-template-columns: 1fr 145px;

    align-items: center;

    padding: 0 18px;

    box-sizing: border-box;

    border-bottom:
        1px solid
        rgba(91, 112, 127, 0.45);

}

.price-row2:hover {
	background-color: rgba(91, 112, 127, 0.45);
	
	cursor: pointer;
}

.preise-links:last-child .price-row2 {

    border-bottom: none;

}

.price-row3 {
    min-height: 64px;

    display: grid;

    grid-template-columns: 1fr 145px;

    align-items: center;

    padding: 0 18px;

    box-sizing: border-box;

    border-bottom:
        1px solid
        rgba(91, 112, 127, 0.45);
}

.price-row3:last-child {

    border-bottom: none;

}

.price-row4 {
    min-height: 64px;

    display: grid;

    grid-template-columns:
        minmax(120px, 1fr)
        minmax(140px, 1.2fr)
        minmax(80px, auto);

    align-items: center;

    padding: 0 18px;

    box-sizing: border-box;

    border-bottom: 1px solid rgba(91, 112, 127, 0.45);
}

.price-row4:last-child {

    border-bottom: none;

}

@media (max-width: 500px) {

    .price-row4 {
        grid-template-columns:
            minmax(110px, 1fr)
            minmax(110px, 1fr)
            auto;

        padding: 0 10px;
    }

    .price-service {
        gap: 10px;
    }

    .price-service h3 {
        font-size: 11px;
    }

    .price-description {
        padding: 8px 8px;
    }

    .price-description p {
        font-size: 11px;
    }

    .price-description span {
        font-size: 10px;
    }

    .price {
        font-size: 11px;
        white-space: nowrap;
    }

}


/* =========================
   SERVICE
========================= */

.price-service {

    display: flex;

    align-items: center;

    gap: 18px;

}


.price-service h3 {

    margin: 0;

    color: #d8dcdf;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.3px;

}


/* =========================
   ICON
========================= */

.price-icon {

    width: 44px;

    height: 44px;

    min-width: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.price-icon img {

    width: 36px;

    height: 36px;

    display: block;

    object-fit: contain;

}


/* =========================
   BESCHREIBUNG
========================= */

.price-description {

    padding:

        8px 15px;

}


.price-description p {

    margin:

        0 0
        5px;

    color: #d2d6d9;

    font-size: 12px;

    line-height: 1.4;

}


.price-description span {

    color: #b8bec3;

    font-size: 11px;

    line-height: 1.4;

}


/* =========================
   PREIS
========================= */

.price {

    text-align: right;

    color: #3c94d1;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 0.4px;

}


/* =========================
   HINWEIS
========================= */

.prices-note {

    margin-top: 14px;

    padding:

        13px 20px;

    display: flex;

    align-items: center;

    gap: 18px;

    border:

        1px solid
        rgba(62, 89, 108, 0.55);

    border-radius: 7px;

    background:

        linear-gradient(
            135deg,
            rgba(27, 40, 50, 0.9),
            rgba(20, 29, 36, 0.9)
        );

}


.prices-note-icon {

    width: 52px;

    height: 52px;

    min-width: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.prices-note-icon img {

    width: 50px;

    height: 50px;

    display: block;

    object-fit: contain;

}


/* =========================
   HINWEIS TEXT
========================= */

.prices-note-content h3 {

    margin:

        0 0
        6px;

    color: #3b91cf;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.5px;

}


.prices-note-content p {

    margin:

        0 0
        4px;

    color: #c8cdd1;

    font-size: 11px;

    line-height: 1.5;

}


.prices-note-content p:last-child {

    margin-bottom: 0;

}




/* =========================
   STANDORT SECTION
========================= */

.location-section {

    width: 100%;

    padding: 27px 20px 25px;

    box-sizing: border-box;

    background:

        linear-gradient(
            90deg,
            #f2f3f4 0%,
            #e9eaec 100%
        );

}


/* =========================
   CONTAINER
========================= */

.location-container {

    width: 100%;

    max-width: 930px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        0.75fr 1.25fr;

    align-items: center;

    gap: 45px;

}


/* =========================
   TEXT
========================= */

.location-label {

    display: block;

    margin-bottom: 9px;

    color: #2f7eae;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 0.5px;

}


.location-content h2 {

    margin: 0;

    color: #2d343a;

    font-size: 27px;

    font-weight: 700;

    letter-spacing: 0.7px;

}


.location-content h2 span {

    color: #347fb6;

}


/* =========================
   BLAUE LINIE
========================= */

.location-line {

    width: 43px;

    height: 2px;

    margin:

        16px 0
        18px;

    background:
        #287bb3;

}


/* =========================
   BESCHREIBUNG
========================= */

.location-content p {

    margin: 0;

    color: #4d555b;

    font-size: 14px;

    line-height: 1.65;

}


/* =========================
   KARTE
========================= */

.location-map {

    width: 100%;

    height: 232px;

    overflow: hidden;

    border-radius: 8px;

    background:
        #e5e7e9;

    box-shadow:

        0 5px 18px
        rgba(0, 0, 0, 0.04);

	border: solid 1px #eaebed;
}

.location-map:hover {
	border: solid 1px #2977bd;
	cursor: pointer;
}


.location-map img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

}


@media (max-width: 700px) {

    .location-section {

        padding:
            35px 18px;

    }


    .location-container {

        grid-template-columns:
            1fr;

        gap: 28px;

    }


    .location-map {

        height: 250px;

    }

}


@media (max-width: 450px) {

    .location-content h2 {

        font-size: 23px;

    }


    .location-content p {

        font-size: 13px;

    }


    .location-map {

        height: 200px;

    }

}




/* =========================
   GOOGLE KALENDER
========================= */

.website-calendar {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 80px 25px;
    color: #ffffff;
}


/* HEADER */

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 35px;
}

.calendar-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #1179cb;
    margin-bottom: 10px;
}

.calendar-header h2 {
    font-size: clamp(30px, 4vw, 50px);
    margin: 0 0 10px;
    font-weight: 800;
}

.calendar-header p {
    margin: 0;
    color: #aaaaaa;
    font-size: 16px;
}


/* NAVIGATION */

.calendar-navigation {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #181818;
    padding: 10px;
    border-radius: 12px;
}

.calendar-navigation h3 {
    min-width: 180px;
    text-align: center;
    margin: 0;
    font-size: 18px;
}

.calendar-navigation button {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 8px;
    background: #252525;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    transition: 0.2s;
}

.calendar-navigation button:hover {
    background: #1179cb;
}


/* KALENDER BOX */

.calendar-box {
    background: #161616;
    border: 1px solid #292929;
    border-radius: 16px;
    padding: 25px;
    overflow: hidden;
}


/* WOCHENTAGE */

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 10px;
}

.calendar-weekdays div {
    text-align: center;
    color: #888888;
    font-size: 13px;
    font-weight: 700;
    padding: 15px 5px;
}


/* TAGE */

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day {
    position: relative;
    min-height: 110px;
    padding: 15px;
    background: #202020;
    border: 1px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s;
}

.calendar-day:hover {
    border-color: #1179cb;
    transform: translateY(-2px);
}

.calendar-day.empty {
    opacity: 0.2;
    cursor: default;
}

.calendar-day.empty:hover {
    transform: none;
    border-color: transparent;
}

.calendar-day.today {
    border-color: #1179cb;
}

.day-number {
    font-weight: 700;
    font-size: 15px;
}


/* EVENTS */

.event-indicator {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;

    padding: 7px 8px;

    background: rgba(227, 6, 19, 0.15);
    border-left: 3px solid #e30613;

    color: #ffffff;

    font-size: 11px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    border-radius: 4px;
}


/* LEGENDE */

.calendar-info {
    display: flex;
    gap: 25px;
    margin-top: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #aaaaaa;
    font-size: 14px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.available {
    background: #555555;
}

.busy {
    background: #e30613;
}


/* MODAL */

.event-modal {
    position: fixed;
    inset: 0;

    display: none;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.8);

    padding: 20px;

    z-index: 9999;
}

.event-modal.active {
    display: flex;
}

.event-modal-content {
    position: relative;

    width: 100%;
    max-width: 550px;

    background: #181818;

    border: 1px solid #333333;

    border-radius: 15px;

    padding: 35px;
}

.close-modal {
    position: absolute;

    top: 15px;
    right: 20px;

    border: none;
    background: none;

    color: #ffffff;

    font-size: 32px;

    cursor: pointer;
}

.event-item {
    padding: 15px;
    margin-top: 12px;

    background: #222222;

    border-left: 3px solid #e30613;

    border-radius: 6px;
}

.event-time {
    color: #e30613;
    font-size: 13px;
    font-weight: 700;
}

.event-title {
    margin-top: 5px;
    font-size: 16px;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .calendar-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .calendar-navigation {
        width: 100%;
        justify-content: space-between;
    }

}


@media (max-width: 650px) {

    .website-calendar {
        padding: 50px 15px;
    }

    .calendar-box {
        padding: 10px;
    }

    .calendar-day {
        min-height: 65px;
        padding: 8px;
    }

    .calendar-weekdays div {
        font-size: 11px;
        padding: 10px 2px;
    }

    .event-indicator {
        display: none;
    }

    .day-number {
        font-size: 13px;
    }

}




/* =========================
   EMPFOHLENE LEISTUNGEN
========================= */

.suggestions-section {

    width: 100%;

    padding: 28px 20px 38px;

    box-sizing: border-box;

    background:
        linear-gradient(
            135deg,
            #111a22 0%,
            #090f14 100%
        );

}


/* =========================
   CONTAINER
========================= */

.suggestions-container {

    width: 100%;

    max-width: 980px;

    margin: 0 auto;

}


/* =========================
   ÜBERSCHRIFT
========================= */

.suggestions-heading {

    text-align: center;

    margin-bottom: 23px;

}


.suggestions-heading h2 {

    margin: 0;

    color: #d9dde0;

    font-size: 16px;

    font-weight: 500;

    letter-spacing: 2px;

}


/* =========================
   GRID
========================= */

.suggestions-grid {

    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 13px;

}


/* =========================
   KARTE
========================= */

.suggestion-card {

    min-height: 225px;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    border:

        1px solid
        rgba(78, 101, 118, 0.8);

    border-radius: 7px;

    background:

        linear-gradient(
            145deg,
            #111a22,
            #0c141b
        );

    text-decoration: none;

    transition:

        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;

}


/* HOVER */

.suggestion-card:hover {

    transform:
        translateY(-5px);

    border-color:
        #2586c4;

    box-shadow:

        0 10px 25px
        rgba(0, 0, 0, 0.3);

}


/* =========================
   BILD
========================= */

.suggestion-image {

    width: 100%;

    height: 125px;

    overflow: hidden;

}


.suggestion-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.4s ease;

}


.suggestion-card:hover
.suggestion-image img {

    transform:
        scale(1.05);

}


/* =========================
   INHALT
========================= */

.suggestion-content {

    flex: 1;

    padding:

        18px 13px
        15px;

    position: relative;

}


.suggestion-content h3 {

    margin: 0;

    color: #d7dbde;

    font-size: 12px;

    font-weight: 500;

    line-height: 1.4;

}


.suggestion-arrow {

    position: absolute;

    right: 14px;

    bottom: 14px;

    color: #2586c4;

    font-size: 21px;

    font-weight: 300;

    transition:
        transform 0.25s ease;

}


.suggestion-card:hover
.suggestion-arrow {

    transform:
        translateX(5px);

}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .suggestions-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }

}


@media (max-width: 600px) {

    .suggestions-section {

        padding:
            28px 15px;

    }


    .suggestions-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 12px;

    }


    .suggestion-card {

        min-height: 220px;

    }

}


@media (max-width: 400px) {

    .suggestions-grid {

        grid-template-columns:
            1fr;

    }


    .suggestion-image {

        height: 160px;

    }

}




/* FOOTER LINKS & COPYRIGHT */
.footer-bottom {
    width: 100%;
    text-align: center;
    padding: 0 20px 15px;
    color: #747b82;
    font-size: 11px;
}

/* LINKS */
.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.footer-links a {
    color: #aeb5bb;
    text-decoration: none;
    font-size: 11px;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: #2789ca;
}

.footer-links span {
    color: #3d464e;
}

/* COPYRIGHT */
.footer-copyright {
    color: #747b82;
    font-size: 11px;
}




/* =========================
   GALERIE
========================= */

.gallery-section {
    width: 100%;
    background: #050b11;

    /* Abstand oben und unten */
    padding: 70px 20px;
}

.gallery-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}


/* =========================
   ÜBERSCHRIFT
========================= */

.gallery-heading {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-heading > span {
    display: block;
    margin-bottom: 8px;

    color: #2d90d5;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.gallery-heading h2 {
    margin: 0;

    color: #f1f2f3;

    font-size: 30px;
    font-weight: 600;
}

.gallery-heading h2 strong {
    color: #2d90d5;
}

.gallery-heading .heading-line {
    margin: 14px auto;
}

.gallery-heading p {
    max-width: 600px;
    margin: 0 auto;

    color: #aeb6bc;

    font-size: 13px;
    line-height: 1.6;
}


/* =========================
   BILDER GALERIE
========================= */

.gallery {
    display: grid;

    /* Bilder behalten ihre feste Größe */
    grid-template-columns: repeat(auto-fit, 140px);

    justify-content: center;

    gap: 12px;

    width: 100%;
    margin: 0 auto;
}


/* Einzelnes Bild */

.gallery-item {
    display: block;

    /* FESTE GRÖSSE */
    width: 140px;
    height: 140px;

    overflow: hidden;

    background: #0b1118;

    border: 1px solid rgba(255, 255, 255, 0.08);

    cursor: pointer;
}


/* Bild */

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.4s ease,
                filter 0.4s ease;
}


.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}


/* NAVIGATION */
.footer-links {
	color: #ffffff;
	text-decoration: none;
}

.footer-links:hover {
    color: #147bcb;
}
