/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #5D6D7E;
    --secondary-color: #4A5568;
    --accent-color: #4caf50;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
}

h2 {
    font-size: 2rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}


/* Header Styles */
.main-header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

/* Quick Contact Icons between logo and nav */
.quick-contact-icons {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    margin-left: 2rem;
    margin-right: 1rem;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex: 1;
    margin-left: 3rem;
    justify-content: flex-end;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: 2rem;
    padding-left: 2rem;
    border-left: 1px solid #e0e0e0;
}

.portal-buttons {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

/* Hide mobile text in desktop */
.mobile-text {
    display: none;
}

/* Portal icon specific colors in desktop */
.icon-btn.employee-portal-btn {
    background-color: #5D6D7E;
}

.icon-btn.employee-portal-btn:hover {
    background-color: #4A5568;
    box-shadow: 0 4px 12px rgba(93, 109, 126, 0.4);
}

/* Icon Buttons */
.icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #1a1a1a;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.icon-btn i {
    font-size: 0.9rem;
    margin: 0;
}

.icon-btn:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Specific colors for WhatsApp and Telegram in header */
.icon-btn.whatsapp-btn {
    background-color: #25D366;
}

.icon-btn.whatsapp-btn:hover {
    background-color: #1db954;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.icon-btn.telegram-btn {
    background-color: #0088cc;
}

.icon-btn.telegram-btn:hover {
    background-color: #006ba6;
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.4);
}

.icon-btn.phone-btn {
    background-color: #5D6D7E;
}

.icon-btn.phone-btn:hover {
    background-color: #4A5568;
    box-shadow: 0 4px 12px rgba(93, 109, 126, 0.4);
}

.icon-btn.chat-btn {
    background-color: #619bdb;
}

.icon-btn.chat-btn:hover {
    background-color: #4d7fb8;
    box-shadow: 0 4px 12px rgba(97, 155, 219, 0.4);
}

.icon-btn.webex-btn {
    background-color: #2ECC71;
}

.icon-btn.webex-btn:hover {
    background-color: #27AE60;
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.4);
}

/* Tooltip on hover */
.icon-btn::after {
    content: attr(title);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.icon-btn:hover::after {
    opacity: 1;
    visibility: visible;
}

.nav-menu > li > a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu > li:not(.kundenportal-button):not(.angebot-button) > a:hover {
    color: var(--primary-color);
}

.nav-menu > li:not(.kundenportal-button):not(.angebot-button) > a:hover::after {
    width: 100%;
}

.dropdown-arrow {
    font-size: 0.8em;
    margin-left: 5px;
}

.cta-button .btn {
    margin-left: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    background-color: white;
    min-width: 250px;
    list-style: none;
    padding: 0;
    margin: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    margin-top: 5px;
}

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

.dropdown-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}



/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

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

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

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

.btn-secondary:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-dark {
    background-color: #1a1a1a;
    color: white !important;
    border-radius: 6px;
    padding: 10px 24px;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background-color: #000;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.btn-black {
    background-color: #000;
    color: white;
    border-radius: 5px;
}

.btn-black:hover {
    background-color: #000;
    filter: brightness(1.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
}

/* Hero Section - VARIANTE 1: Contain mit optimiertem Blur */
.hero-section {
    position: relative;
    height: 750px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    padding-top: 60px;
    background-color: #f8f9fa;
}

/* Bild als Pseudo-Element - OPTIMIERTE SKALIERUNG */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/assets/images/hero_image.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 1;
}

