
    :root {
        --dgb-primary: #DB5E4A;
        --dgb-text: #191919;
        --dgb-gray: #F1F2F2;
        --dgb-white: #ffffff;
        --dgb-dark: #191919;
        --dgb-radius: 10px;
    }

    body{
        font-family:'Inter',sans-serif;
    }

    .dgb-container-xl {
        width: 100%;
        max-width: 1720px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    @media (max-width: 992px) {
        .dgb-container-xl {
            padding-left: 1rem;
            padding-right: 1rem;
        }
    }

    @media (max-width: 576px) {
        .dgb-container-xl {
            padding-left: 0.75rem;
            padding-right: 0.75rem;
        }
    }

    .py-10{
        padding-top:10rem;
        padding-bottom:10rem;
    }

    /* Buttons */
    .dgb-orange-btn {
        display: inline-block;
        background: var(--dgb-primary);
        color: #fff;
        padding: 0.75rem 1.25rem;
        border-radius: .5rem;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        transition: 0.25s ease;
    }

        .dgb-orange-btn:hover {
            background: #c25440;
        }


    .dgb-dark-btn {
        display: inline-block;
        background: var(--dgb-dark);
        color: #fff;
        padding: 0.75rem 1.25rem;
        border-radius: .5rem;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        transition: 0.25s ease;
    }

        .dgb-dark-btn:hover {
            background: #333;
        }



/* ============================= */
/*          BILONLINE            */
/* ============================= */

    .main-container1,
    .main-container2,
    .main-container3,
    .main-container4,
    .main-container5,
    .main-container6,
    .main-container7{
        padding:0!important;
    }
    
    .main-containerfooter{
    	padding:0!important;
    }
    
    #bodycontainer > .main-container8{
	max-width:1720px!important;
	}
	
	.main-containerbilvisning{
	max-width:1720px!important;
	}
	
/* ============================= */
/*          HEADER               */
/* ============================= */

    .dgb-header {
        position: sticky;
        top: 0;
        z-index: 999;
        background: var(--dgb-white);
        transition: transform 0.3s ease;
        padding: 2rem 0 4rem 0;
    }

        .dgb-header.nav-hidden {
            transform: translateY(-100%);
        }


    .dgb-topbar {
        max-width: 1720px;
        margin: 0 auto;
    }

    .dgb-toplink {
        font-size: 1rem;
        font-weight: 500;
        color: var(--dgb-text);
        text-decoration:none;
        cursor:pointer;
    }

        .dgb-toplink:hover {
            color: var(--dgb-primary);
        }

    .dgb-icon {
        width: 32px;
        height: 32px;
    }

