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

:root {
    --primary: #4361ee;
    --primary-dark: #3a56d4;
    --secondary: #7209b7;
    --accent: #f72585;
    --dark: #212529;
    --light: #f8f9fa;
    --gray: #6c757d;
    --gray-light: #e9ecef;
    --success: #4cc9f0;
    --error: #f72585;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    
    /* Dark Mode Variablen */
    --background-light: #ffffff;
    --background-dark: #1a1a1a;
    --text-light: #212529;
    --text-dark: #f8f9fa;
    --card-light: #ffffff;
    --card-dark: #2d2d2d;
    --border-light: #e9ecef;
    --border-dark: #444;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--background-light);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark-mode {
    background-color: var(--background-dark);
    color: var(--text-dark);
}

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

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.dark-mode p {
    color: #adb5bd;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

.highlight {
    color: var(--primary);
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--primary);
    width: 0%;
    z-index: 1001;
    transition: width 0.3s ease;
}

/* Dark Mode Toggle */
.dark-toggle {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.dark-toggle:hover {
    transform: scale(1.1);
    background-color: var(--primary-dark);
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(67, 97, 238, 0.3);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: var(--transition);
}

.floating-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.4);
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 998;
}

.chat-toggle {
    background-color: var(--accent);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    font-size: 1.5rem;
    transition: var(--transition);
}

.chat-toggle:hover {
    transform: scale(1.1);
    background-color: #e1156d;
}

