/* =====================================================
   LABEL MB - Custom Styles
   ===================================================== */

/* ----- CSS Variables ----- */
:root {
    --lmb-primary: #1a365d;
    --lmb-primary-light: #2c5282;
    --lmb-primary-dark: #0f2440;
    --lmb-secondary: #38b2ac;
    --lmb-secondary-light: #4fd1c5;
    --lmb-accent: #ed8936;
    --lmb-dark: #1a202c;
    --lmb-gray-100: #f7fafc;
    --lmb-gray-200: #edf2f7;
    --lmb-gray-300: #e2e8f0;
    --lmb-gray-600: #718096;
    --lmb-gray-800: #2d3748;
    --lmb-white: #ffffff;
    --lmb-gradient: linear-gradient(135deg, var(--lmb-primary) 0%, var(--lmb-primary-light) 100%);
    --lmb-gradient-accent: linear-gradient(135deg, var(--lmb-secondary) 0%, var(--lmb-secondary-light) 100%);
    --lmb-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --lmb-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --lmb-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --lmb-radius: 0.5rem;
    --lmb-radius-lg: 1rem;
    --lmb-transition: all 0.3s ease;
}

/* ----- Base Styles ----- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--lmb-gray-800);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--lmb-dark);
    line-height: 1.3;
}

p {
    color: var(--lmb-gray-600);
}

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

a:hover {
    color: var(--lmb-secondary);
}

/* ----- Buttons ----- */
.btn {
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: var(--lmb-radius);
    transition: var(--lmb-transition);
    border: none;
}

.btn-primary {
    background: var(--lmb-gradient);
    color: var(--lmb-white);
    box-shadow: var(--lmb-shadow);
}

.btn-primary:hover {
    background: var(--lmb-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--lmb-shadow-lg);
}

.btn-secondary {
    background: var(--lmb-gradient-accent);
    color: var(--lmb-white);
    box-shadow: var(--lmb-shadow);
}

.btn-secondary:hover {
    background: var(--lmb-secondary);
    transform: translateY(-2px);
    box-shadow: var(--lmb-shadow-lg);
}

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

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

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ----- Header / Navigation ----- */
.navbar {
    padding: 1rem 0;
    transition: var(--lmb-transition);
    background: transparent;
}

.navbar.scrolled {
    background: var(--lmb-white);
    box-shadow: var(--lmb-shadow);
    padding: 0.5rem 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--lmb-white) !important;
}

.navbar.scrolled .navbar-brand {
    color: var(--lmb-primary) !important;
}

.navbar-brand img {
    max-height: 45px;
    transition: var(--lmb-transition);
}

/* Logo switching - light version visible by default, dark when scrolled */
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.navbar-brand img {
    height: 40px;
    width: auto;
    max-width: 200px;
    transition: var(--lmb-transition);
}

.navbar-brand .logo-light {
    display: inline-block !important;
}

.navbar-brand .logo-dark {
    display: none !important;
}

.navbar.scrolled .navbar-brand .logo-light {
    display: none !important;
}

.navbar.scrolled .navbar-brand .logo-dark {
    display: inline-block !important;
}

.navbar.scrolled .navbar-brand img {
    height: 35px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.navbar.scrolled .navbar-nav .nav-link {
    color: var(--lmb-dark) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--lmb-secondary);
    transition: var(--lmb-transition);
    transform: translateX(-50%);
}

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

.navbar-nav .nav-link:hover {
    color: var(--lmb-white) !important;
}

.navbar.scrolled .navbar-nav .nav-link:hover {
    color: var(--lmb-primary) !important;
}

/* Navbar toggler for mobile */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826, 32, 44, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Header CTA button */
.navbar .btn-primary {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--lmb-white);
    backdrop-filter: blur(10px);
}

.navbar .btn-primary:hover {
    background: var(--lmb-white);
    color: var(--lmb-primary);
    border-color: var(--lmb-white);
}

.navbar.scrolled .btn-primary {
    background: var(--lmb-gradient);
    border: none;
    color: var(--lmb-white);
}

/* ----- Hero Section ----- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--lmb-gradient);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--lmb-white);
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: var(--lmb-white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--lmb-secondary-light);
}

.hero-stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.hero-visual {
    position: relative;
}

.hero-visual img {
    max-width: 100%;
    border-radius: var(--lmb-radius-lg);
    box-shadow: var(--lmb-shadow-xl);
}

/* ----- Section Styles ----- */
section {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    color: var(--lmb-gray-600);
    font-size: 1.15rem;
    max-width: 600px;
}