/* ============================= */
/*          NAVBAR MAIN          */
/* ============================= */


	.main-containernavbar{
		padding:0!important;
	}

    .dgb-navbar {
        background-image: linear-gradient(285deg, #ffffff 0%, #efefef 100%);
        height: 135px;
        display: flex;
        align-items: center;
        max-width: 1720px;
        margin: 0 auto;
        border-radius: 1rem;
    }

    .dgb-logo-box {
        background: var(--dgb-white);
        padding: 20px;
        border-radius: var(--dgb-radius);
        margin-left:1rem;
    }

    .dgb-logo {
        width: 212px;
    }

    /* Navbar links */

    .dgb-navlinks {
        display: flex;
        gap: 75px;
        padding:0 2rem;
    }

    .dgb-navlink {
        text-decoration: none;
        font-size: 1rem;
        font-weight: 600;
        color: var(--dgb-text);
    }

        .dgb-navlink:hover {
            color: var(--dgb-primary);
        }

        .dgb-navlink.active {
            color: var(--dgb-primary);
            font-weight: 600;
        }

    /* Dropdown */

    .dgb-nav-item {
        position: relative;
    }

    .dgb-nav-item::after {
        content: "";
        position: absolute;
        left: 0;
        top: 100%; 
        width: 100%;
        height: 20px; 
        background: transparent;
        pointer-events: auto; 
    }

    .dgb-caret {
        width: 12px;
        height: 7px;
        transition: transform 0.2s ease;
    }

    .dgb-dropdown {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 32px;
        left: 0;
        padding: 15px;
        background: var(--dgb-white);
        border-radius: var(--dgb-radius);
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        z-index: 50;
        min-width: 180px;
    }
    
    .dgb-dropdown a {
        padding: 6px 0;
        color: var(--dgb-text);
        text-decoration: none;
    }

        .dgb-dropdown a:hover {
            color: var(--dgb-primary);
        }

    .dgb-nav-item:hover .dgb-dropdown,
    .dgb-dropdown:hover {
        display: flex;
    }

    .dgb-nav-item:hover .dgb-caret {
        transform: rotate(180deg);
    }

    /* Mobile Menu Drawer */

    .dgb-mobile-toggle {
        background: none;
        border: none;
        padding: 0;
        display: none;
        position: absolute;
        right: 0;
    }

        .dgb-mobile-toggle img {
            width: 32px;
        }

    .dgb-drawer {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        background: var(--dgb-white);
        transform: translateX(-100%);
        transition: 0.3s ease;
        z-index: 2000;
        padding: 25px;
    }

        .dgb-drawer.open {
            transform: translateX(0);
        }

    .dgb-drawer-inner a,
    .dgb-drawer-inner summary {
        display: block;
        padding: 12px 0;
        color: var(--dgb-text);
        font-size: 18px;
        font-weight: 500;
        text-decoration:none;
    }

        .dgb-drawer-inner a.active {
            color: var(--dgb-primary);
        }

    @media (max-width: 992px) {

        /* Hide desktop navlinks */
        .dgb-navlinks {
            display: none !important;
        }

        /* Show mobile toggle */
        .dgb-mobile-toggle {
            display: block;
            top: 50%;
            right:.75rem;
            transform: translateY(-50%);
        }

        /* Minimize logo*/
        .dgb-logo {
            width:160px;
        }
    }

/* ============================= */
/*          HERO                 */
/* ============================= */

    .dgb-hero-main {
        position: relative;
        min-height: 47.5rem;
        background-image: url('/images/sektioner/uploads/dbg-hero-main.webp');
        background-size: cover;
        background-position: center 65%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        overflow: hidden;
        clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%, 0 100%);
    }

    .dbg-hero-page {
       background-image: url('/images/sektioner/uploads/dbg-hero-page.webp') !important;
    }

    .dgb-hero-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 1;
    }

    .dgb-hero-content {
        position: relative;
        z-index: 2;
        max-width: 1720px;
        color: white;
    }

    .dgb-hero-pretitle {
        color: var(--dgb-primary);
        font-size: 3.375rem;
        font-style: normal;
        font-weight: 900;
        line-height: normal;
        letter-spacing: -0.02rem;
        padding: 0 10px 0 0;
    }

    .dgb-hero-title {
        font-size: 3.375rem;
        font-style: normal;
        font-weight: 900;
        line-height: normal;
        letter-spacing: -0.02rem;
        text-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
    }

    .dgb-hero-text {
        font-size: 1.125rem;
        font-style: normal;
        font-weight: 500;
        line-height: 1.875rem; /* 166.667% */
        max-width: 48rem;
    }

    .dgb-hero-cta {
        display: inline-block;
        background: var(--dgb-white);
        color: var(--dgb-text);
        padding: 0.75rem 1.25rem;
        border-radius: .5rem;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        transition: 0.25s ease;
    }

        .dgb-hero-cta:hover {
            background: var(--dgb-primary);
            color: white;
        }

@media (max-width: 1200px) {
    .dgb-hero-main {
        min-height: 60rem;
    }
}

@media (max-width: 768px) {
    .dgb-hero-main {
        padding: 1rem;
        min-height: 48rem;
    }

}

/* ============================= */
/*          SECTION              */
/* ============================= */

    .dgb-section-white {
        width: 100%;
        background: var(--dgb-white);
        padding: 7.5rem 0;
    }

    .dgb-section-gray {
        width: 100%;
        background: var(--dgb-gray);
        padding: 7.5rem 0;
    }


