/* ==========================================
   JEBA CLEAN GMBH - PREMIUM DESIGN SYSTEM
   ========================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800&display=swap');

/* --- CSS Variables --- */
:root {
    /* Brand Colors */
    --color-primary: #0b2240;       /* Deep Navy Blue (Professionalism & Trust) */
    --color-primary-light: #16365c; /* Lighter Navy for cards/hovers */
    --color-accent: #00bcd4;        /* Vibrant Cyan/Teal (Cleanliness & Freshness) */
    --color-accent-hover: #00acc1;  /* Darker Cyan for hover states */
    --color-accent-rgb: 0, 188, 212;
    --color-logo-green: #7ac143;    /* Vibrant Green from Logo */
    
    /* Neutral Colors */
    --color-bg-light: #f8fafc;      /* Soft grayish-blue for light sections */
    --color-bg-white: #ffffff;      /* Pure white */
    --color-text-main: #1e293b;     /* Dark slate for high readability */
    --color-text-muted: #64748b;    /* Slate gray for secondary text */
    --color-border: #e2e8f0;        /* Soft border color */
    
    /* Layout & Styling Tokens */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --box-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.07), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-white);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-primary);
}

p {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

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

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

ul, ol {
    list-style: none;
}

/* --- Layout Utilities --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 6rem 0;
    position: relative;
}

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

.section-bg-primary {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
}

.section-bg-primary h2, 
.section-bg-primary h3, 
.section-bg-primary p {
    color: var(--color-bg-white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background-color: rgba(0, 188, 212, 0.1);
    color: var(--color-accent);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
}

/* --- Button Components --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 188, 212, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--color-primary-light);
    border-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11, 34, 64, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-bg-white);
    border: 2px solid var(--color-bg-white);
}

.btn-outline:hover {
    background-color: var(--color-bg-white);
    color: var(--color-primary);
    transform: translateY(-2px);
}

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

.btn-outline-primary:hover {
    background-color: var(--color-primary);
    color: var(--color-bg-white);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn-accent:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 188, 212, 0.2);
}

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
}

/* --- Floating Contact Action Buttons (Mobile) --- */
.floating-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 99;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    color: #fff;
    cursor: pointer;
}

.float-btn:hover {
    transform: scale(1.1) translateY(-3px);
}

.float-phone {
    background-color: var(--color-primary);
}

.float-whatsapp {
    background-color: #25d366; /* Official WhatsApp Color */
}

.float-btn svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

/* --- Header & Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1.5rem 0;
    background-color: var(--color-bg-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.8rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 60px;
    transition: var(--transition);
}

.header.scrolled .logo img {
    height: 50px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-logo-green);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-logo-green);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-btn {
    margin-left: 1rem;
}

/* Hamburger Menu Icon */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* Burger menu active state */
.burger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* --- Hero Section --- */
.hero {
    background-color: var(--color-bg-white);
    color: var(--color-text-main);
    padding: 10rem 0 7rem 0;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 100%;
}

