/* Sanering Malmö - Stilmall för rengöring och återställning */
/* Grundläggande återställning för konsekvent visning */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Typografi från 2013 - Open Sans och Roboto var populära */
body {
    font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

/* Behållare för innehåll - typisk 2013 stil */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header med skugga och gradient */
header {
    background: linear-gradient(180deg, #fff 0%, #f9f9f9 100%);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Navigation - desktop */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* Logo för sanering - CSS-baserad */
.logo {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ffb3ba 0%, #ffc0cb 50%, #f0f0f0 100%);
    border-radius: 50%;
    position: relative;
    margin-right: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo::after {
    content: 'S';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.logo-text {
    display: inline-block;
    vertical-align: middle;
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
}

/* Menyval för desinfektionsarbete */
.menu-items {
    display: flex;
    gap: 30px;
    list-style: none;
}

.menu-items a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.menu-items a:hover {
    color: #27ae60;
    border-bottom-color: #27ae60;
}

/* CTA-knappar för offertförfrågningar */
.cta-button {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(39,174,96,0.3);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(39,174,96,0.4);
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
}

/* Mobilmeny - hamburger */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 4px 0;
    transition: 0.3s;
}

/* Hero-sektion för rengöringstjänster */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
}

.hero h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Innehållssektioner för skadehantering */
.content-section {
    padding: 50px 0;
    background: white;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Rubriker för olika saneringstyper */
h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid #ffb3ba;
    display: inline-block;
}

h3 {
    font-size: 24px;
    color: #34495e;
    margin: 30px 0 15px;
}

/* Textformatering för återställningsinfo */
p {
    margin-bottom: 15px;
    color: #555;
}

strong {
    color: #2c3e50;
    font-weight: 600;
}

em {
    color: #7f8c8d;
    font-style: italic;
}

/* Tabeller för tjänsteöversikt */
.service-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

.service-table th {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #2c3e50;
    border-bottom: 2px solid #dee2e6;
}

.service-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e9ecef;
}

.service-table tr:hover {
    background: #f8f9fa;
}

/* Informationsrutor för skadetyper */
.info-box {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe0e6 100%);
    border-left: 4px solid #ffb3ba;
    padding: 20px;
    margin: 30px 0;
    border-radius: 4px;
}

.info-box h4 {
    color: #c0392b;
    margin-bottom: 10px;
    font-size: 18px;
}

/* Frågor och svar för desinficering */
.faq-item {
    margin: 20px 0;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.faq-question {
    background: #f9f9f9;
    padding: 15px;
    cursor: pointer;
    font-weight: 500;
    color: #2c3e50;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 20px;
    transition: transform 0.3s;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-answer.active {
    padding: 15px;
    max-height: 500px;
}

/* Formulär för offertbegäran */
.form-container {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #27ae60;
    box-shadow: 0 0 5px rgba(39,174,96,0.2);
}

/* Spamskydd för saneringsformulär */
.captcha-box {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.captcha-box label {
    font-weight: 500;
    color: #555;
}

/* Footer för kontaktuppgifter */
footer {
    background: linear-gradient(180deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 40px 0 20px;
    margin-top: 50px;
}

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

.footer-section h4 {
    color: #ecf0f1;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

/* Ortstabell för täckningsområde */
.coverage-table {
    margin: 30px 0;
}

.coverage-row {
    border: 1px solid #e0e0e0;
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
}

.coverage-header {
    background: #f5f5f5;
    padding: 15px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coverage-header:hover {
    background: #ebebeb;
}

.coverage-content {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    background: white;
}

.coverage-content.active {
    padding: 15px;
    max-height: 300px;
}

/* CSS-bilder för rubriker */
.header-image {
    width: 100%;
    height: 200px;
    margin: 20px 0;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.mold-removal-img {
    background: linear-gradient(45deg, #2c3e50 0%, #3498db 50%, #ecf0f1 100%);
}

.water-damage-img {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 50%, #ecf0f1 100%);
}

.pest-control-img {
    background: linear-gradient(90deg, #8b4513 0%, #d2691e 50%, #f4a460 100%);
}

.fire-damage-img {
    background: linear-gradient(180deg, #c0392b 0%, #e74c3c 50%, #f39c12 100%);
}

.odor-removal-img {
    background: linear-gradient(45deg, #27ae60 0%, #2ecc71 50%, #a9dfbf 100%);
}

/* Mobilanpassning för sanering */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .menu-items {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    
    .menu-items.active {
        display: flex;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .service-table {
        font-size: 14px;
    }
    
    .form-container {
        padding: 20px;
    }
    
    .content-section {
        padding: 30px 15px;
    }
}