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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #ffffff;
}

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

a {
    color: #e74c3c;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #c0392b;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    margin: 0;
    text-align: center;
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: #27ae60;
    color: white;
}

.btn-cookie-accept:hover {
    background: #229954;
}

.btn-cookie-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cookie-reject:hover {
    background: rgba(255,255,255,0.1);
}

/* Navigation */
.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #e74c3c;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('https://images.unsplash.com/photo-1555244162-803834f70033?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.75);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Buttons and CTAs */
.cta-primary,
.cta-secondary,
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.cta-primary,
.btn-primary {
    background: #e74c3c;
    color: white;
}

.cta-primary:hover,
.btn-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.cta-secondary,
.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-secondary:hover,
.btn-secondary:hover {
    background: white;
    color: #e74c3c;
}

.cta-inline {
    color: #e74c3c;
    font-weight: 600;
    font-size: 1.05rem;
    border-bottom: 2px solid #e74c3c;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    border-bottom-color: transparent;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.intro-section,
.story-section,
.problem-section,
.solution-section,
.trust-section,
.services-section,
.guarantee-section,
.order-section,
.final-cta-section {
    padding: 80px 0;
}

.bg-light {
    background: #f8f9fa;
}

.bg-dark {
    background: #2c3e50;
    color: white;
}

.bg-dark h2,
.bg-dark h3 {
    color: white;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #34495e;
}

.section-intro {
    font-size: 1.15rem;
    color: #7f8c8d;
    margin-bottom: 40px;
    text-align: center;
}

/* Story Grid */
.story-grid {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.story-text,
.story-image {
    flex: 1;
    min-width: 300px;
}

.story-text p {
    margin-bottom: 15px;
}

.story-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Problem Cards */
.problem-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.problem-card {
    background: white;
    padding: 30px;
    border-left: 4px solid #e74c3c;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.problem-card h3 {
    color: #e74c3c;
    margin-bottom: 10px;
}

/* Solution Grid */
.solution-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.solution-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.solution-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255,255,255,0.3);
    min-width: 80px;
}

.solution-item h3 {
    color: white;
}

/* Testimonials */
.testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    position: relative;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.testimonial cite {
    font-style: normal;
    color: #7f8c8d;
    font-weight: 600;
}

/* Services Grid */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
}

.service-card p {
    padding: 0 20px 15px;
    color: #7f8c8d;
    font-size: 0.95rem;
    flex-grow: 1;
}

.service-details {
    padding: 0 20px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.service-tag {
    background: #ecf0f1;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #2c3e50;
}

.service-price {
    font-weight: 700;
    color: #e74c3c;
    font-size: 1.1rem;
}

.btn-select-service {
    margin: 0 20px 20px;
    padding: 12px 25px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #c0392b;
}

/* Guarantee Section */
.guarantee-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.guarantee-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.guarantee-item h4 {
    color: #e74c3c;
    font-size: 1.2rem;
}

/* Order Section */
.order-content {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.order-info,
.contact-form {
    flex: 1;
    min-width: 300px;
}

.order-benefits {
    list-style: none;
    margin-top: 20px;
}

.order-benefits li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.order-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.3rem;
}

/* Forms */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

.form-group-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
}

.form-group-checkbox input {
    margin-top: 4px;
    width: auto;
}