.hero-tagline {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-logo-green);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-tagline::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: var(--color-logo-green);
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.hero-image {
    width: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(11, 34, 64, 0.08);
    border: 1px solid var(--color-border);
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.hero-image:hover img {
    transform: scale(1.02);
}

/* --- Promo Banner (10% Discount) --- */
.promo-section {
    padding: 3rem 0;
    margin-top: -4rem;
    z-index: 10;
}

.promo-card {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(11, 34, 64, 0.15);
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.promo-info {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.promo-badge {
    background-color: var(--color-accent);
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2rem;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 188, 212, 0.3);
}

.promo-text h3 {
    color: var(--color-bg-white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.promo-text p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

/* --- About Us Section (Über Uns) --- */
.about {
    padding-top: 4rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
}

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

.about-experience-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background-color: var(--color-accent);
    color: var(--color-primary);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-heading);
}

.about-experience-badge .years {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.about-experience-badge .text {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

.about-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.about-highlight {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.about-text {
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.about-feature-icon {
    color: var(--color-accent);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.2rem;
}

.about-feature-icon svg {
    width: 22px;
    height: 22px;
}

.about-feature-text h4 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.about-feature-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* --- Services Section (Leistungen) --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    padding: 2.5rem;
    transition: var(--transition);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
    border-color: rgba(0, 188, 212, 0.3);
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius);
    background-color: rgba(0, 188, 212, 0.08);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    transition: var(--transition);
}

.service-card:hover .service-icon-wrapper {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

.service-icon-wrapper svg {
    width: 36px;
    height: 36px;
    fill: currentColor;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.service-card:hover h3 {
    color: var(--color-accent);
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features-list {
    margin-bottom: 2rem;
    border-top: 1px solid var(--color-border);
    padding-top: 1.25rem;
}

.service-feature-bullet {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.service-feature-bullet svg {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
    flex-shrink: 0;
}

/* Special Highlight Card for Entrümpelung */
.service-card.special-highlight {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    border-color: rgba(255, 255, 255, 0.05);
    color: var(--color-bg-white);
}

.service-card.special-highlight h3 {
    color: var(--color-bg-white);
}

.service-card.special-highlight p {
    color: rgba(255, 255, 255, 0.8);
}

.service-card.special-highlight .service-feature-bullet {
    color: rgba(255, 255, 255, 0.7);
}

.service-card.special-highlight:hover {
    border-color: var(--color-accent);
}

.service-badge-hot {
    align-self: flex-start;
    padding: 0.25rem 0.75rem;
    background-color: var(--color-accent);
    color: var(--color-primary);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

/* --- Before/After Image Slider --- */
.slider-section {
    position: relative;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-hover);
    overflow: hidden;
}

.before-after-slider {
    position: relative;
    width: 100%;
    height: 480px;
    user-select: none;
    -webkit-user-select: none;
}

.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
}

.slider-img.img-before {
    z-index: 1;
}

.slider-img.img-after {
    z-index: 2;
    width: 50%; /* Initial state: split screen */
    border-right: 3px solid var(--color-accent);
}

/* Labels on images */
.slider-label {
    position: absolute;
    bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(11, 34, 64, 0.85);
    color: var(--color-bg-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 5;
    pointer-events: none;
}

.slider-label.label-before {
    right: 1.5rem;
}

.slider-label.label-after {
    left: 1.5rem;
}

/* Slider Handle Bar & Circle button */
.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background-color: var(--color-accent);
    z-index: 10;
    cursor: ew-resize;
    transform: translateX(-50%);
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: var(--color-primary);
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.slider-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--color-accent-hover);
}

.slider-button svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

/* --- Portfolio Gallery Section --- */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--color-text-main);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-primary);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.25);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.gallery-item.hidden {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 34, 64, 0.9) 0%, rgba(11, 34, 64, 0.3) 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h4 {
    color: var(--color-bg-white);
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.gallery-info p {
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
}

/* --- Contact & Inquiry Form (Offer Form) --- */
.contact-section {
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--color-border);
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius);
    background-color: rgba(0, 188, 212, 0.1);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.contact-detail-content h4 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.contact-detail-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.contact-detail-content a:hover {
    color: var(--color-accent);
}

.map-container {
    height: 250px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--color-border);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Inquiry Form Styling */
.offer-form-wrapper {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-hover);
    padding: 3rem;
    border: 1px solid var(--color-border);
}

.offer-form-wrapper h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.offer-form-wrapper > p {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text-main);
    transition: var(--transition);
    background-color: var(--color-bg-light);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: var(--color-bg-white);
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.15);
}

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

/* Custom Checkboxes Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--color-text-main);
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    transition: var(--transition);
}

.checkbox-container:hover input ~ .checkbox-checkmark {
    border-color: var(--color-accent);
}

.checkbox-container input:checked ~ .checkbox-checkmark {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

.checkbox-checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkbox-checkmark::after {
    display: block;
}

.checkbox-container .checkbox-checkmark::after {
    left: 6px;
    top: 2px;
    width: 6px;
    height: 11px;
    border: solid var(--color-primary);
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}

/* Custom Radios Grid */
.radio-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.radio-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 2rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--color-text-main);
    user-select: none;
}

.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    transition: var(--transition);
}

.radio-container:hover input ~ .radio-checkmark {
    border-color: var(--color-accent);
}

.radio-container input:checked ~ .radio-checkmark {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

.radio-checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

.radio-container input:checked ~ .radio-checkmark::after {
    display: block;
}

.radio-container .radio-checkmark::after {
    left: 6px;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
}

/* Consent Checkbox Layout */
.consent-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    cursor: pointer;
    user-select: none;
    margin-top: 1.5rem;
}

.consent-container input {
    margin-top: 0.25rem;
}

.consent-container a {
    color: var(--color-accent);
    font-weight: 600;
}

.consent-container a:hover {
    text-decoration: underline;
}

/* Submit feedback states */
.form-status {
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-top: 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    display: none;
}

.form-status.success {
    background-color: rgba(37, 211, 102, 0.15);
    color: #1e7e34;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.form-status.error {
    background-color: rgba(234, 51, 35, 0.1);
    color: #bd2130;
    border: 1px solid rgba(234, 51, 35, 0.2);
}

