
    :root {
        --dgb-primary: #DB5E4A;
        --dgb-text: #191919;
        --dgb-gray: #F1F2F2;
        --dgb-white: #ffffff;
        --dgb-dark: #191919;
        --dgb-radius: 10px;
    }

    body {
        font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif!important;
    }

    .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-containernavbar{
		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          */
/* ============================= */


    .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/dgb-hero-main.webp');
        background-size: cover;
        background-position: center;
        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/dgb-hero-subpages.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: 800;
        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: 7.5rem;
    }

    .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: 800;
        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: 800;
        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;
        }
    }




/* ============================= */
/*          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: 800;
        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(2, 1fr);
    	gap: 2.25rem;
    	padding: 3rem 0;
    	width: fit-content;
	}

    .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: 800;
        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: flex-start;
    }

    .dgb-faq-title {
        color: #191919;
        font-family: Inter;
        font-size: 2.275rem;
        font-style: normal;
        font-weight: 800;
        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);
    }






/* ============================= */
/*          
    
    Hyrbilar 

*/
/* ============================= */

    /* GRID */
    .dhb-usp-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 6rem;
        margin: 4rem 0;
    }

    .dhb-usp-card {
        text-align: center;
        font-family: 'Inter', sans-serif;
    }

    .dhb-usp-img-wrap {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        height: 260px;
    }

        .dhb-usp-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .6s ease, filter .6s ease;
        }

    .dhb-usp-colorwash {
        position: absolute;
        inset: 0;
        background: #ff7300; /* tema-orange */
        mix-blend-mode: multiply;
        opacity: 0;
        transition: opacity .5s ease;
        z-index: 2;
    }

    .dhb-usp-title {
        position: absolute;
        z-index: 3;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        margin: 0;
        font-size: 1.8rem;
        font-weight: 700;
        text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
    }

    .dhb-usp-img-wrap:hover img {
        transform: scale(1.12);
    }

    .dhb-usp-img-wrap:hover .dhb-usp-colorwash {
        opacity: 1;
        cursor: pointer;
    }

    @media (max-width: 768px) {

        .dhb-usp-grid {
            grid-template-columns: 1fr; /* En kolumn */
            gap: 2rem;
            padding: 0 1rem; /* Lite luft */
        }

        .dhb-usp-img-wrap {
            height: 200px; /* Lite kortare bild på mobil */
        }

        .dhb-usp-title {
            font-size: 1.6rem;
            text-align: center;
            width: 90%;
        }

    }


    /* Pricelist */
    .dhb-price-item {
        display: grid;
        grid-template-columns: 240px 1fr;
        background: transparent;
        gap: 2rem;
        margin: 3rem 0;
        font-family: 'Inter', sans-serif;
        align-items:center;
    }

    .dhb-price-left {
        background: #000;
        padding: 3rem 2rem;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        max-height:300px;
    }

    .dhb-price-icon {
        margin-bottom: 1rem;
    }

    .dhb-price-title {
        color: #fff;
        font-size: 1.25rem;
        font-weight: 800;
        text-align: center;
    }

    .dhb-price-right {
        background: #fff;
        border-radius: 12px;
        padding: 2rem;
    }

    .dhb-price-row {
        display: grid;
        grid-template-columns: 120px repeat(3, 1fr);
        align-items: center;
        gap: 1.4rem;
        padding: 1rem 0;
        border-bottom: 1px solid #eee;
    }

        .dhb-price-row:last-child {
            border-bottom: none;
        }

    .dhb-price-tag {
        background: #f4f4f4;
        border: none;
        padding: 0.7rem 1rem;
        border-radius: 6px;
        font-weight: 600;
        cursor: default;
        width: 100%;
    }

    .dhb-price-col {
        display: flex;
        align-items: center;
        gap: 0.7rem;
    }

        .dhb-price-col span {
            font-size: 1rem;
            font-weight:500;
        }

    .dhb-price-btn {
        margin-top: 1.5rem;
        display: inline-block;
        padding: 0.9rem 1.6rem;
        background: #e06550;
        color: #fff;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
    }

    @media (max-width: 768px) {

        .dhb-price-item {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .dhb-price-left {
            padding: 2rem 1.5rem;
            border-radius: 12px;
        }

        .dhb-price-title {
            font-size: 1.4rem;
        }

        .dhb-price-right {
            padding: 1.5rem;
        }

        .dhb-price-row {
            grid-template-columns: 1fr;
            gap: 0.8rem;
            padding: 1.2rem 0;
            border-bottom: 1px solid #eee;
        }

        .dhb-price-tag {
            width: 100%;
            text-align: center;
            padding: 0.9rem;
            font-size: 1.05rem;
        }

        .dhb-price-col {
            justify-content: flex-start;
        }

            .dhb-price-col span {
                font-size: 1.05rem;
            }

        .dhb-price-btn {
            width: 100%;
            text-align: center;
            display: block;
            margin-top: 1.8rem;
            padding: 1.1rem;
            font-size: 1.1rem;
            border-radius: 10px;
        }
    }

    /* Stepper overlay */
    .dgb-step-overlay {
        position: absolute;
        z-index: 3;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(0, 0, 0, 0.65);
        color: #fff;
        padding: 1rem 2rem;
        border-radius: 50px;
        font-size: 1.6rem;
        font-weight: 700;
        text-align: center;
        letter-spacing: 0.5px;
        backdrop-filter: blur(3px); /* ger premiumkänsla */
    }

    .dgb-flip-img-wrap {
        position: relative;
        overflow: hidden;
    }


    /* Fleet Grid */

    .dhb-fleet-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 6rem;
        margin: 4rem 0;
    }

    .dhb-fleet-card {
        display: flex;
        flex-direction: column;
        font-family: 'Inter', sans-serif;
        text-align: left;
    }

    .dhb-fleet-img-wrap {
        overflow: hidden;
        border-radius: 12px;
    }

        .dhb-fleet-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .6s ease;
        }

    .dhb-fleet-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-top: 1.2rem;
        flex-wrap: wrap;
    }

    .dhb-fleet-mod {
        font-size: 1.5rem;
        font-weight: 700;
        color: #111;
        margin: 0;
    }

    .dhb-fleet-tags {
        display: flex;
        gap: 0.6rem;
    }

    .dhb-fleet-tag {
        background: var(--dgb-primary);
        color: #fff;
        padding: 0.35rem 0.75rem;
        border-radius: 6px;
        font-size: 0.85rem;
        font-weight: 600;
        white-space: nowrap;
    }

    .dhb-fleet-desc {
        margin: 1.2rem 0 0.8rem 0;
        font-size: 1rem;
        line-height: 1.6;
        color: #444;
    }

    .dhb-fleet-specs {
        margin-bottom: 1.4rem;
        display: grid;
        gap: 0.4rem;
        font-size: 0.95rem;
        color: #333;
    }

        .dhb-fleet-specs strong {
            color: #000;
        }

    .dhb-fleet-btn {
        display: inline-block;
        padding: 0.75rem 1.25rem;
        background: var(--dgb-dark);
        color: #fff;
        border-radius: .5rem;
        text-decoration: none;
        transition: 0.25s ease;
        align-self: flex-start; /* <-- fixar breddproblemet */
    }

        .dhb-fleet-btn:hover {
            background: #333; /* no visual change */
            transform: none;
        }

    @media (max-width: 768px) {

        .dhb-fleet-grid {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }

        .dhb-fleet-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .dhb-fleet-mod {
            font-size: 1.4rem;
        }

        .dhb-fleet-tags {
            gap: 0.4rem;
        }

        .dhb-fleet-desc {
            font-size: 0.95rem;
            margin-top: 0.8rem;
        }

        .dhb-fleet-specs {
            font-size: 0.9rem;
        }

        .dhb-fleet-btn {
            align-self: flex-start; /* keep button natural width */
            padding: 0.8rem 1.4rem;
            font-size: 0.95rem;
        }
    }