.section-badge {
    display: inline-block;
    background: var(--lmb-gray-200);
    color: var(--lmb-primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ----- Services Section ----- */
.services-section {
    background: var(--lmb-gray-100);
}

.service-card {
    background: var(--lmb-white);
    border-radius: var(--lmb-radius-lg);
    padding: 2.5rem;
    height: 100%;
    transition: var(--lmb-transition);
    border: 1px solid var(--lmb-gray-200);
    position: relative;
    overflow: hidden;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--lmb-shadow-xl);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--lmb-gradient);
    border-radius: var(--lmb-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

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

.service-card p {
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 0.4rem 0;
    color: var(--lmb-gray-600);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li i {
    color: var(--lmb-secondary);
    font-size: 0.9rem;
}

/* ----- About Section ----- */
.about-section {
    background: var(--lmb-white);
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--lmb-radius-lg);
    box-shadow: var(--lmb-shadow-lg);
}

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

.about-badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
}

.about-badge-text {
    font-size: 0.85rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.about-feature-icon {
    width: 45px;
    height: 45px;
    background: var(--lmb-gray-100);
    border-radius: var(--lmb-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon i {
    color: var(--lmb-primary);
    font-size: 1.25rem;
}

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

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

/* ----- Process Section ----- */
.process-section {
    background: var(--lmb-gray-100);
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(50% + 50px);
    width: calc(100% - 100px);
    height: 2px;
    background: var(--lmb-gray-300);
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 80px;
    height: 80px;
    background: var(--lmb-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--lmb-white);
    position: relative;
    z-index: 1;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

/* ----- Technologies Section ----- */
.tech-section {
    background: var(--lmb-white);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.tech-item {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--lmb-gray-100);
    border-radius: var(--lmb-radius);
    transition: var(--lmb-transition);
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--lmb-shadow);
}

.tech-item i {
    font-size: 2.5rem;
    color: var(--lmb-primary);
    margin-bottom: 1rem;
}

.tech-item span {
    display: block;
    font-weight: 600;
    color: var(--lmb-dark);
}

/* ----- CTA Section ----- */
.cta-section {
    background: var(--lmb-gradient);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--lmb-white);
    font-size: 2.5rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
}

.cta-section .btn-light {
    background: var(--lmb-white);
    color: var(--lmb-primary);
    font-weight: 600;
}

.cta-section .btn-light:hover {
    background: var(--lmb-gray-100);
    transform: translateY(-2px);
}

/* ----- Contact Section ----- */
.contact-section {
    background: var(--lmb-gray-100);
}

.contact-info-card {
    background: var(--lmb-white);
    border-radius: var(--lmb-radius-lg);
    padding: 2.5rem;
    height: 100%;
    box-shadow: var(--lmb-shadow);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--lmb-gradient);
    border-radius: var(--lmb-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    color: var(--lmb-white);
    font-size: 1.25rem;
}

.contact-info-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-info-item p,
.contact-info-item a {
    margin: 0;
    color: var(--lmb-gray-600);
}

.contact-info-item a:hover {
    color: var(--lmb-secondary);
}

.contact-form-card {
    background: var(--lmb-white);
    border-radius: var(--lmb-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--lmb-shadow);
}

.form-control,
.form-select {
    padding: 0.875rem 1rem;
    border: 1px solid var(--lmb-gray-300);
    border-radius: var(--lmb-radius);
    transition: var(--lmb-transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--lmb-secondary);
    box-shadow: 0 0 0 3px rgba(56, 178, 172, 0.15);
}

.form-label {
    font-weight: 500;
    color: var(--lmb-dark);
    margin-bottom: 0.5rem;
}

/* ----- Footer ----- */
.footer {
    background: var(--lmb-dark);
    color: var(--lmb-gray-300);
    padding: 4rem 0 2rem;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-brand img {
    max-height: 40px;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: var(--lmb-gray-600);
    margin-bottom: 1.5rem;
}

.footer h5 {
    color: var(--lmb-white);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--lmb-gray-600);
    transition: var(--lmb-transition);
}

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

.footer-social {
    display: flex;
    gap: 1rem;
}

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

.footer-social a:hover {
    background: var(--lmb-secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--lmb-gray-600);
    margin: 0;
    font-size: 0.9rem;
}

/* ----- Contact Modal ----- */
.modal-content {
    border: none;
    border-radius: var(--lmb-radius-lg);
    overflow: hidden;
}

.modal-header {
    background: var(--lmb-gradient);
    color: var(--lmb-white);
    border: none;
    padding: 1.5rem 2rem;
}

.modal-title {
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff !important;
}

.modal-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9) !important;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.modal-header .btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    border-top: 1px solid var(--lmb-gray-200);
    padding: 1.25rem 2rem;
    background: var(--lmb-gray-100);
}

.modal-footer .btn-primary {
    min-width: 180px;
}

/* Modal form styling */
#gesprekModal .form-control,
#gesprekModal .form-select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--lmb-gray-300);
    border-radius: var(--lmb-radius);
    transition: var(--lmb-transition);
}