/* ============================= */
/*          GRID                 */
/* ============================= */

    .dgb-usp-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 6.25rem; /* 100px */
        margin: 0 auto;
    }

    .dgb-usp-card {
        text-align: left;
        background: transparent;
    }

    /* IMAGE */
    .dgb-usp-img {
        width: 100%;
        border-radius: .4rem;
        margin-bottom: 2rem;
    }

    /* TITLE */
    .dgb-usp-title {
        font-size: 1.375rem;
        font-weight: 900;
        color: #191919;
        margin-bottom: 1rem;
    }

    /* DIVIDER */
    .dgb-usp-divider {
        width: 12rem;
        height: .3rem;
        background: var(--dgb-gray);
        margin-bottom: 1rem;
    }

    /* TEXT */
    .dgb-usp-text {
        font-size: 1rem;
        font-style: normal;
        font-weight: 500;
        line-height: 1.875rem; /* 187.5% */
        color: #191919;
        max-width: 40rem;
        margin-bottom: 1rem;
    }

    @media (max-width: 1200px) {
        .dgb-usp-grid {
            gap: 4rem;
        }
    }

    @media (max-width: 992px) {
        .dgb-usp-grid {
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .dgb-usp-text {
            max-width: 100%;
        }
    }

    @media (max-width: 768px) {
        .dgb-usp-grid {
            grid-template-columns: 1fr;
            gap: 3rem;
        }
    }


    /* GRID – 3 columns */
    .dgb-icon-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 6rem;
        text-align: center;
    }

    .dgb-icon-grid-icon img {
        width: 6rem; /* justera vid behov */
        height: auto;
        display: block;
        margin: 0 auto 2rem;
    }

    .dgb-icon-grid-title {
        color: #1A1A1A;
        font-size: 1.5rem;
        font-weight: 700;
        line-height: 1.875rem; /* 125% */
    }

    .dgb-icon-grid-text {
        font-size: 1rem;
        line-height: 1.875rem; /* 187.5% */
        color: #2A2A2A;
        max-width: 40rem;
        margin: 0 auto;
    }

    @media (max-width: 992px) {
        .dgb-icon-grid {
            grid-template-columns: 1fr;
            gap: 4rem;
        }
    }



/* ============================= */
/*          UNIVERSAL ROW        */
/* ============================= */

    .dgb-flip-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 6rem;
        margin-bottom: 10rem;
    }

    .dgb-flip-row:last-child {
        margin-bottom: 0;
    }

    .dgb-flip-row.flipped {
        flex-direction: row-reverse;
    }

    .dgb-flip-img-wrap {
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .dgb-flip-img {
        width: 100%;
        max-width: 76rem; /* ca 760px */
        border-radius: .8rem;
    }

    .dgb-flip-text {
        flex: 1;
        max-width: 46rem;
    }

    .dgb-flip-title {
        color: #191919;
        font-size: 1.875rem;
        font-style: normal;
        font-weight: 900;
        line-height: normal;
        letter-spacing: -0.02rem;
        margin-bottom: 1rem;
    }

    .dgb-flip-divider {
        width: 12rem;
        height: .3rem;
        background: var(--dgb-primary);
        margin-bottom: 1.25rem;
    }

    .dgb-flip-body {
        font-size: 1rem;
        font-weight:500;
        line-height: 1.625rem;
        margin-bottom: 1rem;
        color: #191919;
        max-width: 45rem;
    }

    .dgb-flip-text {
        display: inline-block;
        margin-top: 1rem;
    }

    @media (max-width: 992px) {

        .dgb-flip-row,
        .dgb-flip-row.flipped {
            flex-direction: column;
            text-align: center;
        }

        .dgb-flip-text {
            max-width: 100%;
        }

        .dgb-flip-divider {
            margin-left: auto;
            margin-right: auto;
        }

        .dgb-flip-img {
            max-width: 100%;
        }
    }


/* ============================= */
/*          SLIDER               */
/* ============================= */


    .dgb-latest-slider-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 2rem;
    }

    .dgb-latest-swiper {
        width: 100%;
    }

    .dgb-latest-card {
        display: block;
        text-align: center;
        max-width: 42rem;
        text-decoration: none;
        color: #191919;
    }

    .dgb-latest-img-wrap {
        overflow: hidden;
        border-radius: .8rem;
        margin-bottom: 2rem;
    }

    .dgb-latest-img {
        width: 100%;
        transition: transform .35s ease;
    }

    .dgb-latest-card:hover .dgb-latest-img {
        transform: scale(1.06);
    }

    .dgb-latest-title {
        font-size: 1.25rem;
        font-weight: 900;
        text-transform: uppercase;
        margin-bottom: 1rem;
    }

    .dgb-latest-info {
        display: flex;
        justify-content: center;
        gap: 2rem;
        font-size: 1.065rem;
        font-weight:500;
        color: #2b2b2b;
        margin-bottom: 2rem;
    }

    .dgb-price-tag {
        display: inline-block;
        background: var(--dgb-dark);
        color: #fff;
        padding: 0.5rem 1.5rem;
        border-radius: 0.25rem;
        font-size: 1.25rem;
        font-weight: 700;
    }

    .dgb-latest-arrow {
        cursor: pointer;
        padding: 1rem;
        z-index: 10;
    }

        .dgb-latest-arrow img {
            width: 1.5rem;
        }

    @media (max-width: 992px) {
        .dgb-latest-arrow {
            display: none;
        }
    }

    @media (max-width: 768px) {
        .dgb-latest-info {
            flex-direction: column;
        }
    }