/* New */

/* Campaign block layout */
.dgb-campaign-block {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin: 4rem 0;
    align-items:start;
}

/* Left: image + content */
.dgb-campaign-left {
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.dgb-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
}

.dgb-campaign-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.dgb-campaign-title {
    color: #191919;
    font-size: 1.875rem;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: -0.02rem;
    margin-bottom: 0;
}

.dgb-campaign-body {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.625rem;
    margin-bottom: 0;
    color: #191919;
}

/* Right side: USP boxes */
.dgb-campaign-usps {
    display: grid;
    gap: 1rem;
    grid-template-columns: 2fr 2fr;
}

.dgb-campaign-usp {
    background: var(--dgb-dark);
    height: 100px; /* fast höjd desktop */
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center; /* centrerar vertikalt */
    justify-content: start; /* centrerar horisontellt */
    /*text-align: center;*/
    padding:1rem;
    gap:.25rem;
}


@media (max-width: 768px) {
    .dgb-campaign-block {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .dgb-campaign-img {
        height: 200px;
    }

    .dgb-campaign-usps {
        grid-template-columns: 1fr 1fr;
    }

    .dgb-campaign-usp {
        height: 80px; /* mindre höjd */
        font-size: 0.9rem;
    }

}


/* 
    Booking form addition
*/

    .dgb-book-title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .dgb-book-intro {
        font-size: 1.1rem;
        color: #555;
        margin-bottom: 2rem;
    }

    .dgb-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;
    }
    
    .dgb-block-label{
    	
    }
    
    
    

    /* ==============================
    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;
    }    
    
    