/* ====== GLOBAL ====== */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #0f0f0f;
    color: #eaeaea;
}

h1, h2, h3, h4 {
    font-weight: 600;
}

/* ====== HEADER ====== */
/* Solid svart för att matcha logons bakgrund */
header {
    background: #000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 65px;
    width: auto;
}

header nav a {
    color: #eaeaea;
    margin-left: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

header nav a:hover {
    color: #ffcc00;
}

/* ====== HERO ====== */
.hero {
    height: 80vh;
    background-image: url("https://images.pexels.com/photos/257736/pexels-photo-257736.jpeg?auto=compress&cs=tinysrgb&w=1600");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.glass {
    background: rgba(0,0,0,0.55);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(8px);
    text-align: center;
    max-width: 650px;
}

.hero-tagline {
    color: #ffcc00;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta {
    display: inline-block;
    padding: 12px 25px;
    background: #ffcc00;
    color: black;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.2s;
    border: none;
    cursor: pointer;
}

.cta:hover {
    background: #ffe680;
}

.ghost-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    border: 1px solid #ffcc00;
    color: #ffcc00;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.ghost-btn:hover {
    background: #ffcc00;
    color: #000;
}

/* ====== TRUST STRIP (Elsäkerhetsverket-badge) ====== */
.trust-strip {
    background: #1a1a1a;
    padding: 28px 20px;
    border-top: 1px solid rgba(255, 204, 0, 0.1);
    border-bottom: 1px solid rgba(255, 204, 0, 0.1);
}

.trust-strip-content {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #111;
    padding: 18px 28px;
    border-radius: 12px;
    border: 1px solid rgba(255, 204, 0, 0.15);
    transition: 0.2s;
}

.trust-badge:hover {
    border-color: rgba(255, 204, 0, 0.35);
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: #ffcc00;
    color: #0f0f0f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    color: #eaeaea;
    font-size: 1.05rem;
}

.trust-text a {
    color: #ffcc00;
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 3px;
    transition: 0.2s;
}

.trust-text a:hover {
    color: #ffe680;
}

/* ====== CONTENT SECTIONS ====== */
.content-section {
    padding: 70px 20px;
    max-width: 1100px;
    margin: auto;
}

.section-intro {
    max-width: 600px;
}

/* ====== SERVICE CARDS ====== */
.cards {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.card {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 12px;
    flex: 1;
    min-width: 260px;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.1);
    transition: 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.2);
}

/* SERVICE IMAGES */
.service-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* ====== SPLIT SECTION (Varför oss) ====== */
.split {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.split-image {
    height: 350px;
    border-radius: 15px;
    background-image: url("https://images.pexels.com/photos/21812146/pexels-photo-21812146.jpeg?auto=compress&cs=tinysrgb&w=1200");
    background-size: cover;
    background-position: center;
}

/* ====== COLUMNS (Vem vi hjälper) ====== */
.columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.column-box {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 12px;
}

.column-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* ====== CHECKLIST ====== */
.checklist {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.checklist li {
    margin-bottom: 8px;
}

/* ====== VÅRA LÖFTEN ====== */
.promises {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.promise {
    background: #1a1a1a;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: 0.2s;
    border: 1px solid rgba(255, 204, 0, 0.1);
}

.promise:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 204, 0, 0.35);
}

.promise-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    line-height: 1;
}

.promise h3 {
    color: #ffcc00;
    margin: 10px 0 12px;
    font-size: 1.15rem;
}

.promise p {
    color: #c8c8c8;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* ====== FAQ ====== */
.faq-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 18px 22px;
    transition: 0.2s;
    border: 1px solid rgba(255, 204, 0, 0.08);
}

.faq-item[open] {
    border-color: rgba(255, 204, 0, 0.25);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    color: #eaeaea;
    font-size: 1.05rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    color: #ffcc00;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1;
    transition: 0.2s;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    margin: 14px 0 0;
    color: #b8b8b8;
    line-height: 1.6;
}

.faq-item a {
    color: #ffcc00;
    text-decoration: none;
}

.faq-item a:hover {
    color: #ffe680;
}

/* ====== CTA-BANNER ====== */
.cta-banner {
    background: linear-gradient(135deg, #ffcc00 0%, #ffb700 100%);
    padding: 65px 20px;
    text-align: center;
    margin: 30px 0;
}

.cta-banner-content {
    max-width: 720px;
    margin: auto;
}

.cta-banner h2 {
    color: #0f0f0f;
    margin: 0 0 15px;
    font-size: 2rem;
}

.cta-banner p {
    color: #1a1a1a;
    font-size: 1.1rem;
    margin: 0 0 28px;
}

.cta-banner-btn {
    background: #0f0f0f;
    color: #ffcc00;
    padding: 14px 38px;
    font-size: 1.05rem;
}

.cta-banner-btn:hover {
    background: #1a1a1a;
    color: #ffe680;
}

/* ====== FOOTER ====== */
footer {
    background: #020617;
    color: #e5e7eb;
    padding: 40px 20px 20px;
    margin-top: 40px;
}

.footer-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.footer-grid a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-grid a:hover {
    color: #ffcc00;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: #9ca3af;
}

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

.footer-bottom a:hover {
    color: #ffcc00;
}

/* ====== ANIMATIONS ====== */
.fade-in {
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 800px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .hero {
        height: auto;
        padding: 80px 20px;
    }

    .split {
        grid-template-columns: 1fr;
    }

    .cta-banner h2 {
        font-size: 1.5rem;
    }

    .cta-banner p {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .trust-badge {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}