/* --- Footer & Legal Links --- */
.footer {
    background-color: #061121; /* Extra dark navy */
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 0 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    color: var(--color-bg-white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--color-accent);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-about img {
    height: 55px;
    margin-bottom: 1.5rem;
}

.footer-about p {
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link-item {
    font-size: 0.95rem;
}

.footer-link-item a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.footer-contact-item svg {
    color: var(--color-accent);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

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

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--color-bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.85rem;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}

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

/* --- Cookie Consent Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    max-width: 500px;
    background-color: rgba(11, 34, 64, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-bg-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie-banner.hidden {
    opacity: 0;
    transform: translateY(30px);
    pointer-events: none;
}

.cookie-content h3 {
    color: var(--color-bg-white);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.cookie-content p.cookie-small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
}

.cookie-content a {
    color: var(--color-accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-buttons .btn {
    flex: 1;
}

/* --- Scroll Entrance Animations --- */
.fade-el {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), 
                transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* --- Career / Jobs Page specific styles (`jobs.html`) --- */
.jobs-hero {
    min-height: 50vh;
    background: linear-gradient(135deg, rgba(11, 34, 64, 0.9) 30%, rgba(11, 34, 64, 0.7) 100%),
                url('../assets/images/WhatsApp Image n2026-07-06 at 12.28.18.jpeg') no-repeat center center/cover;
    padding-top: 10rem;
    display: flex;
    align-items: center;
    color: var(--color-bg-white);
    text-align: center;
}

.jobs-hero-content {
    margin: 0 auto;
    max-width: 800px;
}

.jobs-hero-title {
    font-size: 3rem;
    color: var(--color-bg-white);
    margin-bottom: 1rem;
}

.jobs-body-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.job-listing-box {
    background-color: var(--color-bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    padding: 3rem;
    border: 1px solid var(--color-border);
}

.job-listing-box h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.job-listing-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
    flex-wrap: wrap;
}

.job-meta-item {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-accent);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.job-meta-item svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.job-section-title {
    font-size: 1.25rem;
    margin: 2rem 0 1rem 0;
    color: var(--color-primary);
    position: relative;
    padding-left: 0.75rem;
}

.job-section-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    background-color: var(--color-accent);
    border-radius: 2px;
}

.job-perks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.job-perk-card {
    padding: 1.25rem;
    background-color: var(--color-bg-light);
    border-radius: var(--border-radius);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.job-perk-icon {
    font-size: 1.5rem;
}

.job-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.job-checklist-item svg {
    color: var(--color-accent);
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.job-sidebar-card {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
    color: var(--color-bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-hover);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.job-sidebar-card h3 {
    color: var(--color-bg-white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.job-sidebar-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.job-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.job-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.job-contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.job-contact-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.job-contact-text span {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.job-contact-text a {
    font-weight: 700;
    font-size: 1.05rem;
}

.job-contact-text a:hover {
    color: var(--color-accent);
}

/* --- Legal Page specific styles (`impressum.html`, `datenschutz.html`) --- */
.legal-hero {
    min-height: 35vh;
    background-color: var(--color-primary);
    padding-top: 10rem;
    display: flex;
    align-items: center;
    color: var(--color-bg-white);
}

.legal-hero h1 {
    color: var(--color-bg-white);
    font-size: 3rem;
}

.legal-content {
    padding: 5rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem 0;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.5rem;
}

.legal-content p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    color: var(--color-text-main);
}

.legal-content ul {
    list-style-type: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-main);
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* ==========================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================== */

@media (max-width: 1024px) {
    .about-grid, .contact-grid, .jobs-body-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-img-wrapper {
        order: 2;
    }
    
    .about-img {
        height: 350px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-col:first-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Navigation */
    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--color-bg-white);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        transition: var(--transition);
        box-shadow: -5px 0 25px rgba(0,0,0,0.1);
        padding: 2rem;
        z-index: 999;
        border-left: 1px solid var(--color-border);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.15rem;
        color: var(--color-primary);
    }
    
    .nav-btn {
        margin-left: 0;
        width: 100%;
    }
    
    /* Hero */
    .hero {
        padding-top: 7rem;
        padding-bottom: 4rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .hero-tagline {
        justify-content: center;
    }
    
    .hero-tagline::before {
        display: none;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-image {
        max-width: 320px;
        margin: 0 auto;
    }
    
    /* Promo */
    .promo-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .promo-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Before/After Slider */
    .before-after-slider {
        height: 320px;
    }
    
    /* Forms */
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .offer-form-wrapper {
        padding: 2rem;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    /* Jobs */
    .job-perks-grid {
        grid-template-columns: 1fr;
    }
    
    .job-listing-box {
        padding: 2rem;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-col:first-child {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .footer-legal-links {
        justify-content: center;
    }
    
    /* Floating Contact Buttons */
    .floating-actions {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
    }
    
    .float-btn svg {
        width: 22px;
        height: 22px;
    }
    
    /* Cookie Banner */
    .cookie-banner {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 1.5rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
}
