/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base styles */
body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #f8f9fa;
}

/* Header styles */
header {
    background: linear-gradient(135deg, #1a365d 0%, #1a202c 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

/* Logo styles */
.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 150px;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.contact-info {
    text-align: right;
    font-size: 0.9rem;
}

.contact-info p {
    margin: 0;
    font-weight: 600;
    color: #f3f4f6;
}

/* Navigation styles */
nav {
    background-color: rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,255,255,0.2);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    flex-wrap: wrap;
}

nav li {
    margin: 0 0.5rem;
    position: relative;
}

nav a {
    color: #f8fafc;
    text-decoration: none;
    padding: 0.8rem 1rem;
    display: block;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 600;
}

nav a:hover, nav a.active {
    background-color: rgba(255,255,255,0.25);
    transform: translateY(-1px);
    color: #ffffff;
}

/* Dropdown styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, #1a365d 0%, #1a202c 100%);
    min-width: 250px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(255,255,255,0.2);
}

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

.dropdown-menu li {
    margin: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.dropdown-menu a {
    padding: 0.8rem 1.2rem;
    border-radius: 0;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    color: #f8fafc;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background-color: rgba(255,255,255,0.25);
    padding-left: 1.5rem;
    transform: none;
    color: #ffffff;
}

.dropdown-menu a.active {
    background-color: rgba(251, 191, 36, 0.3);
    color: #fbbf24;
    font-weight: 700;
}

.dropdown-menu a.active:hover {
    background-color: rgba(251, 191, 36, 0.4);
    color: #f59e0b;
}

/* Main content styles */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

/* Page header */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #ffffff;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 400;
    color: #e5e7eb;
}

/* Sitemap styles */
.sitemap-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sitemap-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.sitemap-intro h2 {
    color: #111827;
    margin-bottom: 1rem;
}

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

.sitemap-section {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #1e40af;
}

.sitemap-section h3 {
    color: #111827;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

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

.sitemap-list li {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.sitemap-list li:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

.sitemap-list a {
    color: #1e40af;
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.sitemap-list a:hover {
    color: #1e3a8a;
    text-decoration: underline;
}

.sitemap-list p {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Hero section */
.hero {
    text-align: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
    opacity: 0.95;
    color: #e5e7eb;
}

.hero-text {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    line-height: 1.7;
    color: #f3f4f6;
}

/* Service sections */
.services-overview, .service-detail {
    margin-bottom: 3rem;
}

.services-overview h2, .service-detail h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #111827;
    font-weight: 700;
}

/* Service cards and grids */
.services-grid, .feature-grid, .target-grid, .areas-grid, .transport-grid, 
.moving-grid, .clearing-grid, .winter-grid, .seasons-grid, .pricing-grid,
.cleaning-grid, .fleet-grid, .response-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-card, .feature-item, .target-item, .area-item, .transport-item, 
.moving-item, .clearing-item, .winter-item, .season-item, .pricing-item,
.cleaning-item, .vehicle-item, .response-item {
    background: white;
    padding: 1.8rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #1e40af;
}

.service-card:hover, .feature-item:hover, .target-item:hover, .transport-item:hover,
.moving-item:hover, .clearing-item:hover, .winter-item:hover, .season-item:hover,
.pricing-item:hover, .cleaning-item:hover, .vehicle-item:hover, .response-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card h3, .feature-item h3, .target-item h3, .transport-item h3,
.moving-item h3, .clearing-item h3, .winter-item h3, .season-item h3,
.pricing-item h3, .cleaning-item h3, .vehicle-item h3, .response-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 700;
}

.service-card p, .feature-item p, .target-item p, .transport-item p,
.moving-item p, .clearing-item p, .winter-item p, .season-item p,
.pricing-item p, .cleaning-item p, .vehicle-item p, .response-item p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #374151;
}

.feature-item ul, .moving-item ul, .clearing-item ul, .winter-item ul,
.season-item ul, .pricing-item ul, .cleaning-item ul {
    list-style: none;
    padding: 0;
}

.feature-item li, .moving-item li, .clearing-item li, .winter-item li,
.season-item li, .pricing-item li, .cleaning-item li {
    padding: 0.3rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-item li:before, .moving-item li:before, .clearing-item li:before,
.winter-item li:before, .season-item li:before, .pricing-item li:before,
.cleaning-item li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1e40af;
    font-weight: bold;
}

/* Service links */
.service-link {
    display: inline-block;
    background: #1e40af;
    color: white;
    padding: 0.6rem 1.2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.service-link:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
    color: #ffffff;
}

/* Features and advantages */
.features, .why-choose-us, .advantages {
    margin: 3rem 0;
}

.features h2, .why-choose-us h2, .advantages h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #111827;
    font-weight: 700;
}

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

