.contact-details ul{
    list-style: none !important;
}

/* --- 1. GLOBALE VARIABLEN & BASIS --- */
:root {
    --primary: #0077be;
    --secondary: #1a2635;
    --dark: #050a10;
    --light: #f4f4f4;
    --accent: #00d4ff;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
}

html, body {
    max-width: 100% !important;
    width: 100%;
    overflow-x: hidden !important;
    position: relative;
    background-color: var(--dark);
    color: white;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
}

/* --- 2. HEADER & NAVIGATION (Desktop & Mobil Logik) --- */
header {
    background: rgba(5, 10, 16, 0.95);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

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

.logo {
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-decoration: none;
}
.logo span { color: var(--primary); }

.topnav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.topnav a:not(.icon) {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 10px 0;
}

.topnav a:hover { color: var(--primary); }
.topnav .icon { display: none; }

/* --- 3. HERO SEKTION (Startseite) --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(5,10,16,0.6), rgba(5,10,16,0.8)), 
                url('https://images.pexels.com/photos/1105666/pexels-photo-1105666.jpeg') center/cover no-repeat;
    padding-top: 80px;
}

.top-label {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 25px;
}

.hero p {
    max-width: 600px;
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
}

.highlight { color: var(--primary); }
.bar { width: 60px; height: 4px; background: var(--primary); margin-bottom: 30px; }

/* --- 4. BUTTONS --- */
.btn-primary, .submit-btn {
    background: var(--primary);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    border: none;
    transition: var(--transition);
}

.btn-secondary {
    border: 2px solid white;
    color: white;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-left: 15px;
    transition: var(--transition);
}

.btn-primary:hover, .submit-btn:hover { background: var(--accent); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,119,190,0.3); }
.btn-secondary:hover { background: white; color: var(--dark); }

/* --- 5. SERVICES & RENTAL GRID --- */
.services-overview, .rental-main { padding: 100px 0; }

.services-grid, .rental-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.s-card, .rental-card, .agb-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 20px;
    transition: var(--transition);
    height: 100%;
}

.s-card:hover, .rental-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

.icon-box { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; }

/* Rental-Spezifisch */
.cat-title { border-left: 5px solid var(--primary); padding-left: 20px; margin: 50px 0 30px; font-size: 2rem; font-weight: 800; }
.rental-card { text-align: center; justify-content: space-between; display: flex; flex-direction: column; }
.rental-card .price { font-size: 1.8rem; font-weight: 800; color: var(--accent); margin: 20px 0; }
.rental-card .badge { background: var(--primary); color: white; padding: 4px 12px; border-radius: 5px; font-size: 0.75rem; font-weight: 700; align-self: center; margin-bottom: 15px; }

/* --- 6. KONTAKT SEKTION --- */
.contact-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: var(--secondary);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.contact-info { background: var(--primary); padding: 60px; }
.styled-form { padding: 60px; background: #0d1621; }
.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.input-group { margin-bottom: 25px; }
.input-group label { display: block; margin-bottom: 10px; font-weight: 600; opacity: 0.9; }

.input-group input, .input-group select, .input-group textarea {
    width: 100%; padding: 15px; background: #1a2635; border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; color: white; font-size: 16px;
}

/* --- 7. MOBILE OPTIMIERUNG --- */
@media screen and (max-width: 768px) {
    .container, .agb-container { padding: 0 15px !important; }

    /* Nav Fix */
    .topnav a:not(.icon) { display: none !important; }
    .topnav .icon { display: block !important; position: absolute; right: 20px; z-index: 1001; }

    .topnav.responsive {
        position: fixed !important; inset: 0 !important; background: var(--dark) !important;
        display: flex !important; flex-direction: column !important; justify-content: center !important; align-items: center !important;
    }

    .topnav.responsive a:not(.icon) { display: block !important; font-size: 1.8rem; margin: 15px 0; }

    /* Hero & Content */
    .hero { height: auto; min-height: 100vh; padding: 120px 20px 60px; text-align: center; }
    .hero-btns { display: flex; flex-direction: column; width: 100%; gap: 15px; }
    .btn-secondary { margin-left: 0; }

    /* Kontakt & Cards */
    .contact-card { grid-template-columns: 1fr; }
    .contact-info, .styled-form { padding: 40px 20px; }
    .input-row { grid-template-columns: 1fr !important; }
    
    .s-card, .rental-card, .agb-card { padding: 25px; }
}

/* --- 8. HAMBURGER DESIGN --- */
#hamburger-icon { width: 30px; height: 20px; display: flex; flex-direction: column; justify-content: space-between; }
#hamburger-icon span { display: block; height: 3px; width: 100%; background: #fff; border-radius: 2px; transition: 0.3s; }

.topnav.responsive #hamburger-icon span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.topnav.responsive #hamburger-icon span:nth-child(2) { opacity: 0; }
.topnav.responsive #hamburger-icon span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }



/* --- 4-SPALTEN GRID FÜR LEISTUNGEN --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Genau 4 Spalten auf Desktop */
    gap: 20px;
    margin-top: 40px;
}

/* Anpassung für mittlere Bildschirme (Tablets) */
@media screen and (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Spalten */
    }
}

/* Anpassung für kleine Bildschirme (Handys) */
@media screen and (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr; /* 1 Spalte */
    }
}

/* --- VEREDELTER FOOTER --- */
footer {
    background: #03070b;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-about p {
    color: #888;
    margin-top: 20px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-column h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.1rem;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
    color: #555;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Responsive Footer */
@media screen and (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}


