/* ELBA Services - Reinigung Website CSS */
/* Professional Cleaning Services Styling */

/* Reset und Grundlagen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header */
header {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.logo-image {
    height: 50px;
    width: auto;
    margin-right: 10px;
    border-radius: 8px;
}

.contact-info {
    color: #fbbf24;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Navigation */
nav {
    background: rgba(30, 64, 175, 0.95);
    backdrop-filter: blur(10px);
}

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

nav > ul > li {
    position: relative;
}

nav a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

nav a:hover, nav a.active {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e40af;
    transform: translateY(-2px);
}

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

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 0 0 10px 10px;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

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

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

.dropdown-menu a {
    color: #374151;
    padding: 0.8rem 1.5rem;
    background: white;
    border-radius: 0;
}

.dropdown-menu a:hover, .dropdown-menu a.active {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    transform: translateY(0);
}

.dropdown.open .dropdown-menu {
    display: block;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #1e3a8a 100%);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 0;
}

.service-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 50%, #3b82f6 100%);
    padding: 3rem 2rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #fbbf24;
}

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

/* Main Content */
main {
    min-height: calc(100vh - 200px);
}

/* Services Overview */
.services-overview {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.services-overview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e40af;
}

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

.services-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.intro-image {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card h3 {
    font-size: 1.5rem;
    color: #1e40af;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #4b5563;
    line-height: 1.7;
}

.service-link {
    display: inline-block;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e40af;
    transform: translateY(-2px);
}

/* Why Choose Us */
.why-choose-us {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 2rem;
    margin-top: 3rem;
}

.why-choose-us h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e40af;
}

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

.feature {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-3px);
}

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

.feature p {
    color: #6b7280;
    line-height: 1.6;
}

/* Service Areas */
.service-areas {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-areas h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e40af;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.area-section {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.area-section h3 {
    font-size: 1.5rem;
    color: #1e40af;
    margin-bottom: 1.5rem;
    text-align: center;
}

.area-section ul {
    list-style: none;
    padding-left: 0;
}

.area-section li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4b5563;
}

.area-section li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fbbf24;
    font-weight: bold;
}

/* Contact Section */
.contact-section {
    background: white;
    padding: 4rem 2rem;
    margin: 3rem 0;
}

.contact-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #1e40af;
}

.contact-section p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.contact-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: border-color 0.3s ease;
}

.contact-item:hover {
    border-color: #1e40af;
}

.contact-item h4 {
    font-size: 1.2rem;
    color: #1e40af;
    margin-bottom: 1rem;
}

.contact-item p {
    color: #4b5563;
    margin-bottom: 0;
    text-align: center;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(30, 64, 175, 0.3);
}

.cta-button:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

.secondary-button {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(107, 114, 128, 0.3);
}

.secondary-button:hover {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    color: white;
}

/* Service Detail Pages */
.service-detail {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-content h2 {
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 2rem;
}

.service-image {
    width: 100%;
    max-width: 700px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin: 2rem auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #4b5563;
}

.service-content h3 {
    font-size: 1.8rem;
    color: #1e40af;
    margin: 3rem 0 2rem 0;
    border-bottom: 3px solid #fbbf24;
    padding-bottom: 0.5rem;
}

/* Service Features */
.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-left: 5px solid #1e40af;
}

.feature-category h4 {
    font-size: 1.3rem;
    color: #1e40af;
    margin-bottom: 1.5rem;
}

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

.feature-category li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4b5563;
    line-height: 1.6;
}

.feature-category li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fbbf24;
    font-weight: bold;
}

/* Cleaning Cycles */
.cleaning-cycles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.cycle-option {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.cycle-option:hover {
    border-color: #1e40af;
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.cycle-option h4 {
    font-size: 1.2rem;
    color: #1e40af;
    margin-bottom: 1rem;
}

.cycle-option p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0;
}

.cycle-option ul {
    list-style: none;
    margin-top: 1rem;
    padding: 0;
}

.cycle-option li {
    padding: 0.3rem 0;
    color: #6b7280;
    font-size: 0.95rem;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    margin: 4rem 0;
    border-radius: 20px;
}

.contact-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.contact-info-simple {
    margin-top: 2rem;
    color: #fbbf24;
}

/* Contact Page */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 2rem;
    color: #1e40af;
    margin-bottom: 2rem;
}

.contact-details .contact-item {
    background: white;
    margin-bottom: 2rem;
    text-align: left;
}

.contact-details .contact-item h3 {
    font-size: 1.2rem;
    color: #1e40af;
    margin-bottom: 0.8rem;
}

.contact-details .contact-item p {
    color: #4b5563;
    margin-bottom: 0;
}