.form-group-checkbox label {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

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

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

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

.footer-col p {
    color: #bdc3c7;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #bdc3c7;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta-btn {
    background: #e74c3c;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.5);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 80px 20px 60px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: white;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* About Page */
.about-intro {
    padding: 80px 0;
}

.about-grid {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text,
.about-image {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 15px;
}

.about-image img {
    border-radius: 8px;
}

.philosophy-section {
    padding: 80px 0;
}

.philosophy-section p {
    font-size: 1.15rem;
    margin-bottom: 15px;
    line-height: 1.9;
}

.values-section {
    padding: 80px 0;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.team-section {
    padding: 80px 0;
}

.team-section p {
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.journey-section {
    padding: 80px 0;
}

.timeline {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.timeline-year {
    font-size: 2rem;
    font-weight: 800;
    color: #e74c3c;
    min-width: 100px;
}

.timeline-content h3 {
    margin-bottom: 10px;
}

.approach-section {
    padding: 80px 0;
}

.approach-steps {
    margin-top: 30px;
    padding-left: 20px;
}

.approach-steps li {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.why-dortmund-section {
    padding: 80px 0;
}

.split-content {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.split-text,
.split-image {
    flex: 1;
    min-width: 300px;
}

.split-text p {
    margin-bottom: 15px;
}

.split-image img {
    border-radius: 8px;
}

.cta-about-section {
    padding: 80px 0;
    text-align: center;
}

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

.service-detail {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

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

.service-detail-content,
.service-detail-image {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h2 {
    margin-bottom: 20px;
}

.service-price-badge {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-detail-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-detail-content ul {
    margin: 15px 0 15px 30px;
}

.service-detail-content li {
    margin-bottom: 10px;
}

.service-cta {
    margin-top: 30px;
}

.service-detail-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-info-section {
    padding: 80px 0;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.cta-services-section {
    padding: 60px 0;
    text-align: center;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info,
.contact-map {
    flex: 1;
    min-width: 300px;
}

.contact-details {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    color: #e74c3c;
    margin-bottom: 10px;
}

.contact-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 5px;
}

.map-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.map-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.9);
    color: white;
    padding: 15px;
    text-align: center;
}

.directions {
    margin-top: 30px;
}

.directions h3 {
    margin-bottom: 15px;
}

.directions p {
    margin-bottom: 10px;
}

.contact-faq {
    padding: 80px 0;
}

.faq-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.cta-contact-section {
    padding: 60px 0;
    text-align: center;
}

/* Thanks Page */
.thanks-section {
    padding: 100px 0 80px;
}

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

.thanks-icon {
    margin: 0 auto 30px;
    width: 80px;
}

.thanks-content h1 {
    color: #27ae60;
    margin-bottom: 15px;
}

.thanks-lead {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.thanks-details {
    text-align: left;
    margin: 40px 0;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.thanks-steps {
    margin-top: 20px;
    padding-left: 20px;
}

.thanks-steps li {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.thanks-service-info {
    background: #ecf0f1;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    text-align: left;
}

.thanks-contact {
    margin: 40px 0;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.thanks-extra {
    padding: 80px 0;
}

.inspiration-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.inspiration-card {
    flex: 1;
    min-width: 280px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.inspiration-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.inspiration-card h3 {
    padding: 20px 20px 10px;
}

.inspiration-card p {
    padding: 0 20px 20px;
    color: #7f8c8d;
}

/* Legal Pages */
.legal-page {
    padding: 60px 0;
}

.legal-updated {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.legal-page h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.legal-page h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.legal-page h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.legal-page p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-page ul {
    margin: 15px 0 15px 30px;
}

.legal-page li {
    margin-bottom: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 10px 0;
        border-bottom: 1px solid #ecf0f1;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .story-grid,
    .about-grid,
    .split-content,
    .service-detail {
        flex-direction: column;
    }

    .service-detail.reverse {
        flex-direction: column;
    }

    .solution-item {
        flex-direction: column;
        gap: 15px;
    }

    .solution-number {
        min-width: auto;
    }

    .timeline-item {
        flex-direction: column;
        gap: 10px;
    }

    .timeline-year {
        font-size: 1.5rem;
        min-width: auto;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-cta-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 25px;
    }

    .cookie-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .services-grid,
    .values-grid,
    .info-grid,
    .inspiration-grid {
        gap: 20px;
    }

    .service-card,
    .value-card,
    .info-card,
    .inspiration-card {
        min-width: 100%;
    }
}
