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

body {
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
	background-color: #ffffff;
}

header {
	position: fixed;
	top: 0;
	z-index: 100;
	background: #ffffff;
	border-bottom: 3px solid #C8151B;
	box-shadow: 0 2px 8px #00000014;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 5vw;
	height: 72px;
	width: 100%
}

header a {
	color: #000000;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0;
	line-height: 1;
}

.logo a {
	text-decoration: none;
}

.logo-taxi {
	font-weight: 900;
	font-size: clamp(1.7rem, 3.5vw, 2.4rem);
	color: #000000;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.logo-ruf {
	font-weight: 900;
	font-size: clamp(1.7rem, 3.5vw, 2.4rem);
	color: #C8151B;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-left: 6px;
}

.logo-num {
	color: #C8151B;
	font-size: clamp(0.85rem, 1.8vw, 1.15rem);
	margin-left: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	border-left: 2px solid #e8e8e8;
	padding-left: 14px;
}

#menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#menu > ul {
    display: flex;
}

#menu li {
    position: relative;
}

#menu a {
    display: block;
    text-decoration: none;
}

.dropdown.open .submenu {
    display: block;
}

.menu_link {
	padding: 0px 10px;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: white;
    border: 1px solid #ccc;
    z-index: 1000;
}

.submenu a {
	white-space: nowrap;
	padding: 10px 15px;
}

.sm_hover:hover {
		background-color: #C8151B;
}

.dropdown:hover .submenu {
    display: block;
}

#header_link {
	display: flex;
	align-items: center;
	gap: 10px;
}

.social_link {
	color: #000000;
	display: flex;
	align-items: center;
	transition: color .2s;
}

.social_link_instagram, .social_link_mail, .social_link_facebook, .whatsapp_link {
    color: #000000;
    transition: color 0.2s ease;
}


.whatsapp_link:hover {
	color: #00DB40;
}

.social_link_instagram:hover, .social_link_mail:hover {
    color: #E1306C;
}

.social_link_facebook:hover {
    color: #1877F2;
}

.whatsapp {
    width: 22px;
    height: 22px;
    display: inline-block;
    background-color: currentColor;
    -webkit-mask: url('../images/whatsapp.svg') no-repeat center;
    mask: url('../images/whatsapp.svg') no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.instagram {
    width: 22px;
    height: 22px;
    display: inline-block;
    background-color: currentColor;
    -webkit-mask: url('../images/instagram.svg') no-repeat center;
    mask: url('../images/instagram.svg') no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.facebook {
    width: 22px;
    height: 22px;
    display: inline-block;
    background-color: currentColor;
    -webkit-mask: url('../images/facebook.svg') no-repeat center;
    mask: url('../images/facebook.svg') no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.mail {
    width: 22px;
    height: 22px;
    display: inline-block;
    background-color: currentColor;
    -webkit-mask: url('../images/mail.svg') no-repeat center;
    mask: url('../images/mail.svg') no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.cta-header {
	background: #C8151B;
	color: #ffffff;
	padding: 10px 24px;
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	border: none;
	cursor: pointer;
	text-decoration: none;
	transition: background .2s, opacity .2s;
}

.cta-header:hover {
	opacity: .85;
}

#contact_burger {
	display: none;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: #000000;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    width: 40px;
    height: 40px;
}

main {
    flex:1;
	text-align: center;
	margin-top: 72px;
}

.hero {
	text-align: left;
	background: #ffffff;
	padding: 64px 8vw 60px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	position: relative;
	overflow: hidden;
}

.hero::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 220px;
	height: 220px;
	background: #C8151B;
	clip-path: polygon(100% 0, 0% 0, 100% 100%);
	opacity: 1;
}

.hero-eyebrow {
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #C8151B;
	margin-bottom: 14px;
	animation: fadeUp .5s ease both;
}

.hero-title {
	font-size: clamp(2.8rem, 7vw, 6rem);
	font-weight: 900;
	line-height: 1;
	color: #000000;
	text-transform: uppercase;
	animation: fadeUp .55s ease both .05s;
}

.hero-title .red {
	color: #C8151B;
}

.hero-sub-line {
	font-size: clamp(1rem, 2.2vw, 1.4rem);
	font-weight: 700;
	color: #C8151B;
	margin-top: 10px;
	letter-spacing: 0.5px;
	animation: fadeUp .55s ease both .1s;
}

.hero-desc {
	font-size: 1rem;
	color: #555555;
	max-width: 540px;
	margin-top: 16px;
	line-height: 1.65;
	animation: fadeUp .55s ease both .15s;
}

.hero-phone {
	margin-top: 28px;
	animation: fadeUp .55s ease both .2s;
}

.hero-phone a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 900;
	color: #C8151B;
	text-decoration: none;
	letter-spacing: 2px;
}

.hero-phone a:hover {
	opacity: .8;
}

.hero-phone-label {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #555555;
	margin-bottom: 4px;
}

.hero-btns {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 28px;
	animation: fadeUp .55s ease both .25s;
}

.festnetz {
	font-size: 250%;
}

.btn-red {
	background: #C8151B;
	color: #ffffff;
	padding: 13px 32px;
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	text-decoration: none;
	display: inline-block;
	border: 2px solid #C8151B;
	transition: all .2s;
}

.btn-red:hover {
	background: #ffffff;
	color: #C8151B;
}

.btn-outline {
	border: 2px solid #000000;
	color: #000000;
	padding: 13px 32px;
	font-weight: 700;
	font-size: 0.95rem;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	text-decoration: none;
	display: inline-block;
	transition: all .2s;
}

.btn-outline:hover {
	background: #000000;
	color: #ffffff;
}

 .red-strip {
	background: #C8151B;
	padding: 16px 8vw;
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	align-items: stretch;
}

.red-strip-item {
	color: #ffffff;
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	padding: 4px 28px 4px 0;
	margin-right: 28px;
	display: flex;
	align-items: center;
	gap: 7px;
}

.red-strip-item:last-child {
	border-right: none;
	margin-right: 0;
}

.section-outer {
	padding: 72px 8vw;
}

.section-eyebrow {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #C8151B;
	margin-bottom: 8px;
	text-align: left;
}

.section-title {
	font-size: clamp(1.7rem, 4vw, 3rem);
	font-weight: 900;
	text-transform: uppercase;
	line-height: 1.05;
	margin-bottom: 44px;
	color: #000000;
	text-align: left;
}

.section-title .red {
	color: #C8151B;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 1px;
	background: #dddddd;
	border: 1px solid #dddddd;
}

.service-card {
	background: #ffffff;
	padding: 28px 26px;
	border-top: 3px solid transparent;
	transition: border-color .2s, background .2s;
}

.service-card:hover {
	border-top-color: #C8151B;
	background: #fff8f8;
}

.sc-icon {
	font-size: 1.8rem;
	margin-bottom: 12px;
}

.sc-title {
	font-weight: 900;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 6px;
	color: #000000;
}

.sc-desc {
	color: #555555;
	font-size: 0.88rem;
	line-height: 1.6;
}

.service-card.highlight .sc-title {
	color: #C8151B;
}

.section-outer.gray-bg {
	background: #F7F7F7;
	border-top: 1px solid #DDDDDD
}

.krank-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: start;
}