#gesprekModal .form-control:focus,
#gesprekModal .form-select:focus {
    border-color: var(--lmb-secondary);
    box-shadow: 0 0 0 3px rgba(56, 178, 172, 0.15);
}

#gesprekModal .form-label {
    font-weight: 500;
    color: var(--lmb-dark);
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

/* Modal backdrop */
.modal-backdrop.show {
    opacity: 0.6;
}

/* Modal animation */
.modal.fade .modal-dialog {
    transform: scale(0.95) translateY(-20px);
    transition: transform 0.3s ease;
}

.modal.show .modal-dialog {
    transform: scale(1) translateY(0);
}

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

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

/* ----- Responsive ----- */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .hero-visual {
        margin-top: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .process-step::after {
        display: none;
    }
}

@media (max-width: 767.98px) {
    section {
        padding: 4rem 0;
    }
    
    .hero-section {
        min-height: auto;
        padding: 8rem 0 4rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .navbar-collapse {
        background: var(--lmb-white);
        padding: 1rem;
        border-radius: var(--lmb-radius);
        margin-top: 1rem;
        box-shadow: var(--lmb-shadow);
    }
    
    .navbar-collapse .nav-link {
        color: var(--lmb-dark) !important;
    }
    
    .navbar-collapse .btn-primary {
        background: var(--lmb-gradient);
        color: var(--lmb-white);
        border: none;
    }
    
    .about-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1.5rem;
        display: inline-block;
    }
}

/* ----- Utilities ----- */
.text-gradient {
    background: var(--lmb-gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--lmb-gradient) !important;
}

.bg-gradient-secondary {
    background: var(--lmb-gradient-accent) !important;
}

/* =====================================================
   DIENST PAGE STYLES
   ===================================================== */

/* ----- Dienst Hero ----- */
.dienst-hero {
    background: var(--lmb-gradient);
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.dienst-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.5;
}

.dienst-hero .container {
    position: relative;
    z-index: 1;
}

.dienst-hero-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.dienst-hero-icon i {
    font-size: 2.5rem;
    color: var(--lmb-white);
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.85) !important;
}

.badge-feature {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    color: var(--lmb-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.min-vh-75 {
    min-height: 75vh;
}

/* ----- Intro Section ----- */
.py-6 {
    padding: 5rem 0;
}

.intro-placeholder {
    background: var(--lmb-gradient);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-placeholder i {
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.3);
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.intro-content p:last-child {
    margin-bottom: 0;
}

/* ----- Feature Cards ----- */
.feature-card {
    background: var(--lmb-white);
    border-radius: var(--lmb-radius-lg);
    padding: 2rem;
    transition: var(--lmb-transition);
    border: 1px solid var(--lmb-gray-200);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--lmb-shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--lmb-gradient);
    border-radius: var(--lmb-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--lmb-white);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    margin: 0;
    font-size: 0.95rem;
}

/* ----- Process Timeline ----- */
.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.process-timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 70px;
    width: 2px;
    height: calc(100% - 30px);
    background: var(--lmb-gray-300);
}

.process-timeline-number {
    width: 60px;
    height: 60px;
    background: var(--lmb-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--lmb-white);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.process-timeline-content {
    flex: 1;
    padding-top: 0.5rem;
}

.process-timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.process-timeline-content p {
    margin: 0;
}

/* ----- Benefit Cards ----- */
.benefit-card {
    background: var(--lmb-white);
    border-radius: var(--lmb-radius-lg);
    padding: 1.75rem;
    display: flex;
    gap: 1.25rem;
    transition: var(--lmb-transition);
    border: 1px solid var(--lmb-gray-200);
    height: 100%;
}

.benefit-card:hover {
    box-shadow: var(--lmb-shadow);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--lmb-gray-100);
    border-radius: var(--lmb-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.25rem;
    color: var(--lmb-secondary);
}

.benefit-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    margin: 0;
    font-size: 0.95rem;
}

/* ----- FAQ Accordion ----- */
.accordion-item {
    border: 1px solid var(--lmb-gray-200);
    border-radius: var(--lmb-radius) !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    background: var(--lmb-white);
}

.accordion-button:not(.collapsed) {
    background: var(--lmb-gray-100);
    color: var(--lmb-primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--lmb-gray-200);
}

.accordion-body {
    padding: 1.25rem 1.5rem;
    line-height: 1.8;
}

/* ----- Related Services ----- */
.related-service-card {
    display: block;
    background: var(--lmb-white);
    border-radius: var(--lmb-radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    text-decoration: none;
    transition: var(--lmb-transition);
    border: 1px solid var(--lmb-gray-200);
    height: 100%;
}

.related-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--lmb-shadow-lg);
    border-color: var(--lmb-secondary);
}

