/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.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; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #047857, #065f46);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #059669;
    border: 2px solid #059669;
}

.btn-secondary:hover {
    background: #059669;
    color: white;
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h1 {
    color: #059669;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #059669;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.85), rgba(4, 120, 87, 0.9)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23f0fdf4" width="1200" height="800"/><path fill="%23dcfce7" d="M0,400 Q300,300 600,400 T1200,400 L1200,800 L0,800 Z"/></svg>') center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: #f8fafc;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-intro h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.about-intro p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #475569;
}

.trust-elements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.trust-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-item i {
    font-size: 2.5rem;
    color: #059669;
    margin-bottom: 1rem;
}

.trust-item h4 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.social-proof {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.social-proof h4 {
    color: #1e293b;
    text-align: center;
    margin-bottom: 2rem;
}

.testimonial {
    background: #f1f5f9;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 4rem;
    color: #059669;
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
}

.testimonial p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #475569;
}

.testimonial cite {
    color: #059669;
    font-weight: 500;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
}

/* Services Section */
.services {
    background: white;
}

.services-content {
    max-width: 1000px;
    margin: 0 auto;
}

.main-service {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.main-service h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.main-service p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #475569;
}

.service-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
}

.service-list i {
    color: #10b981;
    font-size: 1.2rem;
}

.additional-services {
    margin-bottom: 3rem;
}

.additional-services h4 {
    color: #1e293b;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: #059669;
}

.service-item i {
    font-size: 2rem;
    color: #059669;
    margin-bottom: 1rem;
}

.service-item h5 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.process {
    background: #f1f5f9;
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.process h4 {
    color: #1e293b;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h5 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.cta-section {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
}

.cta-section h4 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.cta-section .btn {
    background: white;
    color: #059669;
    font-weight: 600;
}

.cta-section .btn:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

/* Region Section */
.region {
    background: #f8fafc;
}

.region-content {
    max-width: 1000px;
    margin: 0 auto;
}

.region-text h3,
.region-coverage h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.region-text p,
.region-coverage p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #475569;
}

.city-districts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.district-group {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.district-group h4 {
    color: #059669;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.district-group ul {
    list-style: none;
}

.district-group li {
    padding: 0.5rem 0;
    color: #64748b;
    border-bottom: 1px solid #e2e8f0;
}

.district-group li:last-child {
    border-bottom: none;
}

.district-note {
    text-align: center;
    font-style: italic;
    color: #059669;
    font-weight: 500;
}

.cities {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.city {
    background: #059669;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.city:hover {
    transform: translateY(-2px);
    background: #047857;
}

/* Partners Section */
.partners {
    background: #f8fafc;
}

.partners-content {
    max-width: 1000px;
    margin: 0 auto;
}

.partners-table {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.partners-table table {
    width: 100%;
    border-collapse: collapse;
}

.partners-table thead th {
    background: #f1f5f9;
    color: #64748b;
    font-weight: 600;
    padding: 1.5rem 2rem;
    text-align: left;
    border-bottom: 2px solid #e2e8f0;
}

.partners-table tbody td {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: middle;
}

.partners-table tbody tr:last-child td {
    border-bottom: none;
}

.partners-table tbody tr:hover {
    background: #f8fafc;
}

.partner-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.partner-info i {
    color: #059669;
    font-size: 1.25rem;
    width: 20px;
}

.partner-info span {
    font-weight: 500;
    color: #1e293b;
}

.partners-table .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Contact Section */
.contact {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-details h3 {
    color: #1e293b;
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    color: #059669;
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.contact-item a {
    color: #059669;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: #1e293b;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e5e7eb;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #059669;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-group a {
    color: #059669;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #059669;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.legal-info {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        gap: 2rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .city-districts {
        grid-template-columns: 1fr;
    }

    .cities {
        justify-content: flex-start;
    }

    .trust-elements {
        grid-template-columns: 1fr;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-list {
        grid-template-columns: 1fr;
    }

    .partners-table thead th,
    .partners-table tbody td {
        padding: 1rem;
    }

    .partners-table {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .about-intro h3,
    .main-service h3,
    .region-text h3,
    .region-coverage h3 {
        font-size: 1.5rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .main-service,
    .process,
    .cta-section {
        padding: 2rem;
    }
}

/* Animationen */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trust-item,
.service-item,
.step {
    animation: fadeInUp 0.6s ease-out;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #059669;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #047857;
}