.krank-tag {
	display: inline-block;
	background: #C8151B;
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	padding: 5px 14px;
	margin-bottom: 14px;
}

.krank-list {
	list-style: none;
	margin-top: 20px;
}

.krank-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 10px 0;
	border-bottom: 1px solid #DDDDDD;
	font-size: 0.95rem;
	color: #000000;
	line-height: 1.4;
}

.krank-list li::before {
	content: '✓';
	color: #C8151B;
	font-weight: 900;
	font-size: 1rem;
	flex-shrink: 0;
}

.krank-list li:last-child {
	border-bottom: none;
}

.krank-box {
	border: 2px solid #C8151B;
	padding: 36px 32px;
	text-align: center;
	background: #ffffff;
}

.krank-box .big {
	font-size: clamp(2.5rem, 5vw, 4.5rem);
	font-weight: 900;
	color: #C8151B;
	line-height: 1;
}

.krank-box .small {
	font-size: 0.9rem;
	color: #555555;
	margin-top: 6px;
	line-height: 1.5;
}

.krank-box .area-pill {
	display: inline-block;
	margin-top: 18px;
	background: #000000;
	color: #ffffff;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 8px 20px;
}

.krank-box-num {
	margin-top: 24px;
	font-size: clamp(1.8rem, 3.5vw, 2.8rem);
	font-weight: 900;
	color: #C8151B;
	letter-spacing: 2px;
}

.krank-box-numsub {
	font-size: 0.78rem;
	color: #555555;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-top: 3px;
}

.krank_p_1 {
	color: #555555;
	line-height: 1.65;
	font-size: .95rem;
	margin-top: 10px;"
}

.review-bar {
	background: #ffffff;
	border-top: 1px solid #DDDDDD;
	padding: 28px 8vw;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 24px;
}

.stars {
	color: #F5C800;
	font-size: 1.8rem;
	letter-spacing: 2px;
}

.review-text {
	font-weight: 700;
	font-size: 0.95rem;
	color: #000000;
}

.review-text span {
	color: #C8151B;
}

.google-btn {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: #ffffff;
	border: 2px solid #DDDDDD;
	padding: 9px 20px;
	font-weight: 700;
	font-size: 0.85rem;
	text-decoration: none;
	color: #000000;
	transition: border-color .2s;
}