/* ============================= */
/*          FOOTER               */
/* ============================= */


    .dgb-footer {
        background: #000;
        padding: 8rem 0 4rem 0;
        color: #fff;
        font-family: 'Inter', sans-serif;
    }


    .dgb-footer {
        position: relative;
        padding: 8rem 0 4rem;
        color: #fff;
        font-family: 'Inter', sans-serif;
        background: #000; /* fallback */
        background-image: url("/images/dgb-hero-main.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

        /* Tonad overlay för att göra texten läsbar */
        .dgb-footer::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.90); /* justera 0.5–0.75 beroende på bild */
            z-index: 0;
        }

        /* Se till att allt innehåll ligger över overlay */
        .dgb-footer > * {
            position: relative;
            z-index: 2;
        }


    /* GRID (4 kolumner på desktop) */
    .dgb-footer-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 6rem;
        align-items: flex-start;
    }

    .dgb-footer-title {
        margin-bottom: 2rem;
        font-size: 1.125rem;
        font-style: normal;
        font-weight: 700;
        line-height: 1.2375rem; /* 110% */
        letter-spacing: -0.045rem;
    }


    .dgb-footer-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .dgb-footer-list li {
            margin-bottom: 1rem;
        }

        .dgb-footer-list a {
            color: #ffffff;
            opacity: 0.9;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            line-height: 1.85rem; /* 185% */
        }

            .dgb-footer-list a:hover {
                opacity: 1;
            }


    .dgb-hours {
        display: grid;
        grid-template-columns: auto auto;
        row-gap: .6rem;
        column-gap: 2rem;
    }

        .dgb-hours .day {
            font-size: 1rem;
            opacity: 0.9;
            font-weight: 500;
            line-height: 1.85rem; /* 185% */
        }

        .dgb-hours .time {
            font-size: 1rem;
            opacity: 0.9;
        }


    .dgb-footer-btn {
        display: flex;
        align-items: center;
        gap: .8rem;
        margin-bottom: 1rem;
        font-size: 1rem;
        width:fit-content;
    }

        .dgb-footer-btn img{
            width: 1.5rem;
            height: 1.5rem;
            aspect-ratio:1/1;
            color:red;
            background:blue;
        }

    .dgb-footer-socials {
        display: flex;
        gap: 2rem;
        margin-top: 1rem;
    }

        .dgb-footer-socials img {
            width: 3rem;
            height: 3rem;
            filter: brightness(0) invert(1);
            opacity: 0.9;
            transition: opacity .2s ease;
        }

            .dgb-footer-socials img:hover {
                opacity: 1;
            }


    .dgb-footer-copy {
        text-align: center;
        margin-top: 5rem;
        opacity: 0.8;
        font-size: 0.875rem;
        font-style: normal;
        font-weight: 500;
        line-height: 1.85rem; /* 211.429% */
    }

    @media (max-width: 992px) {
        .dgb-footer-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 4rem;
        }
    }

    @media (max-width: 768px) {
        .dgb-footer-grid {
            grid-template-columns: 1fr;
            gap: 3rem;
            text-align: center;
        }

        .dgb-hours {
            grid-template-columns: 1fr 1fr;
            justify-content: center;
        }

        .dgb-footer-btn {
            justify-content: center;
        }

        .dgb-footer-socials {
            justify-content: center;
        }
    }


