/* Entreprenad Malmö - Stilmall för markarbete och anläggning */
:root {
    --beige-ljus: #f5f2e8;
    --gul-ljus: #fff9e6;
    --bla-ljus: #e8f4f8;
    --text-mork: #2c3e50;
    --accent-bla: #3498db;
    --skugga-mjuk: 0 2px 15px rgba(0,0,0,0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Grundläggande typografi för markarbete */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--text-mork);
    background: linear-gradient(135deg, var(--gul-ljus) 0%, var(--beige-ljus) 100%);
    min-height: 100vh;
}

/* Container för anläggningsprojekt */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header för entreprenadföretag */
header {
    background: white;
    box-shadow: var(--skugga-mjuk);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Logo för markarbete - CSS-baserad */
.logo {
    display: inline-block;
    padding: 15px 0;
}

.logo-design {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--text-mork);
    text-decoration: none;
}

.logo-ikon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--accent-bla), var(--bla-ljus));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-ikon::before {
    content: '';
    width: 20px;
    height: 3px;
    background: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.logo-ikon::after {
    content: '';
    width: 20px;
    height: 3px;
    background: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Navigation för entreprenadtjänster */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.nav-länkar {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 20px 0;
}

.nav-länkar a {
    color: var(--text-mork);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 16px;
}

.nav-länkar a:hover {
    color: var(--accent-bla);
}

/* Hero sektion för grävning och schaktning */
.hero {
    padding: 60px 0 40px;
    background: white;
    margin-bottom: 40px;
}

.hero-innehall {
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-mork);
    line-height: 1.2;
}

.hero-undertext {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 30px;
}

/* CTA knappar för offertförfrågan */
.cta-knapp {
    display: inline-block;
    padding: 15px 35px;
    background: var(--accent-bla);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    border: none;
    cursor: pointer;
}

.cta-knapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.cta-sekundar {
    background: white;
    color: var(--accent-bla);
    border: 2px solid var(--accent-bla);
    margin-left: 15px;
}

.cta-sekundar:hover {
    background: var(--bla-ljus);
}

/* Header bild för markarbete */
.header-bild {
    width: 100%;
    max-width: 1920px;
    height: auto;
    margin: 20px auto;
    display: block;
    border-radius: 10px;
}

/* Innehållssektion för anläggningsarbete */
.innehall-sektion {
    background: white;
    padding: 60px 20px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: var(--skugga-mjuk);
}

.innehall-sektion h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--text-mork);
}

.innehall-sektion h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--text-mork);
}

.innehall-sektion p {
    margin-bottom: 18px;
    line-height: 1.8;
    font-size: 17px;
}

/* Tjänstekort för entreprenadarbete */
.tjanste-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.tjanste-kort {
    background: linear-gradient(135deg, var(--gul-ljus), white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--skugga-mjuk);
    transition: transform 0.3s;
}

.tjanste-kort:hover {
    transform: translateY(-5px);
}

.tjanste-kort h3 {
    color: var(--accent-bla);
    margin-bottom: 15px;
}

/* Formulär för offertförfrågan */
.formular-container {
    background: linear-gradient(135deg, var(--bla-ljus), white);
    padding: 40px;
    border-radius: 15px;
    max-width: 600profound;
    margin: 0 auto;
}

.formular-grupp {
    margin-bottom: 25px;
}

.formular-grupp label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-mork);
}

.formular-grupp input,
.formular-grupp textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.formular-grupp input:focus,
.formular-grupp textarea:focus {
    outline: none;
    border-color: var(--accent-bla);
}

.formular-grupp textarea {
    min-height: 120px;
    resize: vertical;
}

/* Spamskydd för markarbete-formulär */
.spam-skydd {
    background: var(--gul-ljus);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.spam-skydd label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.spam-skydd input {
    width: 100px;
    padding: 8px;
    border: 2px solid #ddd;
    border-radius: 5px;
}

/* Footer för anläggningsföretag */
footer {
    background: var(--text-mork);
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

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

.footer-sektion h4 {
    margin-bottom: 15px;
    color: var(--bla-ljus);
}

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

.footer-sektion a {
    color: #b0c4de;
    text-decoration: none;
    line-height: 1.8;
}

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

.footer-botten {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #445566;
    color: #8899aa;
}

/* Tabeller för markarbete-priser */
.pris-tabell {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    box-shadow: var(--skugga-mjuk);
    border-radius: 10px;
    overflow: hidden;
}

.pris-tabell th {
    background: var(--accent-bla);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.pris-tabell td {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.pris-tabell tr:last-child td {
    border-bottom: none;
}

.pris-tabell tr:hover {
    background: var(--beige-ljus);
}

/* Lista för grävtjänster */
.tjanste-lista {
    list-style: none;
    margin: 20px 0;
}

.tjanste-lista li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.tjanste-lista li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-bla);
    font-weight: bold;
    font-size: 18px;
}

/* Responsiv design för mobil */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-undertext {
        font-size: 16px;
    }
    
    .nav-länkar {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        text-align: center;
    }
    
    .cta-knapp {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .cta-sekundar {
        margin-left: 0;
    }
    
    .innehall-sektion {
        padding: 30px 15px;
    }
    
    .pris-tabell {
        font-size: 14px;
    }
    
    .pris-tabell th,
    .pris-tabell td {
        padding: 10px;
    }
    
    .footer-innehall {
        grid-template-columns: 1fr;
    }
}

/* Kort-layout för schaktning info */
.info-kort {
    background: white;
    border-left: 4px solid var(--accent-bla);
    padding: 20px;
    margin: 20px 0;
    box-shadow: var(--skugga-mjuk);
}

.info-kort h4 {
    color: var(--accent-bla);
    margin-bottom: 10px;
}

/* Numrerad lista för arbetsprocess */
ol.process-lista {
    counter-reset: process;
    list-style: none;
    margin: 30px 0;
}

ol.process-lista li {
    counter-increment: process;
    position: relative;
    padding-left: 50px;
    margin-bottom: 20px;
}

ol.process-lista li::before {
    content: counter(process);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--accent-bla);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Sitemap styling */
.sitemap-container {
    padding: 40px 20px;
}

.sitemap-lista {
    list-style: none;
    margin: 20px 0;
}

.sitemap-lista li {
    padding: 8px 0;
}

.sitemap-lista a {
    color: var(--accent-bla);
    text-decoration: none;
    font-size: 16px;
}

.sitemap-lista a:hover {
    text-decoration: underline;
}