.google-btn:hover {
	border-color: #C8151B;
}

.google_logo {
  width: 22px;
  height: 22px;
  display: inline-block;
  background: url('../images/google_logo.svg') center/contain no-repeat;
}

.social-bar {
	background: #F7F7F7;
	border-top: 1px solid #DDDDDD;
	padding: 32px 8vw;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	align-items: center;
}

.social-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 0.92rem;
	letter-spacing: 0.5px;
	text-decoration: none;
	color: #000000;
	border: 2px solid #DDDDDD;
	padding: 12px 22px;
	background: #FFFFFF	;
	transition: border-color .2s, color .2s;
}

.social-btn:hover {
	border-color: #C8151B; color: #C8151B;
}

.social-btn.whatsapp2:hover {
	border-color: #00DB40;
	color: #00DB40;
}

.social-btn.insta:hover {
	border-color: #E1306C;
	color: #E1306C;
}

.social-btn.fb:hover {
	border-color: #1877F2;
	color: #1877F2;
}

.social-btn.mail:hover  {
	border-color: #C8151B;
	color: #C8151B;
}

.contact-bar {
	background: #C8151B;
	padding: 36px 8vw;
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	justify-content: center;
	align-items: center;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 1.05rem;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.contact-item a {
	color: #ffffff;
	text-decoration: none;
}

.contact-item a:hover {
	text-decoration: underline;
}

.contact-sep_1, .contact-sep_2, .contact-sep_3, .contact-sep_4 {
	width: 1px;
	height: 30px;
	background: rgba(255,255,255,.35);
}

.block_ds_1 {
	background-color: #FFFFFF;
}

.block_ds_2 {
  background-color: #F7F7F7;
  border-top: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
}

.ds_h4 {
	text-decoration: underline;
	font-style: italic;
}

.block_padding {
	padding: 15px;
	width: auto;
	display: block;
}

.block_padding p {
	padding: 10px 0px;
}

.cookie_h3 {
	background-color: #ffffff;
	border: 1px solid #ddd;
	padding: 5px;
	border-radius: 7px;
	margin: 5px;
}

.box_outer {
	display: flex;
	justify-content: space-around;
}

.box.inner {
	text-align: left;
}

.box_left {
	min-width: 50%;
}

.box_left, .box_right {
	margin: 10px;
}

.server_ul {
	padding: 5px;
}

.taxi_imp {
	list-style-type: none;
}

.block_inner {
	background-color: #ffffff;
	border-radius: 7px;
	border: 1px solid #dddddd;
	padding: 10px;
}

.imp_hr {
	color: #DDDDDD
}

.table_page {
    min-height: 100vh;
    display: flex;
    justify-content: center; /* horizontal */
    align-items: center;     /* vertikal */
    padding: 20px;
    box-sizing: border-box;
}

.table-wrapper {
    width: 100%;
    max-width: 900px;
	min-width: 0;
    overflow-x: auto;
}

.responsive-table {
    width: 100%;
    border-collapse: collapse;
}

.responsive-table th,
.responsive-table td {
    padding: 12px 16px;
    text-align: left;
}

.responsive-table thead {
    background: #333;
    color: #fff;
}

.responsive-table tbody tr:nth-child(odd) {
    background: #f7f7f7;
}

.responsive-table tbody tr:nth-child(even) {
    background: #dddddd;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 15px;
    max-width: 1000px;
    margin: auto;
	padding: 15px;
}

.gallery a {
	display: block;
	padding: 5px;
	background: #dddddd;
	border-radius: 7px;
	border: 2px solid #D0373C;
}

.gallery img {
    width:100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    transition: transform .2s;
}

.gallery img:hover {
    transform: scale(1.03);
}

/* ================================
   Kontaktformular allgemein
   ================================ */

.kontaktformular {
    max-width: 900px;
    margin: 30px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-sizing: border-box;
}


/* ================================
   Formular Zeilen / Spalten
   ================================ */

.formular-zeile {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.formular-zeile .formular-feld {
    flex: 1;
}


/* ================================
   Einzelne Formularfelder
   ================================ */

.formular-feld {
    margin-bottom: 20px;
	text-align: left;
}

.formular-feld label {
    display: block;
    margin-bottom: 7px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
}


/* ================================
   Eingabefelder / Select / Textarea
   ================================ */

.formular-feld input,
.formular-feld select,
.formular-feld textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}


/* Fokus-Effekt */

.formular-feld input:focus,
.formular-feld select:focus,
.formular-feld textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 4px rgba(0,102,204,0.25);
}


/* Textarea */

.formular-feld textarea {
    resize: vertical;
    min-height: 120px;
}


/* ================================
   Checkbox Datenschutz
   ================================ */

