.quick-dock {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;
}

.quick-dock__box {
    display: flex;
    gap: 10px;
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.qd-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 0;
    background: transparent;
    color: #111;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.qd-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

/* 🔥 aktiv knapp (ersätter svart med #263238) */
.qd-btn[aria-expanded="true"] {
    background: #263238;
    color: #fff;
}

.qd-ico {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.dock-panel {
    margin-top: 12px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
    overflow: hidden;
    min-width: 320px;
}

.dock-panel__inner {
    padding: 22px 22px 20px;
}

.dock-title {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

.dock-text {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

.dock-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dock-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    background: #f4f4f4;
    transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.dock-link:hover {
    background: #eaeaea;
    transform: translateY(-1px);
}

/* 🔥 primary knapp i din färg */
.dock-link--primary {
    background: #263238;
    color: #fff;
}

.dock-link--primary:hover {
    background: #1e2a2f;
    color: #fff;
}

/* ❌ ta bort border runt "Ring till oss" */
.qd-btn--ringing::after {
    display: none;
}

@media (max-width: 767px) {
    .quick-dock {
        right: 12px;
        left: 12px;
        bottom: 12px;
    }

    .quick-dock__box {
        justify-content: space-between;
    }

    .qd-btn {
        flex: 1 1 0;
        justify-content: center;
        padding: 12px 10px;
    }

    .qd-btn span {
        display: none;
    }

    .dock-panel {
        min-width: 0;
        width: 100%;
    }
}



/* 🔵 ersätt ALL svart med din blå */
.qd-btn[aria-expanded="true"],
.dock-link--primary {
    background: #000 !important;
    color: #fff !important;
}

/* hover lite mörkare */
.qd-btn[aria-expanded="true"]:hover,
.dock-link--primary:hover {
    background: #1e2a2f !important;
}

/* ❌ ta bort border/outline runt "Ring till oss" */
.qd-btn--ringing::after {
    display: none !important;
}

/* säkerställ att inga borders finns kvar */
.qd-btn--ringing {
    border: none !important;
    box-shadow: none !important;
}

.footer .qr,
.footer img[src*="qr"] {
    width: 130% !important;
    max-width: 220px; /* justera om du vill större */
    height: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: translateZ(0); /* tvingar GPU → skarpare */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer-copy,
.footer-contact-line,
.footer-contact-line a[href^="mailto:"] {
    white-space: nowrap;
}

.footer-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}




.footer-qr-text {
    margin-bottom: 16px;
}

.footer-menu li {
    margin-bottom: 6px; /* mindre avstånd i menyn */
}

.footer-col {
    line-height: 1.9; /* mer luft i all text */
}

.footer-contact-line {
    margin-bottom: 12px; /* lite mer spacing mellan kontakt-rader */
}

.footer-address {
    margin-bottom: 14px;
    line-height: 2.4;
}

.references-section {
    padding: 60px 0;
}

.references-title {
    text-align: center;
    margin-bottom: 32px;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.reference-card {
    background: #fff;

    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.reference-card__image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.reference-card__body {
    padding: 20px;
}

.reference-card__title {
    margin: 0 0 12px;
}

.reference-card__text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .references-grid {
        grid-template-columns: 1fr;
    }
}