/* ============================= */
/*          FORM                 */
/* ============================= */


    /* GRID */
    .dgb-form-vardera-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: center;
    }

    /* IMAGE */
    .dgb-vardera-img-wrap {
        width: 100%;
    }

    .dgb-vardera-img {
        width: 100%;
        border-radius: 1rem;
        object-fit: cover;
    }

    /* FORM */
    .dgb-vardera-form {
        display: flex;
        flex-wrap: wrap;
        gap: 1.8rem;
    }

    /* GROUPS */
    .dgb-form-group.full {
        flex: 0 0 100%;
    }

    .dgb-form-group.half {
        flex: 0 0 calc(50% - 1rem);
    }

    /* FLOATING LABEL STYLE */
    .form-floating > .form-control {
        padding: 1.3rem 1.2rem;
        height: 4.2rem;
        background: var(--dgb-gray);
        border-radius: .6rem;
        border: 1px solid #ebebeb;
        font-size: 1rem;
    }

    .form-floating > label {
        padding: 1.25rem;
        font-size: 1rem;
        color: #777;
    }

    /* ACTIVE STATE */
    .form-control:focus {
        border-color: var(--dgb-primary);
        box-shadow: 0 0 0 .25rem rgba(219,94,74,0.15);
        background: #fff;
    }

    /* INVALID */
    .form-control.is-invalid,
    .was-validated .form-control:invalid {
        border-color: var(--dgb-primary);
        background-image: none;
    }

    .invalid-feedback {
        font-size: .95rem;
    }

    /* CHECKBOX */
    .dgb-checkbox-wrap {
        display: flex;
        align-items: center;
        gap: .6rem;
        flex-wrap: wrap;
        margin-top: .5rem;
    }

    .dgb-policy-link {
        color: var(--dgb-primary);
        text-decoration: none;
        margin-left: .4rem;
    }

    /* BUTTON */
    .dgb-vardera-btn {
        margin-top: 1rem;
    }

    /* MOBILE */
    @media (max-width: 992px) {
        .dgb-form-vardera-grid {
            grid-template-columns: 1fr;
        }

        .dgb-vardera-img-wrap {
            order: -1;
        }

        .dgb-form-group.half {
            flex: 0 0 100%;
        }
    }

    .form-check-input {
        width: 1.25em;
        height: 1.25em;
    }

    .dgb-submit-btn{
        border:0;
    }

    .form-floating > .form-control-plaintext ~ label::after, .form-floating > .form-control:focus ~ label::after, .form-floating > .form-control:not(:placeholder-shown) ~ label::after, .form-floating > .form-select ~ label::after{
        background:0;
    }

    /* Position invalid-feedback INSIDE the floating input */
    .form-floating .invalid-feedback {
        position: absolute;
        top: 50%;
        left: 1.2rem;
        transform: translateY(-50%);
        margin: 0;
        font-size: 1rem;
        color: var(--dgb-primary);
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s ease;
    }

    /* When invalid — hide label */
    .form-floating .form-control.is-invalid ~ label,
    .was-validated .form-floating .form-control:invalid ~ label {
        opacity: 0;
    }

    /* When invalid — show error text inside field */
    .form-floating .form-control.is-invalid ~ .invalid-feedback,
    .was-validated .form-floating .form-control:invalid ~ .invalid-feedback {
        opacity: 1;
    }

    /* Remove Bootstrap's default background error icon */
    .form-control.is-invalid,
    .was-validated .form-control:invalid {
        background-image: none !important;
        border-color: var(--dgb-primary);
    }

    .invalid-feedback-message {
        display: none;
    }

    .was-validated .form-check-input:invalid ~ .invalid-feedback-message {
        display: block;
    }


    .invalid-feedback-message {
        animation: fadeDown .25s ease;
    }

    @keyframes fadeDown {
        from {
            opacity: 0;
            transform: translateY(-4px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


    .invalid-feedback-message {
        background: #ffe0db;
        padding: 20px;
        border-radius: .65rem;
        margin-top: 1rem;
        font-size: .95rem;
        color: #9d2512;
    }


    /* When focused/filled */
    .form-floating > textarea.form-control:focus ~ label,
    .form-floating > textarea.form-control:not(:placeholder-shown) ~ label {
        opacity: .65;
        transform: scale(.85) translateY(-.6rem) translateX(.15rem);
    }

    /* TEXTAREA inside floating label */
    .form-floating textarea.form-control {
        height: auto !important;
        min-height: 100px; /* ändra efter smak */
        resize: vertical;
        padding-top: 1.4rem;
        padding-bottom: .8rem;
    }

/* ============================= */
/*          GENERAL              */
/* ============================= */

    /* General UL */
    .dbg-ul-general {
        list-style: none;
        padding: 0;
    }

        .dbg-ul-general li {
            display: flex;
            align-items: center;
            gap: .25rem;
            padding:.25rem;
            font-weight:500;
        }


    /* Staff */
    .dbg-section-header-center {
        font-size: 2.5rem;
        font-style: normal;
        font-weight: 800;
        line-height: normal;
        letter-spacing: -0.02rem;
    }

    /* Staff */
    .dgb-staff-title {
        color: #191919;
        font-family: Inter;
        font-size: 2.275rem;
        font-style: normal;
        font-weight: 900;
        line-height: normal;
        letter-spacing: -0.02rem;
    }

    .dgb-staff-underline {
        width: 8rem;
        height: 3px;
        background: #BDBDBA;
        opacity: .3;
        margin: 1rem 0 4rem 0;
    }

    .dgb-staff-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 6rem;
        padding:3rem 0;
    }

    .dgb-staff-card {
        text-align: left;
    }

    .dgb-staff-avatar {
        width: 120px;
        height: auto;
        margin-bottom: 2rem;
    }

    .dgb-staff-svg {
        width: 100%;
        height: auto;
        display: block;
        fill:#1a1a1a;
    }

    .dgb-staff-name {
        font-size: 1.125rem;
        font-style: normal;
        font-weight: 600;
        line-height: 1.875rem; /* 166.667% */
        margin-bottom: .5rem;
    }

    .dgb-staff-role {
        font-size: 1rem;
        opacity: .7;
        margin-bottom: 2rem;
        font-weight:500;
    }

    .dgb-staff-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .dgb-icon-sm {
        width: 18px;
        height: 18px;
        margin-right: .5rem;
    }

    .dgb-staff-btn {
        display: flex;
        align-items: center;
        gap: .8rem;
        font-size: 1rem;
        width: fit-content;
    }

    @media (max-width: 992px) {
        .dgb-staff-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

    @media (max-width: 768px) {
        .dgb-staff-grid {
            grid-template-columns: 1fr;
        }
    }

    /* Full-width image grid */

    .dgb-image-wrapper {
        margin-bottom: 4rem;
    }

    .dgb-full-image {
        width: 100%;
        border-radius: .5rem;
        display: block;
    }

    .dgb-two-col-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 6rem;
    }

    .dgb-content-title {
        font-size: 1.875rem;
        font-style: normal;
        font-weight: 900;
        line-height: normal;
        letter-spacing: -0.02rem;
        margin-bottom: 1rem;
    }

    .dgb-content-underline {
        width: 8rem;
        height: 3px;
        background: var(--dgb-primary);
        margin-bottom: 1rem;
    }

    .dgb-content-text {
        font-size: 1rem;
        font-style: normal;
        font-weight: 500;
        line-height: 1.875rem;
    }

    @media (max-width: 992px) {
        .dgb-two-col-content {
            grid-template-columns: 1fr;
            gap: 4rem;
        }
    }

    .dbg-partner {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .dbg-partner-box {
        background: lavenderblush;
        text-align: center;
        border-radius: .5rem;
        height: 7.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Accordion */
    .dgb-faq-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: center;
    }

    .dgb-faq-title {
        color: #191919;
        font-family: Inter;
        font-size: 2.275rem;
        font-style: normal;
        font-weight: 900;
        line-height: normal;
        letter-spacing: -0.02rem;
    }

    .dgb-faq-underline {
        width: 8rem;
        height: 4px;
        background: #c4c4c4;
        margin-bottom: 3rem;
    }

    .dgb-faq-image {
        width: 100%;
        border-radius: 1.2rem;
    }

    .dgb-accordion .accordion-item {
        border: none!important;
        margin-bottom: 1rem;
        border-radius: .6rem;
        overflow: hidden;
    }

    .dgb-faq-btn {
        background: #fff;
        border-radius: .6rem !important;
        padding: 1.25rem 1rem;
        font-size: 1rem;
        font-weight: 500;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .accordion-button:not(.collapsed) {
        background: #fff;
        box-shadow: none;
        border: none !important;
    }

    .accordion-button:focus {
        border-color: transparent !important;
        box-shadow: none !important;
    }


    @media (max-width: 992px) {
        .dgb-faq-grid {
            grid-template-columns: 1fr;
        }

        .dgb-faq-image-col {
            order: -1; /* Bild först på mobil */
        }
    }

    .accordion-button:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23DB5E4A' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6-.708 0-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    }

    .accordion-button:not(.collapsed){
        color:var(--dgb-primary);
    }

    /* Kontakt */

    .dgb-contact-intro {
        font-size: 1.1rem;
        color: #444;
        max-width: 80%;
    }

    .dgb-contact-btns {
        display: flex;
        gap: 1rem;
        margin: 1.5rem 0 2rem;
    }

    .dgb-contact-subtitle {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: .8rem;
        color:var(--dgb-primary);
    }

    .dgb-contact-info-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .dgb-contact-ul {
        list-style: none;
        padding: 0;
        line-height: 1.8rem;
    }

    .dgb-contact-line {
        display: flex;
        align-items: center;
        gap: .8rem;
        margin-bottom: 1rem;
    }

        .dgb-contact-line img {
            width: 2rem;
            height: 2rem;
        }

    @media (max-width: 992px) {
        .dgb-contact-info-grid {
            grid-template-columns: 1fr;
        }

        .dgb-contact-intro {
            max-width: 100%;
        }
    }


    /* Map */

    .dgb-map-wrap {
        width: 100%;
        border-radius: .65rem;
        overflow: hidden;
        position: relative;
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

    .dgb-map-img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        /* Base animation settings */
        transition: transform .6s cubic-bezier(.25,.8,.25,1);
        will-change: transform;
    }

    /* Smooth zoom in */
    .dgb-map-wrap:hover .dgb-map-img {
        transform: scale(1.015);
        transition: transform .8s cubic-bezier(.22,.61,.36,1);
    }
    
    

/* ============================= */
/*          FORM                 */
/* ============================= */


    /* Grids */
    .bo-form-vardera-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: center;
    }

    .bo-vardera-form {
        display: flex;
        flex-wrap: wrap;
        gap: 1.8rem;
        max-width: 900px;
        margin: 0 auto;
    }

    .bo-vardera-form img{
        border-radius:1rem;
    }

    /* GROUPS */
    .bo-form-group.full {
        flex: 0 0 100%;
    }

    .bo-form-group.half {
        flex: 0 0 calc(50% - 1rem);
    }

    .form-floating > .form-control {
        padding: 1.3rem 1.2rem;
        height: 4.2rem;
        background: var(--dgb-white);
        border-radius: .6rem;
        border: 1px solid #ebebeb;
        font-size: 1rem;
    }

    .form-floating > label {
        padding: 1.25rem;
        font-size: 1rem;
        color: #777;
    }

    .form-control:focus {
        border-color: var(--dgb-primary);
        box-shadow: 0 0 0 .25rem rgba(219,94,74,0.15);
        background: #fff;
    }

    /* Buttons Inputs */
        
    .bo-vardera-btn {
        margin-top: 1rem;
    }

    .form-check-input {
        width: 1.25em;
        height: 1.25em;
    }

    .form-floating > .form-control-plaintext ~ label::after, .form-floating > .form-control:focus ~ label::after, .form-floating > .form-control:not(:placeholder-shown) ~ label::after, .form-floating > .form-select ~ label::after {
        background: 0;
    }

    .bo-checkbox-wrap {
        display: flex;
        align-items: center;
        gap: .6rem;
        flex-wrap: wrap;
        margin-top: .5rem;
        width:100%;
    }

    /* Form floating > Textarea */
    .form-floating textarea.form-control {
        height: auto !important;
        min-height: 100px; /* ändra efter smak */
        resize: vertical;
        padding-top: 1.4rem;
        padding-bottom: .8rem;
    }

    .form-floating > textarea.form-control:focus ~ label,
    .form-floating > textarea.form-control:not(:placeholder-shown) ~ label {
        opacity: .65;
        transform: scale(.85) translateY(-.6rem) translateX(.15rem);
    }

    .bo-block-label {
        font-weight: 600;
        font-size: 1.125rem;
        display: block;
        background: #ffe5e9;
        padding: 1rem;
        border-radius: .45rem;
        margin: 1rem 0;
    }

    .bo-rental-options {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
        gap: 1rem;
        margin-bottom: 1.2rem;
    }

    .bo-rental-option {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        background: #f5f5f5;
        padding: 0.9rem 1rem;
        border-radius: 10px;
        border: 1px solid #e5e5e5;
        cursor: pointer;
        transition: background .2s ease, border-color .2s ease;
    }

    .custom-date-wrapper {
        display: none;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 1.2rem;
    }

    .bo-vehicle-box img{
        width:3rem;
    }

    /* Radio buttons */

    .bo-rental-option input[type="radio"] {
        transform: scale(1.25);
    }

    .bo-rental-option:hover {
        background: #eee;
        border-color: #d3d3d3;
    }

    .bo-rental-option input[type="radio"]:checked + span {
        font-weight: 700;
    }

    .bo-vehicle-option input[type="radio"] {
        display: none;
    }

    .bo-vehicle-option {
        cursor: pointer;
    }

    .bo-vehicle-option input[type="radio"]:checked + .bo-vehicle-box {
        border: 2px solid var(--dgb-primary);
        border-radius: .25rem
    }

        .bo-vehicle-option input[type="radio"]:checked + .bo-vehicle-box span {
            color: var(--dgb-primary);
        }

        .bo-vehicle-option input[type="radio"]:checked + .bo-vehicle-box img {
            opacity: 1;
        }


    /* Booking form addition */

    .bo-rental-block-inner {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .bo-vehicle-box {
        display: flex;
        flex-direction: column;
        padding: 2rem;
        align-items: center;
    }

    .bo-book-title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .bo-book-intro {
        font-size: 1.1rem;
        color: #555;
        margin-bottom: 2rem;
    }

    .bo-price-box {
        padding: 1rem 1.4rem;
        background: #f8f8f8;
        border-radius: 8px;
        border: 1px solid #e4e4e4;
        display: flex;
        justify-content: space-between;
        font-size: 1rem;
        font-weight: 600;
    }

    .bo-display-reset{
        display:flex;
        width:100%;
        gap:2rem;
    }

    .bo-vehicle-options {
        border: 1px solid #eaeaea;
        border-radius: .6rem;
        background: #f1f1f2;
        display: flex;
        gap: 1rem;
        align-items: center;
        min-height: 200px;
        padding: 1rem;
    }

    .bo-rental-contact {
        display: flex;
        gap: 1.2rem;
        flex-wrap: wrap;
    }

    .bo-validation{
        display:flex;
        flex-direction:column;
        gap:1rem;
    }

    .bo-vardera-img-wrap {
        width: 100%;
    }

    .bo-vardera-img {
        width: 100%;
        border-radius: 1rem;
        object-fit: cover;
    }

    .lb-policy-link {
        color: var(--dgb-dark);
        text-decoration: none;
        margin-left: .4rem;
        font-weight: 500;
    }

    /* Validation */

    .form-floating .invalid-feedback {
        position: absolute;
        top: 50%;
        left: 1.2rem;
        transform: translateY(-50%);
        margin: 0;
        font-size: 1rem;
        color: var(--dgb-primary);
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s ease;
    }

    .form-floating .form-control.is-invalid ~ label,
    .was-validated .form-floating .form-control:invalid ~ label {
        opacity: 0;
    }

    .form-floating .form-control.is-invalid ~ .invalid-feedback,
    .was-validated .form-floating .form-control:invalid ~ .invalid-feedback {
        opacity: 1;
    }

    .form-control.is-invalid,
    .was-validated .form-control:invalid {
        background-image: none !important;
        border-color: var(--dgb-primary);
    }

    .form-control.is-invalid,
    .was-validated .form-control:invalid {
        border-color: var(--dgb-primary);
        background-image: none;
    }

    .invalid-feedback {
        font-size: .95rem;
    }

    .invalid-feedback-message {
        background: #ffe0db;
        padding: 20px;
        border-radius: .65rem;
        margin-top: 1rem;
        font-size: .95rem;
        color: #9d2512;
    }

    .invalid-feedback-message {
        animation: fadeDown .25s ease;
    }

    @keyframes fadeDown {
        from {
            opacity: 0;
            transform: translateY(-4px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .invalid-feedback-message {
        display: none;
    }

    .was-validated .form-check-input:invalid ~ .invalid-feedback-message {
        display: block;
    }

    /* Mobile */
    @media (max-width: 992px) {
        .bo-form-vardera-grid {
            grid-template-columns: 1fr;
        }

        .bo-vardera-img-wrap {
            order: -1;
        }

        .bo-form-group.half {
            flex: 0 0 100%;
        }
    }

    @media (max-width: 768px) {
        .bo-rental-options {
            grid-template-columns: 1fr;
        }

        .custom-date-wrapper {
            grid-template-columns: 1fr;
        }
    }


    /* ==============================
    BO REKLAMATIOM (flat + soft mode)
    ============================== */

    .bo-rec-main {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .bo-rec-r {
        background: var(--dgb-primary);
        border-radius: 1.25rem;
        background: rgba(242, 250, 255, 0.95);
        text-align: center;
        width: fit-content;
        max-width: 25rem;
        margin: 0 auto;
        padding: 2.5rem 4rem 2.8125rem 4rem;
        height: fit-content;
    }

    .bo-req-radios{
        width: 100%;
        background:#fafafa;
        padding:1.3rem 1.2rem;
        border-radius:.6rem;
        border: 1px solid #ebebeb;
    }

    .bo-rec-ibox{
        display: flex;
        flex-direction: column;
        gap:1rem;
        align-items: center;
    }