.formular-checkbox {
    margin: 25px 0;
    font-size: 14px;
}

.formular-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    line-height: 1.5;
}

.formular-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}


/* ================================
   Absenden Button
   ================================ */

.formular-absenden {
    margin-top: 25px;
}

.formular-absenden button {
    background: #0066cc;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}


.formular-absenden button:hover {
    background: #004c99;
}


/* ================================
   Pflichtfeld Hinweis
   ================================ */

.kontaktformular input:required,
.kontaktformular select:required {
    background-color: #ffffff;
}


/* ================================
   Mobile Darstellung
   ================================ */

@media (max-width: 700px) {

    .kontaktformular {
        padding: 20px;
        margin: 15px;
    }


    .formular-zeile {
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
    }


    .formular-feld {
        margin-bottom: 18px;
    }


    .formular-absenden button {
        width: 100%;
    }
}

.formular-fehler {
    background: #ffeaea;
    border: 1px solid #e74c3c;
    color: #b71c1c;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.formular-fehler p {
    margin: 0;
}

.errorbox {
	background-color: #BC2A4D;
	color: #ffffff;
	margin: 10px auto;
	padding: 8px;
	text-align: center;
	border-radius: 7px;
}

.errorbox_h3 {
	font-size: 1.10em;
	text-decoration: underline;
}

.errorinfo {
	text-decoration: underline;
}

.successbox {
    background-color: #228822;
	padding: 8px;
	border-radius: 7px;
	margin: 10px 0;
	color: #ffffff;
}

.my-recaptcha-message {
    display: none;
}

/* Tablet */
@media (max-width:768px) {
    .gallery {
        grid-template-columns: repeat(2,1fr);
    }
}

/* Smartphone */
@media (max-width:480px) {
    .gallery {
        grid-template-columns: 1fr;
    }
}

/* FOOTER */
footer {
    background: #ffffff;
    padding: 20px 30px;
	border-top: 3px solid #C8151B;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    font-size: 14px;
}

.footer-right {
    display: flex;
    gap: 20px;
}

.footer-right a {
	color: #000000;
    text-decoration: none;
    transition: color .3s;
}

.footer-right a:hover {
    color: #000000;
}

.footer_a_left {
  color: #000000;
}

.footer_a_left:hover {
  color: #000000;
}

footer {
	background: #000000;
	padding: 28px 8vw;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: space-between;
	align-items: center;
	font-size: 0.82rem;
	color: #aaa;
}

footer a {
	color: #aaa;
	text-decoration: none;
}

footer a:hover {
	color: #ffffff;
}

.footer-logo {
	font-weight: 900;
	font-size: 1.05rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.footer-logo .r {
	color: #C8151B;
}






/* Responsive */
@media(max-width: 1450px) {
	.logo-num {
		display: none;
	}
}

@media(max-width: 1270px) {
	.social_link {
		display: none !important;
	}
}

@media(max-width: 1160px) {
    .hamburger {
        display:block;
    }

	.bullet {
		display: none;
	}

    nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #F5EFE0;
    }

    nav ul {
        flex-direction: column;
    }

    nav li {
        border-top: 1px solid rgba(255,255,255,.2);
    }

    nav a {
        display: block;
        padding: 15px;
    }

    nav.active {
        display: block;
    }
}

@media (max-width: 768px) {
	.hero::after {
		width: 120px;
		height: 120px;
	}

  .krank-grid {
		grid-template-columns: 1fr;
		gap: 32px;
  }
}

@media (max-width: 650px) {
	.box_outer {
		flex-direction: column;
	}

	.imp_hr {
		margin-top: 15px;
		margin-bottom: 15px;
	}
}

@media(max-width: 452px) {
	main {
		text-align: left;
	}

	.block_ds_1, .block_ds_2 {
		text-align: center;
	}
}

@media(max-width: 450px) {
	.logo {
		margin-right: 10px;
	}
	.logo-num {
		display: none;
	}

	#header_link {
		display: none;
	}

	#contact_burger {
		display: block;
	}
}

.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: rgba(0,0,0,0.4);

    z-index: 9999;
}


.cookie-popup-content {
    position: relative;

    background-color: #ffffff;
    color: #000000;

    width: 90%;
    max-width: 450px;

    padding: 30px 40px;

    border-radius: 10px;

    border: 2px solid #C8151B;

    box-shadow: 0 10px 30px rgba(0,0,0,0.3);

    text-align: center;

    font-size: 1.1rem;
    font-weight: 600;
}


.cookie-popup-close {

    position: absolute;

    top: 8px;
    right: 15px;

    font-size: 28px;

    cursor: pointer;

    color: #C8151B;

    font-weight: bold;
}


.cookie-popup-close:hover {

    color: #000000;

}
