/* =============================================
   SYLT TAXI 5555 – Hauptstylesheet
   Design: Modern, inseltypisch, professionell
   ============================================= */

/* CSS Variablen */
:root {
    --primary: #1a3a5c;       /* Tiefes Meeresblau */
    --primary-dark: #0f2540;
    --primary-light: #2a5a8c;
    --accent: #e8a020;        /* Warmes Sandgelb */
    --accent-dark: #c8881a;
    --white: #ffffff;
    --light: #f4f7fb;
    --light-gray: #e8ecf0;
    --gray: #6b7a8d;
    --dark: #1a2332;
    --text: #2d3748;
    --text-light: #718096;
    --shadow: 0 4px 20px rgba(26, 58, 92, 0.12);
    --shadow-lg: 0 8px 40px rgba(26, 58, 92, 0.18);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* Reset & Basis */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 160, 32, 0.35);
}

.btn-secondary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.7);
    margin-top: 8px;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

.btn-hero-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    font-size: 1.05rem;
    padding: 16px 32px;
}

.btn-hero-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 160, 32, 0.4);
}

.btn-hero-secondary {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
    padding: 16px 32px;
    backdrop-filter: blur(4px);
}

.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.25);
    border-color: var(--white);
}

.btn-cta {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    font-size: 1.1rem;
    padding: 18px 36px;
}

.btn-cta:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.btn-cta-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    padding: 18px 36px;
}

.btn-cta-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
}

/* =============================================
   TOP BAR
   ============================================= */
.topbar {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.85);
    padding: 8px 0;
    font-size: 0.85rem;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-left span, .topbar-right a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.85);
}

.topbar-right a {
    font-weight: 600;
    color: var(--accent);
}

.topbar-right a:hover {
    color: var(--white);
}

.topbar i {
    font-size: 0.8rem;
}

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(26, 58, 92, 0.1);
    transition: var(--transition);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    gap: 20px;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav ul li {
    position: relative;
}

.nav ul li a {
    display: block;
    padding: 10px 14px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--primary);
    border-radius: 6px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav ul li a:hover,
.nav ul li a.active {
    color: var(--accent);
    background: rgba(232, 160, 32, 0.08);
}

/* Dropdown */
.dropdown .dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    border-top: 3px solid var(--accent);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    padding: 10px 20px;
    font-size: 0.87rem;
    color: var(--text);
    border-radius: 0;
}

.dropdown-menu li a:hover {
    background: var(--light);
    color: var(--accent);
    padding-left: 26px;
}

.header-cta {
    flex-shrink: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    position: relative;
    height: 85vh;
    min-height: 550px;
    max-height: 800px;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 37, 64, 0.75) 0%,
        rgba(15, 37, 64, 0.45) 60%,
        rgba(15, 37, 64, 0.2) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 60px 24px 60px 80px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: fit-content;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-content h1 strong {
    color: var(--accent);
    display: block;
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    max-width: 520px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero-phones {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 16px;
}

.slider-btn {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.5);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.slider-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

/* =============================================
   QUICK INFO
   ============================================= */
.quick-info {
    background: var(--primary);
    padding: 24px 0;
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--white);
    padding: 8px 0;
}

.quick-info-item i {
    font-size: 1.8rem;
    color: var(--accent);
    flex-shrink: 0;
}

.quick-info-item strong {
    display: block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
}

.quick-info-item span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
}

/* =============================================
   SECTION HEADER
   ============================================= */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
}

.section-badge {
    display: inline-block;
    background: rgba(232, 160, 32, 0.12);
    color: var(--accent-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* =============================================
   SERVICES
   ============================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 1.6rem;
    color: var(--white);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.93rem;
    line-height: 1.65;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    transition: var(--transition);
}

.service-link:hover {
    gap: 10px;
    color: var(--primary);
}

/* =============================================
   TAXIRECHNER BANNER
   ============================================= */
.taxirechner-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 60px 0;
}

.taxirechner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.taxirechner-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.3;
}

.taxirechner-text p {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    margin-bottom: 28px;
    line-height: 1.7;
}

.taxirechner-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.taxirechner-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
    height: 280px;
}

/* =============================================
   ABOUT PREVIEW
   ============================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 420px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.about-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-badge span {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.about-content .section-badge {
    margin-bottom: 12px;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.75;
}

.about-stats {
    display: flex;
    gap: 32px;
    margin: 32px 0;
    padding: 24px 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat span {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 4px;
    display: block;
}

/* =============================================
   SERVICE AREAS
   ============================================= */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.area-item {
    background: var(--white);
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--primary);
    box-shadow: 0 2px 10px rgba(26, 58, 92, 0.08);
    transition: var(--transition);
}