.feature {
    text-align: center;
    padding: 1.5rem;
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #111827;
    font-weight: 600;
}

.advantage-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.advantage-list li {
    padding: 1rem;
    margin: 0.5rem 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border-left: 4px solid #1e40af;
    color: #374151;
}

.advantage-list strong {
    color: #111827;
}

/* CTA sections */
.contact-section, .cta-section {
    text-align: center;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.contact-section h2, .cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.contact-info-detailed, .areas-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-item, .area-section {
    text-align: center;
}

.contact-item h4, .area-section h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #fbbf24;
    font-weight: 600;
}

/* Buttons */
.cta-button, .submit-button, .contact-btn {
    display: inline-block;
    background: #f59e0b;
    color: #111827;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover, .submit-button:hover, .contact-btn:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    color: #111827;
}

.cta-button.secondary {
    background: rgba(255,255,255,0.9);
    color: #111827;
    font-weight: 600;
}

.cta-button.secondary:hover {
    background: rgba(255,255,255,1);
    color: #111827;
}

.cta-buttons {
    margin-top: 2rem;
}

/* Contact page styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.contact-form-section, .contact-info-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-intro h2 {
    font-size: 2rem;
    color: #111827;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Form styles */
.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: 600;
    color: #111827;
}

input, textarea, select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    line-height: 1.5;
}

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

.contact-details .contact-item {
    text-align: left;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #1e40af;
}

.contact-details h4 {
    color: #111827;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.quick-contact {
    margin: 2rem 0;
    text-align: center;
}

.quick-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.phone-btn {
    background: #10b981;
}

.email-btn {
    background: #6366f1;
}

.phone-btn:hover {
    background: #059669;
}

.email-btn:hover {
    background: #4f46e5;
}

.services-list {
    list-style: none;
}

.services-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.services-list a {
    color: #1e40af;
    text-decoration: none;
    font-weight: 500;
}

.services-list a:hover {
    text-decoration: underline;
    color: #1e3a8a;
}

/* Success and error messages */
.success {
    background-color: #d1fae5;
    color: #065f46;
    padding: 1rem;
    border-left: 4px solid #10b981;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.error {
    background-color: #fed7d7;
    color: #991b1b;
    padding: 1rem;
    border-left: 4px solid #ef4444;
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

/* Process steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.step h3 {
    color: #2c5282;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Impressum styles */
.impressum-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

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

.impressum-section {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
}

.impressum-section h3 {
    color: #2c5282;
    margin-bottom: 1rem;
}

.legal-sections {
    margin-top: 3rem;
}

.legal-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.legal-section h3 {
    color: #2c5282;
    margin-bottom: 1rem;
}

.legal-section h4 {
    color: #2c5282;
    margin: 1.5rem 0 0.5rem 0;
}

.impressum-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
    text-align: center;
}

/* Footer styles */
footer {
    background: linear-gradient(135deg, #2c5282 0%, #2a4365 100%);
    color: white;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.6;
    opacity: 0.9;
}

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

.footer-bottom a {
    color: #ffd700;
    text-decoration: none;
}

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

/* Responsive design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-info {
        text-align: center;
    }
    
    /* Responsive logo adjustments */
    .logo-image {
        height: 40px;
        max-width: 120px;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav li {
        margin: 0.2rem 0;
        width: 100%;
        text-align: center;
    }
    
    nav li a {
        width: 100%;
    }
    
    /* Mobile dropdown adjustments */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0,0,0,0.2);
        border: none;
        border-radius: 0;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown:hover .dropdown-menu,
    .dropdown.open .dropdown-menu {
        max-height: 300px;
    }
    
    .dropdown-menu li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .dropdown-menu a {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .dropdown-menu a:hover {
        padding-left: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .services-grid, .feature-grid, .target-grid, .areas-grid, .transport-grid,
    .moving-grid, .clearing-grid, .winter-grid, .seasons-grid, .pricing-grid,
    .cleaning-grid, .fleet-grid, .response-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .quick-buttons {
        flex-direction: column;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .impressum-grid {
        grid-template-columns: 1fr;
    }
    
    main {
        margin: 1rem auto;
        padding: 0 1rem;
    }
    
    .contact-section, .cta-section, .hero {
        padding: 2rem 1rem;
    }
}