.service-area {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.service-area h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.service-area ul {
    list-style: none;
    padding: 0;
}

.service-area li {
    padding: 0.3rem 0;
    color: #6b7280;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    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: #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;
    font-size: 0.95rem;
}

.submit-button {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e40af;
    transform: translateY(-2px);
}

.form-note {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 1rem;
    text-align: center;
}

/* Additional Contact Info */
.additional-contact-info {
    background: #f8fafc;
    padding: 3rem 2rem;
}

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

.info-section {
    margin-bottom: 3rem;
}

.info-section h2 {
    font-size: 2rem;
    color: #1e40af;
    margin-bottom: 2rem;
    text-align: center;
}

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

.benefit-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.benefit-item h4 {
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}

.faq-item h4 {
    color: #1e40af;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: #6b7280;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e40af;
    text-align: center;
    padding: 4rem 2rem;
    margin: 3rem 0 0 0;
}

.final-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Success/Error Pages */
.success-container,
.error-container {
    max-width: 800px;
    margin: 4rem auto;
    padding: 3rem;
    text-align: center;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.success-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 2rem;
}

.error-icon {
    font-size: 4rem;
    color: #ef4444;
    margin-bottom: 2rem;
}

.success-container h1,
.error-container h2 {
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 1rem;
}

.request-summary {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: left;
}

.request-summary h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.request-summary ul {
    list-style: none;
    padding: 0;
}

.request-summary li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.next-steps {
    margin: 2rem 0;
}

.next-steps h3 {
    color: #1e40af;
    margin-bottom: 1.5rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.step {
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #1e40af;
}

.step strong {
    color: #1e40af;
    font-size: 1.1rem;
}

.contact-urgent {
    background: #fbbf24;
    color: #1e40af;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.phone-highlight {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 1rem 0;
}

.hours {
    font-size: 0.9rem;
    opacity: 0.8;
}

.success-actions {
    margin-top: 3rem;
}

.redirect-notice {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 2rem;
}

/* Legal Pages */
.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.legal-container {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.legal-container h1 {
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #fbbf24;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: #1e40af;
    margin-bottom: 1.5rem;
}

.legal-section h3 {
    font-size: 1.4rem;
    color: #374151;
    margin: 2rem 0 1rem 0;
}

.legal-section p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #4b5563;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: #4b5563;
    line-height: 1.6;
}

.company-info {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid #1e40af;
}

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

.sitemap-container {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.sitemap-intro {
    font-size: 1.1rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 3rem;
}

.sitemap-sections {
    display: grid;
    gap: 3rem;
}

.sitemap-section {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 2rem;
}

.sitemap-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sitemap-section h2 {
    font-size: 1.8rem;
    color: #1e40af;
    margin-bottom: 2rem;
}

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

.sitemap-list li {
    background: #f8fafc;
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #1e40af;
}

.sitemap-list a {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e40af;
    text-decoration: none;
}

.sitemap-list a:hover {
    color: #fbbf24;
}

.sitemap-list p {
    margin: 0.5rem 0 0 0;
    color: #6b7280;
    font-size: 0.95rem;
}

.areas-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.areas-list li {
    background: #f0f9ff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    color: #1e40af;
    font-weight: 500;
}

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

.service-category {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
}

.service-category h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.service-category ul {
    list-style: none;
    padding: 0;
}

.service-category li {
    padding: 0.3rem 0;
    color: #6b7280;
}

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

.contact-method {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e2e8f0;
}

.contact-method h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.search-terms {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 10px;
}

.keywords-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.keywords-list li {
    background: #1e40af;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-align: center;
    font-size: 0.9rem;
}

.sitemap-navigation {
    margin-top: 3rem;
    text-align: center;
}

.sitemap-navigation h2 {
    color: #1e40af;
    margin-bottom: 2rem;
}

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

.quick-link {
    display: inline-block;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quick-link:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e40af;
    transform: translateY(-2px);
}

.sitemap-info {
    margin-top: 3rem;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.sitemap-info h2 {
    color: #1e40af;
    margin-bottom: 2rem;
}

.website-stats p {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

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

.footer-section p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #3b82f6;
    color: #cbd5e1;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    /* Header */
    .header-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .contact-info {
        font-size: 0.8rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    /* Navigation */
    nav ul {
        flex-direction: column;
        gap: 0;
    }

    .dropdown-menu {
        position: static;
        display: none;
        background: #1e3a8a;
        box-shadow: none;
        border-radius: 0;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        background: #1e3a8a;
        color: white;
        border-bottom: 1px solid #3b82f6;
    }

    .dropdown-menu a:hover {
        background: #fbbf24;
        color: #1e40af;
    }

    /* Hero */
    .hero {
        padding: 2rem 1rem;
    }

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

    .hero h2 {
        font-size: 1.2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Areas Grid */
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Contact Container */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    /* Form Row */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* CTA Buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    /* Contact Info Grid */
    .contact-info-detailed {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Service Features */
    .service-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Cleaning Cycles */
    .cleaning-cycles {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Benefits Grid */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Quick Links */
    .quick-links {
        flex-direction: column;
        align-items: center;
    }

    .quick-link {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    /* Areas List */
    .areas-list {
        grid-template-columns: 1fr;
    }

    /* Keywords List */
    .keywords-list {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    /* Padding adjustments */
    .services-overview,
    .why-choose-us,
    .service-areas,
    .contact-section,
    .service-detail,
    .additional-contact-info,
    .sitemap-content,
    .legal-content {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 480px) {
    /* Hero */
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero h2 {
        font-size: 1.1rem;
    }

    /* Font sizes */
    .services-overview h2,
    .why-choose-us h2,
    .service-areas h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }

    .service-content h2 {
        font-size: 2rem;
    }

    /* Contact form */
    .contact-form {
        padding: 1.5rem;
    }

    /* Card padding */
    .service-card,
    .feature,
    .area-section,
    .contact-item {
        padding: 1.5rem;
    }

    /* Logo */
    .logo {
        font-size: 1.3rem;
    }

    .logo-image {
        height: 40px;
    }
}

/* Print Styles */
@media print {
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }

    header,
    footer,
    nav,
    .cta-buttons,
    .contact-form {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    h1, h2, h3, h4 {
        page-break-after: avoid;
    }

    .service-card,
    .feature,
    .area-section {
        border: 1px solid #ccc;
        margin-bottom: 1rem;
        page-break-inside: avoid;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #1f2937;
        --text-color: #f3f4f6;
        --card-bg: #374151;
        --border-color: #4b5563;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .service-card,
    .feature,
    .area-section,
    .contact-item {
        border: 2px solid #000;
    }
    
    .cta-button {
        border: 2px solid currentColor;
    }
}