.chat-window {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 350px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.dark-mode .chat-window {
    background: var(--card-dark);
    color: var(--text-dark);
}

.chat-window.active {
    display: flex;
}

.chat-header {
    background-color: var(--primary);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

.chat-body {
    padding: 1rem;
    flex-grow: 1;
    max-height: 300px;
    overflow-y: auto;
}

.chat-message {
    margin-bottom: 1rem;
    padding: 0.8rem;
    border-radius: var(--border-radius);
    max-width: 80%;
}

.chat-message.bot {
    background-color: var(--gray-light);
    align-self: flex-start;
}

.dark-mode .chat-message.bot {
    background-color: #3a3a3a;
}

.chat-message.user {
    background-color: var(--primary);
    color: white;
    align-self: flex-end;
    margin-left: auto;
}

.chat-input {
    display: flex;
    padding: 1rem;
    border-top: 1px solid var(--gray-light);
}

.dark-mode .chat-input {
    border-color: var(--border-dark);
}

.chat-input input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    border-right: none;
}

.dark-mode .chat-input input {
    background-color: #3a3a3a;
    border-color: var(--border-dark);
    color: var(--text-dark);
}

.chat-input button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-nav {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    border: none;
    font-family: 'Inter', sans-serif;
}

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

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

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

.btn-secondary:hover {
    background-color: rgba(67, 97, 238, 0.05);
    transform: translateY(-3px);
}

.btn-nav {
    background-color: var(--primary);
    color: white;
    padding: 10px 22px;
    font-size: 0.95rem;
}

.btn-nav:hover {
    background-color: var(--primary-dark);
}

.btn-nav.active {
    background-color: var(--secondary);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.dark-mode .navbar {
    background-color: var(--card-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.dark-mode .navbar.scrolled {
    background-color: rgba(45, 45, 45, 0.95);
}

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

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
}

.dark-mode .logo {
    color: var(--text-dark);
}

.logo span {
    color: var(--primary);
}

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

.nav-links a {
    font-weight: 500;
    color: var(--dark);
    transition: var(--transition);
}

.dark-mode .nav-links a {
    color: var(--text-dark);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

.menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

.dark-mode .menu-btn {
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #f5f7ff 0%, #eef1ff 100%);
    overflow: hidden;
}

.dark-mode .hero {
    background: linear-gradient(135deg, #1a1f36 0%, #2d3748 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--gray);
}

.dark-mode .hero p {
    color: #adb5bd;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.feature i {
    color: var(--success);
}

.hero-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-10deg);
    transition: var(--transition);
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--gray);
}

.dark-mode .section-subtitle {
    color: #adb5bd;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

.dark-mode .service-card {
    background-color: var(--card-dark);
    border-color: var(--border-dark);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(67, 97, 238, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.dark-mode .service-icon {
    background-color: rgba(67, 97, 238, 0.2);
}

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

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

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 500;
    margin-top: 1.5rem;
}

/* Guarantees */
.guarantees {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.dark-mode .guarantees {
    background-color: #252525;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.guarantee-card {
    text-align: center;
    padding: 2rem;
}

.guarantee-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.guarantee-card h3 {
    margin-bottom: 1rem;
}

/* Trust Signals */
.trust-signals {
    padding: 60px 0;
    text-align: center;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.partner-logo {
    padding: 1.5rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
}

.dark-mode .partner-logo {
    background-color: var(--card-dark);
}

.partner-logo i {
    font-size: 2rem;
    color: var(--primary);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
}

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

.cta p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
}

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

.cta .btn-primary:hover {
    background-color: var(--gray-light);
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

.footer-col h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul li i {
    margin-right: 10px;
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

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

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
    color: white;
}

/* Page Header */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, #f5f7ff 0%, #eef1ff 100%);
    text-align: center;
}

.dark-mode .page-header {
    background: linear-gradient(135deg, #1a1f36 0%, #2d3748 100%);
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Services Detail */
.services-detail {
    padding: 80px 0;
}

.service-detail-card {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-icon {
    flex: 1;
    display: flex;
    justify-content: center;
}

.service-detail-icon i {
    font-size: 8rem;
    color: var(--primary);
    opacity: 0.8;
}

.service-detail-content {
    flex: 2;
}

.service-features {
    margin-top: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.service-features i {
    color: var(--success);
}

/* Multi-Step Formular */
.form-progress {
    margin-bottom: 3rem;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: var(--gray-light);
    z-index: 1;
}

.dark-mode .progress-steps::before {
    background-color: var(--border-dark);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step span {
    width: 40px;
    height: 40px;
    background-color: white;
    border: 2px solid var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.dark-mode .step span {
    background-color: var(--card-dark);
    border-color: var(--border-dark);
    color: var(--text-dark);
}

.step.active span {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.step p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

.dark-mode .step p {
    color: #adb5bd;
}

.step.active p {
    color: var(--primary);
    font-weight: 500;
}

.progress-bar-container {
    height: 6px;
    background-color: var(--gray-light);
    border-radius: 3px;
    overflow: hidden;
}

.dark-mode .progress-bar-container {
    background-color: var(--border-dark);
}

.progress-bar-fill {
    height: 100%;
    background-color: var(--primary);
    width: 33.33%;
    transition: width 0.3s ease;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.info-box {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: rgba(67, 97, 238, 0.05);
    border-radius: var(--border-radius);
}

.dark-mode .info-box {
    background-color: rgba(67, 97, 238, 0.1);
}

.info-box i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 5px;
}

.info-box h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-box p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-details {
    margin-top: 3rem;
}

.contact-details h3 {
    margin-bottom: 1rem;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.contact-details i {
    color: var(--primary);
    width: 20px;
}

.contact-form-container {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-light);
}

.dark-mode .contact-form-container {
    background-color: var(--card-dark);
    border-color: var(--border-dark);
}

.contact-form h2 {
    margin-bottom: 2rem;
    text-align: center;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

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

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

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background-color: white;
    color: var(--dark);
}

.dark-mode input,
.dark-mode select,
.dark-mode textarea {
    background-color: #3a3a3a;
    border-color: var(--border-dark);
    color: var(--text-dark);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.1);
}

.dark-mode input:focus,
.dark-mode select:focus,
.dark-mode textarea:focus {
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
}

.error-message {
    color: var(--error);
    font-size: 0.85rem;
    margin-top: 0.3rem;
    min-height: 1.2rem;
}

input.error, select.error, textarea.error {
    border-color: var(--error);
}

.char-count {
    text-align: right;
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 0.3rem;
}

.dark-mode .char-count {
    color: #adb5bd;
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: normal;
    cursor: pointer;
    font-size: 0.95rem;
}

.checkbox-label input {
    width: auto;
}

.form-step-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1rem;
}

.form-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--gray);
    text-align: center;
}

.dark-mode .form-note {
    color: #adb5bd;
}

/* File Upload */
.file-upload {
    margin-top: 0.5rem;
}

.file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border: 2px dashed var(--gray-light);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.dark-mode .file-label {
    border-color: var(--border-dark);
}

.file-label:hover {
    border-color: var(--primary);
    background-color: rgba(67, 97, 238, 0.05);
}

.dark-mode .file-label:hover {
    background-color: rgba(67, 97, 238, 0.1);
}

.file-label i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.file-list {
    margin-top: 1rem;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background-color: var(--gray-light);
    border-radius: var(--border-radius);
    margin-bottom: 0.5rem;
}

.dark-mode .file-item {
    background-color: #3a3a3a;
}

.file-item button {
    background: none;
    border: none;
    color: var(--error);
    cursor: pointer;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 500px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.dark-mode .modal-content {
    background-color: var(--card-dark);
    color: var(--text-dark);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background-color: var(--primary);
    color: white;
}

.modal-header h2 {
    color: white;
    margin-bottom: 0;
    font-size: 1.8rem;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.modal-body {
    padding: 2rem;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: var(--success);
    margin-bottom: 1.5rem;
}

.project-details {
    text-align: left;
    background-color: var(--gray-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
}

.dark-mode .project-details {
    background-color: #3a3a3a;
}

.project-details h4 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.project-details p {
    margin-bottom: 0.5rem;
}

.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--gray-light);
    text-align: center;
}

.dark-mode .modal-footer {
    border-color: var(--border-dark);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1002;
    display: none;
}

.dark-mode .cookie-banner {
    background-color: var(--card-dark);
    color: var(--text-dark);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .service-detail-card, .service-detail-card.reverse {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 3rem;
        gap: 2rem;
        transition: var(--transition);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .dark-mode .nav-links {
        background-color: var(--card-dark);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .menu-btn {
        display: block;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .chat-window {
        width: 300px;
        right: -20px;
    }
    
    .floating-cta span {
        display: none;
    }
    
    .floating-cta {
        padding: 15px;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        justify-content: center;
    }
    
    .floating-cta i {
        margin: 0;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .services-grid, .guarantee-grid {
        grid-template-columns: 1fr;
    }
    
    .form-step-buttons {
        flex-direction: column;
    }
    
    .dark-toggle {
        bottom: 90px;
        left: 20px;
    }
    
    .floating-cta {
        bottom: 90px;
        right: 20px;
    }
    
    .chat-widget {
        bottom: 150px;
        right: 20px;
    }
}

/* Touch-friendly Optimierung */
@media (max-width: 768px) {
    .btn-primary, .btn-secondary, input[type="submit"], button {
        min-height: 44px;
    }
    
    input, select, textarea {
        font-size: 16px; /* Verhindert Zoom auf iOS */
    }
}

/* Landscape Mode Optimierung */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 100px 0 40px;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}