.related-service-icon {
    width: 70px;
    height: 70px;
    background: var(--lmb-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

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

.related-service-card h3 {
    font-size: 1.25rem;
    color: var(--lmb-dark);
    margin-bottom: 1rem;
}

.related-service-link {
    color: var(--lmb-secondary);
    font-weight: 500;
}

.related-service-card:hover .related-service-link {
    color: var(--lmb-primary);
}

/* ----- Responsive ----- */
@media (max-width: 767.98px) {
    .dienst-hero {
        padding: 8rem 0 4rem;
    }
    
    .dienst-hero h1 {
        font-size: 2rem;
    }
    
    .dienst-hero-icon {
        width: 80px;
        height: 80px;
    }
    
    .dienst-hero-icon i {
        font-size: 2rem;
    }
    
    .py-6 {
        padding: 3rem 0;
    }
    
    .process-timeline-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .process-timeline-item::after {
        display: none;
    }
}

/* =====================================================
   CONTACT PAGE STYLES
   ===================================================== */

/* ----- Contact Hero ----- */
.contact-hero {
    background: var(--lmb-gradient);
    padding: 10rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.5;
}

.contact-hero .container {
    position: relative;
    z-index: 1;
}

/* ----- Contact Details ----- */
.contact-details {
    margin-top: 2rem;
}

.contact-detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--lmb-gray-200);
}

.contact-detail-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    background: var(--lmb-gradient);
    border-radius: var(--lmb-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-icon i {
    font-size: 1.25rem;
    color: var(--lmb-white);
}

.contact-detail-content h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--lmb-dark);
}

.contact-detail-content p,
.contact-detail-content a,
.contact-detail-content address {
    margin: 0;
    color: var(--lmb-gray-600);
    font-style: normal;
    line-height: 1.6;
}

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

/* ----- Social Links ----- */
.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--lmb-gray-100);
    border-radius: var(--lmb-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lmb-primary);
    transition: var(--lmb-transition);
}

.social-link:hover {
    background: var(--lmb-gradient);
    color: var(--lmb-white);
    transform: translateY(-3px);
}

.social-link i {
    font-size: 1.25rem;
}

/* ----- Contact Form Wrapper ----- */
.contact-form-wrapper {
    background: var(--lmb-white);
    border-radius: var(--lmb-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--lmb-shadow-lg);
    border: 1px solid var(--lmb-gray-200);
}

/* ----- Contact Form 7 Styling ----- */
.cf7-form .wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 1rem;
}

.cf7-form input[type="text"],
.cf7-form input[type="email"],
.cf7-form input[type="tel"],
.cf7-form textarea,
.cf7-form select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--lmb-gray-300);
    border-radius: var(--lmb-radius);
    font-size: 1rem;
    transition: var(--lmb-transition);
}

.cf7-form input[type="text"]:focus,
.cf7-form input[type="email"]:focus,
.cf7-form input[type="tel"]:focus,
.cf7-form textarea:focus,
.cf7-form select:focus {
    border-color: var(--lmb-secondary);
    box-shadow: 0 0 0 3px rgba(56, 178, 172, 0.15);
    outline: none;
}

.cf7-form input[type="submit"] {
    background: var(--lmb-gradient);
    color: var(--lmb-white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--lmb-radius);
    cursor: pointer;
    transition: var(--lmb-transition);
    width: 100%;
}

.cf7-form input[type="submit"]:hover {
    background: var(--lmb-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--lmb-shadow-lg);
}

.cf7-form .wpcf7-not-valid-tip {
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.cf7-form .wpcf7-response-output {
    margin: 1rem 0 0;
    padding: 1rem;
    border-radius: var(--lmb-radius);
}

.cf7-form .wpcf7-mail-sent-ok {
    background: #c6f6d5;
    border-color: #9ae6b4;
    color: #22543d;
}

.cf7-form .wpcf7-validation-errors {
    background: #fed7d7;
    border-color: #feb2b2;
    color: #c53030;
}

/* ----- Map Section ----- */
.map-section {
    background: var(--lmb-gray-100);
}

.map-wrapper {
    height: 400px;
    width: 100%;
}

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

@media (max-width: 767.98px) {
    .contact-hero {
        padding: 8rem 0 3rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .map-wrapper {
        height: 300px;
    }
}
