/* Grundinställningar */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Roboto', sans-serif; line-height: 1.6; color: #333; background: #f9f9f9; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Logotyp-styling */
.logo-container {
    text-align: left;
    text-transform: uppercase;
    line-height: 0.85;
    letter-spacing: -1px;
    user-select: none;
    font-family: 'Montserrat', sans-serif;
}

.logo a { display: block; }

.roc {
    font-size: 35px;
    display: block;
    margin-bottom: 2px;
    color: #ffffff;
}

.sanering-row {
    font-size: 35px;
    display: flex;
    align-items: flex-end;
    color: #bd1722; /* Ny röd färg */
}

.plunger-icon {
    height: 42px; 
    margin: 0 -2px; 
}

.plunger-svg {
    height: 100%;
    fill: #bd1722; /* Ny röd färg */
}

/* Header */
header { 
    background: #0d1117; 
    color: #fff; 
    padding: 10px 0; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    border-bottom: 3px solid #bd1722; /* Ny röd färg */
}
.header-content { display: flex; justify-content: space-between; align-items: center; }
nav ul { display: flex; }
nav ul li { margin-left: 20px; font-weight: bold; }
.btn-phone { background: #bd1722; color: #fff; padding: 10px 20px; border-radius: 5px; font-weight: bold; }

/* Hero Section */
.hero { 
    background-color: #1a1a1a;
    color: #fff; 
    padding: 120px 0; 
    text-align: center; 
}
.hero h1 { font-size: 48px; margin-bottom: 20px; text-transform: uppercase; font-family: 'Montserrat', sans-serif; }
.hero p { font-size: 20px; margin-bottom: 30px; max-width: 700px; margin-left: auto; margin-right: auto; }
.btn { display: inline-block; padding: 15px 30px; border-radius: 5px; font-weight: bold; text-transform: uppercase; margin: 5px; transition: 0.3s; }
.btn-primary { background: #bd1722; color: #fff; border: none; }
.btn-primary:hover { background: #96121b; }
.btn-secondary { background: #fff; color: #000; }

/* Om oss sektion */
.meet-the-team { padding: 80px 0; background: #fff; }
.meet-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.meet-image img { 
    width: 100%; 
    height: auto; 
    border-radius: 8px; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.1); 
    object-fit: cover;
}
.meet-text { padding: 20px; }
.meet-text h2.section-title { text-align: left; color: #bd1722; font-size: 28px; }
.meet-text p { margin-bottom: 15px; font-size: 16px; color: #555; }
.meet-quote { font-style: italic; color: #bd1722; font-size: 18px; margin-top: 15px; margin-bottom: 25px !important; display: block;}

/* Tjänster */
.services { padding: 80px 0; background: #f9f9f9; }
.section-title { text-align: center; font-size: 32px; margin-bottom: 40px; text-transform: uppercase; font-family: 'Montserrat', sans-serif; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.service-card { padding: 30px; border: 1px solid #eee; border-radius: 10px; transition: 0.3s; text-align: center; background: #fff; }
.service-card:hover { border-color: #bd1722; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.service-card h3 { margin-bottom: 15px; color: #bd1722; text-transform: uppercase; }

/* ROT-Info */
.rot-info { background: #f4f4f4; padding: 60px 0; }
.rot-box { background: #fff; padding: 40px; border-left: 10px solid #bd1722; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }

/* Kontakt */
/* Ny styling för kontaktsektionen utan formulär */
.contact { 
    padding: 80px 0; 
    background: #fff;
    text-align: center;
}

.contact-simple {
    max-width: 700px;
    margin: 0 auto;
}

.contact-simple p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.contact-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    border-bottom: 4px solid #bd1722; /* Din röda färg */
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.contact-label {
    font-size: 14px;
    text-transform: uppercase;
    color: #8da1a1;
    margin-bottom: 10px;
    font-weight: bold;
}

.contact-value {
    font-size: 22px;
    color: #bd1722;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
}

.contact-address {
    font-size: 15px !important;
    color: #8da1a1 !important;
}

/* Mobilanpassning */
@media (max-width: 600px) {
    .contact-methods {
        grid-template-columns: 1fr;
    }
    .contact-value {
        font-size: 18px;
    }
}

/* Footer */
footer { background: #0d1117; color: #fff; padding: 40px 0; text-align: center; font-size: 14px; border-top: 1px solid #333; }

/* Mobilanpassning */
@media (max-width: 768px) {
    
    /* 1. Grundlayout för mobilen */
    body {
        padding-bottom: 80px; /* Skapar plats för jourknappen längst ner */
        background: #f0f0f0;  /* Den ljusgrå nyansen vi lade till */
    }

    /* 2. Header-fix (Stapla logga och knappar så de inte överlappar) */
    header {
        height: auto;
        padding: 15px 0;
        position: relative;
    }

    .header-content {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    nav ul {
        display: flex;
        justify-content: center;
        gap: 15px;
        padding: 0;
    }

    .phone-box {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .phone-box .btn-phone {
        display: block;
        width: 90%;
        text-align: center;
        font-size: 16px;
        padding: 12px;
        background-color: #bd1722;
        color: #fff;
        border-radius: 5px;
        font-weight: bold;
        text-decoration: none;
    }

    /* 3. Länkar i footern (Gör dem lättare att klicka på) */
    .area-links {
        flex-direction: column;
        gap: 10px;
    }

    /* 4. Den fixerade jourknappen längst ner på skärmen */
    .mobile-call-btn {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #bd1722;
        color: #fff;
        text-align: center;
        padding: 15px;
        font-weight: bold;
        font-size: 18px;
        z-index: 1001;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
        text-decoration: none;
    }
}

/* Reco Widget Sektion */
.reco-section {
    padding: 60px 0;
    background-color: #ffffff;
    text-align: center;
}

.reco-section .section-title {
    color: #bd1722; /* Din nya röda färg */
    margin-bottom: 30px;
}

.reco-widget-wrapper {
    width: 100%;
    max-width: 1100px; /* Matchar din containers maxbredd */
    margin: 0 auto;
    /* Säkerställer att iframen inte klipps om Reco skickar mer innehåll */
    min-height: 225px; 
}

/* Responsiv justering: Om skärmen är väldigt smal kan widgeten ibland behöva mer plats */
@media (max-width: 600px) {
    .reco-widget-wrapper {
        overflow-x: auto;
    }
}

.company-details {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.company-details p {
    font-size: 14px !important;
    color: #8da1a1 !important;
    margin-bottom: 5px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Styling för Problem-sektionen */
.problems-section { padding: 60px 0; background: #fff; text-align: center; }
.section-subtitle { margin-top: -30px; margin-bottom: 40px; color: #666; font-style: italic; }
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 30px; }
.problem-item { background: #f9f9f9; padding: 20px; border-radius: 8px; font-weight: bold; border-left: 4px solid #bd1722; }
.problem-item span { color: #bd1722; margin-right: 10px; font-size: 20px; }
.warning-text { color: #bd1722; font-weight: bold; font-size: 18px; }

/* Styling för Process-sektionen */
.process-section { padding: 80px 0; background: #0d1117; color: #fff; text-align: center; }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-top: 40px; }
.step-number { width: 50px; height: 50px; background: #bd1722; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 24px; font-weight: bold; font-family: 'Montserrat', sans-serif; }
.step h3 { margin-bottom: 10px; text-transform: uppercase; font-size: 18px; }
.step p { font-size: 14px; color: #ccc; }

/* Styling för Pris-sektionen */
.pricing-section { padding: 80px 0; background: #f4f4f4; text-align: center; }
.price-cards { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-top: 40px; }
.price-card { background: #fff; padding: 40px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); flex: 1; max-width: 400px; border: 1px solid #eee; }
.price-card.featured { border: 2px solid #bd1722; transform: scale(1.05); z-index: 2; }
.price-tag { font-weight: bold; text-transform: uppercase; color: #666; margin-bottom: 10px; }
.amount { font-size: 32px; font-weight: 900; color: #bd1722; font-family: 'Montserrat', sans-serif; }
.amount span { font-size: 14px; color: #333; }
.original-price { font-size: 14px; color: #999; margin-bottom: 20px; }
.price-card ul { text-align: left; margin: 20px 0; padding: 0; }
.price-card li { margin-bottom: 10px; padding-left: 20px; position: relative; list-style: none; }
.price-card li::before { content: '✔'; position: absolute; left: 0; color: #bd1722; }

@media (max-width: 768px) {
    .price-card.featured { transform: scale(1); }
    .price-cards { gap: 20px; }
}

@media (max-width: 768px) {
    .meet-wrapper {
        grid-template-columns: 1fr;
    }

    .meet-image img {
        width: 100%;
        height: auto;
        max-height: 400px;
        object-fit: cover;
    }
}