.area-item i {
    color: var(--accent);
    font-size: 0.85rem;
}

.area-item:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.area-item:hover i {
    color: var(--accent);
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.cta-phones {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.cta-reserve-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.cta-reserve-link:hover {
    color: var(--accent);
    gap: 12px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
    margin-bottom: 20px;
    filter: brightness(1.1);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--white);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
    width: 14px;
}

.footer-contact li a {
    color: rgba(255,255,255,0.65);
}

.footer-contact li a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

/* =============================================
   PAGE HERO (Unterseiten)
   ============================================= */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('../images/sylt_strand.jpg') center/cover;
    opacity: 0.15;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-content .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    margin-bottom: 16px;
}

.page-hero-content .breadcrumb a {
    color: rgba(255,255,255,0.65);
}

.page-hero-content .breadcrumb a:hover {
    color: var(--accent);
}

.page-hero-content .breadcrumb i {
    font-size: 0.7rem;
}

.page-hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 600px;
    line-height: 1.7;
}

/* =============================================
   FORMULAR
   ============================================= */
.form-section {
    padding: 80px 0;
}

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

.form-info h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.form-info p {
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.7;
}

.form-info .info-box {
    background: var(--light);
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 16px 20px;
    margin: 20px 0;
}

.form-info .info-box p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--text);
}

.form-info .info-box strong {
    color: var(--primary);
}

.form-contact-list {
    margin-top: 24px;
}

.form-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 0.95rem;
}

.form-contact-list li i {
    color: var(--accent);
    width: 20px;
}

.form-contact-list li a {
    color: var(--primary);
    font-weight: 600;
}

.form-contact-list li a:hover {
    color: var(--accent);
}

.taxi-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.taxi-form h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--light-gray);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-group label .required {
    color: #e53e3e;
    margin-left: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 58, 92, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-checkboxes {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.form-privacy {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.form-privacy a {
    color: var(--primary);
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-submit:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 160, 32, 0.35);
}

/* =============================================
   LEISTUNGEN SEITE
   ============================================= */
.leistung-section {
    padding: 80px 0;
}

.leistung-section:nth-child(even) {
    background: var(--light);
}

.leistung-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.leistung-grid.reverse {
    direction: rtl;
}

.leistung-grid.reverse > * {
    direction: ltr;
}

.leistung-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 360px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.leistung-content h2 {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.leistung-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.75;
}

.leistung-features {
    margin: 24px 0;
}

.leistung-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text);
}

.leistung-features li i {
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
}

/* =============================================
   ÜBER UNS SEITE
   ============================================= */
.about-full {
    padding: 80px 0;
}

.about-full-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.about-full-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-full-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.75;
}

.about-full-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

/* =============================================
   WEBCAM SEITE
   ============================================= */
.webcam-section {
    padding: 80px 0;
}

.webcam-embed {
    background: var(--dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.webcam-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* =============================================
   SHOP SEITE
   ============================================= */
.shop-section {
    padding: 80px 0;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.shop-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.shop-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.shop-card-image {
    background: var(--light);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-card-image i {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.4;
}

.shop-card-content {
    padding: 24px;
}

.shop-card-content h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.shop-card-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

/* =============================================
   ANIMATIONEN
   ============================================= */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(26, 58, 92, 0.15);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quick-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .taxirechner-content {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

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

    .leistung-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .leistung-grid.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .topbar-left {
        display: none;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        z-index: 999;
        padding: 80px 24px 24px;
        box-shadow: -4px 0 30px rgba(0,0,0,0.15);
        transition: right 0.3s ease;
        overflow-y: auto;
    }

    .nav.open {
        right: 0;
    }

    .nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .nav ul li {
        width: 100%;
    }

    .nav ul li a {
        padding: 14px 0;
        border-bottom: 1px solid var(--light-gray);
        border-radius: 0;
        font-size: 1rem;
    }

    .dropdown .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        border-top: none;
        border-left: 3px solid var(--accent);
        margin-left: 16px;
        padding: 0;
        background: var(--light);
        border-radius: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .header-cta {
        display: none;
    }

    .hero {
        height: 70vh;
    }

    .hero-content {
        padding: 40px 24px;
    }

    .hero-phones {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .quick-info-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .about-stats {
        gap: 20px;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-phones {
        flex-direction: column;
        align-items: center;
    }

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

    .taxi-form {
        padding: 24px;
    }

    .shop-grid {
        grid-template-columns: 1fr;
    }

    .about-full-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding: 56px 0;
    }

    .quick-info-grid {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }
}