/* Kein Overlay - Bild im Hintergrund */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Minimaler Overlay nur für Textlesbarkeit */
    background: linear-gradient(
        to right,
        rgba(255,255,255,0.1) 0%,
        rgba(255,255,255,0.05) 50%,
        rgba(255,255,255,0.1) 100%
    );
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-section {
        height: 600px;
        padding-top: 40px;
    }
    .hero-section::before {
        background-position: center bottom;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-content {
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
    z-index: 10;
}

.hero-section h1 {
    color: white;
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    /* Subtiler 3D Text-Schatten Effekt */
    text-shadow: 
        0 1px 0 rgba(0, 0, 0, 0.4),
        0 2px 0 rgba(0, 0, 0, 0.3),
        0 3px 0 rgba(0, 0, 0, 0.25),
        0 4px 0 rgba(0, 0, 0, 0.2),
        0 5px 0 rgba(0, 0, 0, 0.15),
        0 6px 15px rgba(0, 0, 0, 0.4),
        0 8px 25px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    max-width: 800px;
    /* Sanfterer 3D Transform */
    transform: perspective(600px) rotateX(4deg);
    transform-origin: center bottom;
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    /* Subtiler 3D Text-Schatten für Subtitle */
    text-shadow: 
        0 1px 0 rgba(0, 0, 0, 0.3),
        0 2px 0 rgba(0, 0, 0, 0.25),
        0 3px 0 rgba(0, 0, 0, 0.2),
        0 4px 10px rgba(0, 0, 0, 0.3),
        0 6px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 2.5rem;
    max-width: 700px;
    /* Sanfterer 3D Transform */
    transform: perspective(600px) rotateX(2deg);
    transform-origin: center bottom;
}

.btn-hero {
    background-color: #1a1a1a;
    color: white !important;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-transform: none;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.btn-hero:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Services Section - Removed, replaced with Pricing Section */

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.benefits-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-text {
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Statistics Section */
.statistics-section {
    padding: 40px 0;
    background-color: #000;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.stat-text {
    flex: 1;
}

.statistics-section.animate-in .stat-item {
    opacity: 1;
    transform: translateY(0);
}

.statistics-section.animate-in .stat-item:nth-child(1) {
    transition-delay: 0s;
}

.statistics-section.animate-in .stat-item:nth-child(2) {
    transition-delay: 0.1s;
}

.statistics-section.animate-in .stat-item:nth-child(3) {
    transition-delay: 0.2s;
}

.statistics-section.animate-in .stat-item:nth-child(4) {
    transition-delay: 0.3s;
}

.stat-number {
    font-size: 2.88rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    line-height: 1;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
    display: inline-block;
    min-width: 100px;
    text-align: center;
}

.stat-number.counting {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.stat-label {
    font-size: 1.265rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
}

.pricing-section.animate-in .section-header {
    animation: fadeInUp 0.6s ease-out forwards;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
}

.section-description {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.section-description p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: left;
    padding: 0;
}

.section-description p:last-child {
    margin-bottom: 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card-link {
    text-decoration: none;
    display: block;
}

.pricing-card {
    background: var(--primary-color);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(26, 115, 232, 0.2);
    transition: all 0.3s ease;
    color: white;
    opacity: 0;
    filter: blur(10px);
    transform: translateY(30px);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-section.animate-in .pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(26, 115, 232, 0.35);
}

.pricing-card::after {
    content: '→';
    position: absolute;
    bottom: 30px;
    right: 30px;
    font-size: 1.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.pricing-card:hover::after {
    opacity: 0.7;
    transform: translateX(0);
}

.pricing-card.featured {
    background: #1e293b;
    box-shadow: 0 10px 30px rgba(30, 41, 59, 0.3);
    transform: scale(1.05);
}

.pricing-section.animate-in .pricing-card.featured:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 50px rgba(30, 41, 59, 0.45);
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    opacity: 0.9;
    color: white;
}

.card-price {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: white;
}

.card-period {
    font-size: 0.85rem;
    opacity: 0.75;
    color: white;
}

.card-divider {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    margin: 20px auto;
}

.pricing-card.featured .card-divider {
    background: rgba(255, 255, 255, 0.4);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: white;
}

.feature-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-card:not(.featured) .feature-icon {
    background: #1e293b;
    color: white;
}

.pricing-card.featured .feature-icon {
    background: var(--primary-color);
    color: white;
}

.feature-icon::after {
    content: "✓";
    font-size: 12px;
    font-weight: bold;
}

/* CTA buttons removed - cards are now clickable */

.more-offers {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
}

.pricing-section.animate-in .more-offers {
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-turquoise {
    background: var(--primary-color);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.btn-turquoise:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 184, 217, 0.3);
}

/* Blur-in animation for pricing cards */
.pricing-section.animate-in .pricing-card {
    animation: blurIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.pricing-section.animate-in .pricing-cards > div:nth-child(1) {
    animation-delay: 0.1s;
}

.pricing-section.animate-in .pricing-cards > div:nth-child(2) {
    animation-delay: 0.25s;
}

.pricing-section.animate-in .pricing-cards > div:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes blurIn {
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

/* Ensure featured card maintains scale after animation */
.pricing-section.animate-in .pricing-card.featured {
    animation: blurInFeatured 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes blurInFeatured {
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0) scale(1.05);
    }
}

/* City Section */
.city-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.city-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.city-features {
    display: grid;
    gap: 30px;
    margin-top: 2rem;
}

.feature-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-item ul {
    list-style: none;
    padding-left: 0;
}

.feature-item li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-item li:before {
    content: "";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Updated City Section Styles */
.city-section {
    padding: 80px 0;
    background-color: var(--bg-white);
    overflow: hidden;
}

.city-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    align-items: center;
    position: relative;
}

.city-image-wrapper {
    position: relative;
    opacity: 0;
    transform: translateX(-100px);
    z-index: 1;
}

.city-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.city-text-box {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(100px);
    max-width: 450px;
    margin-left: -80px;
    position: relative;
    z-index: 2;
}

.city-text-box h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    text-align: left;
    font-weight: 700;
}

.city-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.city-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.city-checklist li {
    display: flex;
    align-items: center;
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.city-checklist i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-right: 12px;
    flex-shrink: 0;
}

/* Fly-in animations with overlap */
.slide-in-left {
    animation: flyInLeft 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-delay: 0.3s;
}

.slide-in-right {
    animation: flyInRight 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-delay: 0.5s;
}

@keyframes flyInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px) scale(0.9);
    }
    60% {
        opacity: 1;
        transform: translateX(10px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes flyInRight {
    0% {
        opacity: 0;
        transform: translateX(100px) scale(0.9);
    }
    60% {
        opacity: 1;
        transform: translateX(-10px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
        margin-left: -80px;
    }
}

/* Add hover effect for depth */
.city-text-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.city-text-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Process Section */
.services-overview {
    padding: 50px 0;
    background-color: var(--bg-light);
}

.services-overview h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.process-item {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.services-overview.animate-in .process-item {
    animation: fadeInUp 0.6s ease-out forwards;
}

.services-overview.animate-in .process-item:nth-child(1) {
    animation-delay: 0.1s;
}

.services-overview.animate-in .process-item:nth-child(2) {
    animation-delay: 0.2s;
}

.services-overview.animate-in .process-item:nth-child(3) {
    animation-delay: 0.3s;
}

.services-overview.animate-in .process-item:nth-child(4) {
    animation-delay: 0.4s;
}

.process-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.process-icon {
    width: 70px;
    height: 70px;
    background-color: #000;
    color: white;
    font-size: 1.8rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.process-item:hover .process-icon {
    transform: scale(1.1);
}

.process-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.process-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Process CTA */
.process-cta {
    text-align: center;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(20px);
}

.services-overview.animate-in .process-cta {
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: 0.6s;
}

.btn-process {
    background-color: var(--primary-color);
    color: white;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.2);
}

.btn-process:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 115, 232, 0.3);
}

/* ======================================
   MOBILE CITY SECTION MIT NEUEM BILD
   ====================================== */

/* MOBILE: Unter 480px - Spezielles mobiles Bild */
@media (max-width: 480px) {
    /* PRAXIS SECTION: Mobile Bild ohne Textbox */
    .praxis-section {
        background-image: url('/assets/images/entspannt_mobile.png') !important;
        background-size: contain !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        min-height: 500px !important;
        background-color: #f8f9fa !important;
    }
    
    /* Textbox komplett ausblenden, da im Bild integriert */
    .praxis-content-box {
        display: none !important;
    }
    
    .praxis-content-box h3 {
        font-size: 1rem !important;
        margin-bottom: 0.7rem !important;
    }
    
    .praxis-list li {
        font-size: 0.8rem !important;
        padding: 3px 0 !important;
    }
    
    .red-circle {
        font-size: 0.7rem !important;
    }
    .city-section {
        padding: 40px 20px !important;
        background-color: var(--bg-white) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important;
        overflow: visible !important;
        min-height: auto !important;
    }
    
    .city-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 450px !important;
        gap: 30px !important;
        grid-template-columns: none !important;
        position: relative !important;
        height: auto !important;
    }
    
    /* Text-Box komplett ausblenden, da im Bild integriert */
    .city-text-box {
        display: none !important;
    }
    
    /* MOBILES BILD verwenden */
    .city-image-wrapper {
        order: 2 !important;
        width: 100% !important;
        max-width: 450px !important;
        opacity: 1 !important;
        transform: none !important;
        position: relative !important;
        z-index: 1 !important;
        margin: 0 !important;
        top: auto !important;
        left: auto !important;
        height: auto !important;
    }
    
    /* Mobiles Bild direkt im IMG-Element */
    .city-image {
        content: url('/assets/images/city_image_mobile.png') !important;
        width: 100% !important;
        height: auto !important;
        max-height: 350px !important;
        object-fit: contain !important;
        object-position: center !important;
        border-radius: 12px !important;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
        display: block !important;
    }
}

/* TABLET: 481px - 768px - Desktop Bild beibehalten */
@media (min-width: 481px) and (max-width: 768px) {
    .city-section {
        padding: 60px 30px !important;
    }
    
    .city-content {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        max-width: 600px !important;
        margin: 0 auto !important;
    }
    
    .city-image-wrapper {
        order: 1 !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    .city-image {
        width: 100% !important;
        height: 350px !important;
        object-fit: cover !important;
        border-radius: 12px !important;
    }
    
    .city-text-box {
        order: 2 !important;
        margin: 0 !important;
        max-width: 100% !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-item {
        padding: 30px 20px;
    }
    
    .btn-process {
        font-size: 1rem;
        padding: 14px 30px;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 50px 0;
    background-color: var(--bg-white);
}

.reviews-section h2 {
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

.review-card {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.review-author {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.review-date {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Praxis Section */
.praxis-section {
    position: relative;
    min-height: 400px;
    background-image: url('/assets/images/entspannt.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0;
    display: flex;
    align-items: center;
}

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

.praxis-content-box {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 25px;
    max-width: 320px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.praxis-section.animate-in .praxis-content-box {
    opacity: 1;
    transform: translateY(0);
}

.praxis-content-box h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

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

.praxis-list li {
    padding: 6px 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}

.red-circle {
    font-size: 0.8rem;
}

.praxis-contact {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1.5rem;
}

.praxis-contact h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.praxis-contact .phone-number {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.praxis-contact .phone-number i {
    font-size: 1.2rem;
}

.praxis-contact .hours {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* CTA Box Section */
.cta-box-section {
    padding: 50px 0 30px;
    background-color: #f5f5f5;
    position: relative;
}

.cta-box-section .container {
    max-width: 1200px;
}

/* CTA Box */
.cta-box {
    background-color: #000;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    margin: 0 auto;
    color: white;
    max-width: 400px;
}

/* Arrow Pointer */
.arrow-pointer {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid #f5f5f5;
}

/* Contact Form Section */
.contact-form-wrapper {
    padding: 60px 0 80px;
    background-color: #fff;
}

.cta-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.cta-decoration .line {
    width: 40px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);
}

.cta-decoration i {
    font-size: 1.2rem;
}

.cta-box h2 {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 20px;
    color: white;
}

.cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.3rem;
    margin-bottom: 0;
}

.cta-phone strong {
    font-weight: 700;
}

.cta-phone a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cta-phone a:hover {
    color: #5D6D7E;
}

/* Contact Form Section */
.contact-form-section {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 1rem;
}

.required {
    color: #ff0000;
}

.name-fields {
    display: grid;
    grid-template-columns: 150px 1fr 1fr;
    gap: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.btn-submit {
    width: 100%;
    background-color: #1a1a1a;
    color: white;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    background-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Messaging Section */
.messaging-section {
    margin-top: 30px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    padding-top: 25px;
}

.messaging-text {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 500;
}

.messaging-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-telegram {
    background-color: #0088cc;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-telegram:hover {
    background-color: #006ba6;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #1db954;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-chat {
    background-color: #619bdb;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(97, 155, 219, 0.3);
}

.btn-chat:hover {
    background-color: #4d7fb8;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(97, 155, 219, 0.4);
}

/* Footer */
.main-footer {
    background-color: #0f1d2a;
    color: white;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 0;
    position: relative;
}

.footer-section {
    margin-bottom: 0;
    position: relative;
    min-height: 120px;
}

/* Footer Brand Section */
.footer-brand {
    max-width: 280px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 0.8rem;
    filter: brightness(0) invert(1);
}

.footer-claim {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.footer-description {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin-bottom: 0;
}

/* Footer Section Headings */
.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer Lists */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-list i {
    color: #5D6D7E;
    font-size: 1rem;
    width: 20px;
    margin-right: 12px;
    flex-shrink: 0;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #5D6D7E;
}

.footer-list span {
    color: rgba(255, 255, 255, 0.9);
}

/* Footer Contact Button Wrappers */
.footer-contact-btn-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-top: 0;
}

.footer-contact-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 0.75rem;
    font-weight: 500;
    justify-content: center;
    box-sizing: border-box;
}

.footer-contact-btn i {
    font-size: 1rem;
    margin-bottom: 0;
}

.footer-contact-btn span {
    font-size: 0.75rem;
    text-align: center;
}

/* Compact Contact Icons */
.contact-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    align-items: center;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.contact-icon i {
    font-size: 1rem;
    margin: 0;
}

.contact-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Individual colors */
.contact-icon.whatsapp {
    background-color: #25D366;
}

.contact-icon.whatsapp:hover {
    background-color: #1db954;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.contact-icon.telegram {
    background-color: #0088cc;
}

.contact-icon.telegram:hover {
    background-color: #006ba6;
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.4);
}

.contact-icon.callback {
    background-color: #5D6D7E;
}

.contact-icon.callback:hover {
    background-color: #4A5568;
    box-shadow: 0 4px 12px rgba(93, 109, 126, 0.4);
}

.contact-icon.chat {
    background-color: #619bdb;
}

.contact-icon.chat:hover {
    background-color: #4d7fb8;
    box-shadow: 0 4px 12px rgba(97, 155, 219, 0.4);
}

.contact-icon.webex {
    background-color: #2ECC71;
}

.contact-icon.webex:hover {
    background-color: #27AE60;
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.4);
}

/* Tooltip on hover */
.contact-icon::after {
    content: attr(title);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.contact-icon:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Footer Bottom Bar */
.footer-bottom {
    background-color: #5D6D7E;
    padding: 20px 0;
    margin-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: white;
    font-weight: 500;
}

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

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-privacy {
    display: flex;
    align-items: center;
}

.btn-privacy-settings {
    background-color: white;
    color: #0f1d2a;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-privacy-settings:hover {
    background-color: #f0f0f0;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Callback Modal */
.callback-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
}

.callback-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.callback-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.callback-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 550px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 100000;
    animation: modalSlideIn 0.3s ease-out;
}

.callback-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.callback-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.callback-modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.callback-modal-close:hover {
    background-color: #f0f0f0;
    color: var(--text-dark);
}

.callback-modal-body {
    padding: 25px 30px;
}

.callback-modal-body > p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.callback-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group.half {
    width: 100%;
}

.callback-form .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.callback-form .form-group input,
.callback-form .form-group select,
.callback-form .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: #f8f9fa;
}

.callback-form .form-group input:focus,
.callback-form .form-group select:focus,
.callback-form .form-group textarea:focus {
    outline: none;
    border-color: #619bdb;
    background-color: white;
}

.callback-form textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-callback-submit {
    width: 100%;
    background-color: #619bdb;
    color: white;
    padding: 14px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-callback-submit:hover {
    background-color: #4d7fb8;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(97, 155, 219, 0.3);
}

/* Responsive */
@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .callback-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .callback-modal-body {
        padding: 20px;
    }
}

/* Privacy Modal */
.privacy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
}

.privacy-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.privacy-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.privacy-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    z-index: 100000;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.privacy-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.privacy-modal-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
}

.privacy-modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.privacy-modal-close:hover {
    background-color: #f0f0f0;
    color: var(--text-dark);
}

.privacy-modal-body {
    padding: 25px 30px;
}

.privacy-modal-body p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 25px;
}

.privacy-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.privacy-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.privacy-option:hover {
    background-color: #f8f9fa;
}

.privacy-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.privacy-option span {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.privacy-modal-footer {
    padding: 20px 30px 25px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.privacy-modal-footer .btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-privacy-accept {
    background-color: #5D6D7E;
    color: white;
}

.btn-privacy-accept:hover {
    background-color: #4A5568;
    transform: translateY(-1px);
}

.btn-privacy-decline {
    background-color: #6c757d;
    color: white;
}

.btn-privacy-decline:hover {
    background-color: #5a6268;
    transform: translateY(-1px);
}

.privacy-modal-footer .btn-privacy-settings {
    background-color: white;
    color: #0f1d2a;
    border: 2px solid #0f1d2a;
}

.privacy-modal-footer .btn-privacy-settings:hover {
    background-color: #0f1d2a;
    color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-wrapper {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .logo img {
        height: 40px;
    }
    
    .quick-contact-icons {
        margin-left: 1.5rem;
        margin-right: 1rem;
        gap: 0.5rem;
    }
    
    .quick-contact-icons .icon-btn {
        width: 28px;
        height: 28px;
    }
    
    .quick-contact-icons .icon-btn i {
        font-size: 0.75rem;
    }
    
    .navbar.active .nav-wrapper {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        top: 70px;
        background-color: white;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem;
    }
    
    .navbar.active .nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    
    .navbar.active .header-right {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    /* Portal buttons responsive */
    .portal-buttons {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }
    
    /* Show text and style as buttons in mobile */
    .mobile-text {
        display: inline;
    }
    
    .portal-buttons .icon-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
        border-radius: 6px;
        gap: 8px;
    }
    
    .portal-buttons .icon-btn.customer-portal-btn {
        background-color: #1a1a1a !important;
    }
    
    .portal-buttons .icon-btn.customer-portal-btn:hover {
        background-color: #000 !important;
    }
    
    .portal-buttons .icon-btn.employee-portal-btn {
        background-color: #5D6D7E !important;
    }
    
    .portal-buttons .icon-btn.employee-portal-btn:hover {
        background-color: #4A5568 !important;
    }
    
    .navbar.active .contact-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: #f8f9fa;
        margin-left: 20px;
        margin-top: 10px;
        display: none;
    }
    
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .kundenportal-button {
        margin: 20px 0;
    }
    
    .hero-section {
        background-attachment: scroll;
        height: 500px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-hero {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-overlay {
        justify-content: center;
    }
    
    .city-content,
    .benefits-content {
        grid-template-columns: 1fr;
    }
    
    /* Praxis section responsive */
    .praxis-section {
        padding: 40px 0;
        min-height: 450px;
    }
    
    .praxis-content-box {
        margin: 0 auto;
        padding: 18px;
        max-width: 240px;
        background: rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .praxis-content-box h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .praxis-list li {
        font-size: 0.85rem;
        padding: 4px 0;
    }
    
    .praxis-contact .phone-number {
        font-size: 1.2rem;
    }
    
    /* NEUE OPTION: Text-Box ÜBER dem Bild (gestapelt) */
    .city-section {
        padding: 40px 20px;
        background-color: var(--bg-white);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .city-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 500px;
        gap: 30px;
    }
    
    /* Text-Box zuerst (oben) */
    .city-text-box {
        order: 1;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border-radius: 15px;
        padding: 25px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        margin: 0;
        max-width: 100%;
        width: 100%;
        opacity: 1;
        transform: none;
        position: relative;
        z-index: 2;
    }
    
    /* Bild danach (unten) */
    .city-image-wrapper {
        order: 2;
        width: 100%;
        max-width: 500px;
        opacity: 1;
        transform: none;
        position: relative;
        z-index: 1;
    }
    
    .city-image {
        width: 100%;
        height: 300px;
        object-fit: cover;
        object-position: center;
        border-radius: 12px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }
    
    .process-grid,
    .reviews-grid,
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .phone-number {
        font-size: 2rem;
    }
    
    /* CTA responsive */
    .cta-box {
        padding: 30px 20px;
        max-width: 90%;
    }
    
    .cta-box h2 {
        font-size: 1.6rem;
    }
    
    .cta-phone {
        font-size: 1.3rem;
        flex-wrap: wrap;
    }
    
    .arrow-pointer {
        border-left-width: 20px;
        border-right-width: 20px;
        border-top-width: 20px;
        bottom: -20px;
    }
    
    .name-fields {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .messaging-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-telegram,
    .btn-whatsapp {
        width: 200px;
        justify-content: center;
    }
    
    /* Footer responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .privacy-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .privacy-modal-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .privacy-modal-footer .btn {
        width: 100%;
    }
    
    /* Footer contact buttons responsive */
    .footer-contact-btn-wrapper {
        position: static;
        margin-top: 20px;
    }
    
    .footer-section {
        min-height: auto;
    }
    
    .footer-contact-btn {
        padding: 12px;
        font-size: 0.8rem;
    }
    
    .footer-contact-btn i {
        font-size: 1.1rem;
    }
    
    .footer-contact-btn span {
        font-size: 0.75rem;
    }
    
    /* Contact icons responsive */
    @media (max-width: 768px) {
        .contact-icons {
            justify-content: center;
            margin-top: 15px;
        }
        
        .contact-icon {
            width: 32px;
            height: 32px;
        }
        
        .contact-icon i {
            font-size: 0.9rem;
        }
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    /* Even smaller logo and icons for very small screens */
    .logo img {
        height: 35px;
    }
    
    .quick-contact-icons {
        margin-left: 1rem;
        margin-right: 0.5rem;
        gap: 0.4rem;
    }
    
    .quick-contact-icons .icon-btn {
        width: 26px;
        height: 26px;
    }
    
    .quick-contact-icons .icon-btn i {
        font-size: 0.7rem;
    }
}