/* ==========================================================================
   Booking Destination - Choose Location (Showroom / Mobile)
   Shortcode: [mtf_booking_destination]
   Prefix: bkd-
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ---------- Variables ---------- */
.mtf-booking-destination {
    --bkd-dark: #061c1c;
    --bkd-gold: #ffead5;
    --bkd-white: #ffffff;
    --bkd-font: 'Plus Jakarta Sans', sans-serif;
    --bkd-site-pad: calc((100vw - 1212px) / 2);
}

/* ---------- Reset / Wrapper ---------- */
.mtf-booking-destination {
    font-family: var(--bkd-font);
    color: var(--bkd-white);
    background: var(--bkd-dark);
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

.mtf-booking-destination *,
.mtf-booking-destination *::before,
.mtf-booking-destination *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.mtf-booking-destination img {
    max-width: 100%;
    display: block;
}

.mtf-booking-destination a {
    text-decoration: none;
    color: inherit;
}

.mtf-booking-destination ::-webkit-scrollbar { display: none; }
.mtf-booking-destination { scrollbar-width: none; }

/* ---------- Page ---------- */
.bkd-page {
    width: 100%;
    position: relative;
}

/* ==========================================================================
   Progress Bar (dark theme)
   ========================================================================== */
.bkd-progress {
    max-width: 1212px;
    margin: 0 auto;
    padding: 32px 24px;
}

.bkd-progress__steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.bkd-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.bkd-step__circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    background: transparent;
    color: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.bkd-step__circle--done {
    background: var(--bkd-gold);
    color: var(--bkd-dark);
    border-color: var(--bkd-gold);
}

.bkd-step__circle--active {
    background: var(--bkd-white);
    color: var(--bkd-dark);
    border-color: var(--bkd-white);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.15);
}

.bkd-step__label {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3);
    white-space: nowrap;
}

.bkd-step__label--active {
    color: var(--bkd-white);
    font-weight: 600;
}

.bkd-step__line {
    width: 80px;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 12px;
    align-self: center;
    margin-bottom: 28px;
}

.bkd-step__line--done {
    background: var(--bkd-gold);
}

/* ==========================================================================
   Showroom Locations - Two-Column Grid
   ========================================================================== */
.bkd-locations {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px 64px;
    position: relative;
}

/* ---------- Location Card ---------- */
.bkd-location {
    position: relative;
    overflow: hidden;
    display: block;
    border-radius: 16px;
    min-height: 420px;
}

/* Background Image */
.bkd-location__bg {
    position: absolute;
    inset: 0;
}

.bkd-location__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 75% center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.bkd-location:hover .bkd-location__bg img {
    transform: scale(1.06);
}

.bkd-location--aarhus .bkd-location__bg img {
    object-position: 88% center;
}

/* Overlay Gradient */
.bkd-location__overlay {
    position: absolute;
    inset: 0;
    transition: opacity 0.6s ease;
    background: linear-gradient(180deg,
        rgba(6, 28, 28, 0.25) 0%,
        rgba(6, 28, 28, 0.85) 50%,
        rgba(6, 28, 28, 0.95) 100%);
}

.bkd-location--copenhagen .bkd-location__overlay {
    background: linear-gradient(to bottom,
        rgba(6, 28, 28, 0.25),
        rgba(6, 28, 28, 0.85) 50%,
        rgba(6, 28, 28, 0.95) 100%);
}

.bkd-location:hover .bkd-location__overlay {
    opacity: 0.8;
}

/* Content */
.bkd-location__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    transform: translateY(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bkd-location--copenhagen .bkd-location__content {
    padding: 32px;
}

.bkd-location:hover .bkd-location__content {
    transform: translateY(-8px);
}

/* Tag (gold accent line + label) */
.bkd-location__tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.bkd-location__tag-line {
    width: 1px;
    height: 48px;
    background: var(--bkd-gold);
}

.bkd-location__tag span {
    color: var(--bkd-gold);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* Title */
.bkd-location__title {
    color: var(--bkd-white);
    font-size: 42px !important;
    font-weight: 700 !important;
    line-height: 1.0 !important;
    margin-bottom: 16px;
}

/* Description */
.bkd-location__desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 500;
    max-width: 400px;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Meta (address, hours) */
.bkd-location__meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.bkd-location__meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bkd-location__meta-item i {
    color: var(--bkd-gold);
}

/* Button */
.bkd-location__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bkd-location__btn span {
    color: var(--bkd-white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.bkd-location__btn i {
    color: var(--bkd-white);
    font-size: 14px;
    transition: transform 0.3s ease;
}

.bkd-location:hover .bkd-location__btn {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.bkd-location:hover .bkd-location__btn i {
    transform: translateX(4px);
}

/* ==========================================================================
   Mobile Showroom – Location Card Variant
   ========================================================================== */
.bkd-location--mobile {
    grid-column: 1 / -1;
    
    
}

.bkd-location--mobile .bkd-location__overlay {
    background: linear-gradient(to top,
        rgba(6, 28, 28, 0.95),
        rgba(6, 28, 28, 0.6) 50%,
        transparent 100%);
}

.bkd-location--mobile .bkd-location__content {
    padding: 32px;
}

.bkd-mobile__badge {
    position: absolute;
    top: 32px;
    right: var(--bkd-site-pad);
    padding: 10px 18px;
    background: var(--bkd-gold);
    border-radius: 6px;
    color: var(--bkd-dark);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    z-index: 2;
}

/* ==========================================================================
   Mobile Showroom Section
   ========================================================================== */
.bkd-mobile {
    position: relative;
    height: 424px;
}

.bkd-mobile__bg {
    position: absolute;
    inset: 0;
}

.bkd-mobile__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.bkd-mobile:hover .bkd-mobile__bg img {
    transform: scale(1.04);
}

.bkd-mobile__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(6, 28, 28, 0.95),
        rgba(6, 28, 28, 0.6) 50%,
        transparent 100%);
}

.bkd-mobile__badge {
    position: absolute;
    top: 32px;
    right: var(--bkd-site-pad);
    padding: 12px 20px;
    background: var(--bkd-gold);
    border-radius: 6px;
    color: var(--bkd-dark);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    z-index: 2;
}

.bkd-mobile__inner {
    position: absolute;
    inset: 0;
    padding: 0 var(--bkd-site-pad);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: flex-end;
    padding-bottom: 64px;
}

.bkd-mobile__tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.bkd-mobile__tag i {
    color: var(--bkd-gold);
    font-size: 30px;
}

.bkd-mobile__tag-line {
    width: 1px;
    height: 32px;
    background: var(--bkd-gold);
}

.bkd-mobile__title {
    color: var(--bkd-white);
    font-size: 56px !important;
    font-weight: 700 !important;
    line-height: 0.95 !important;
    margin-bottom: 16px;
}

.bkd-mobile__desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 500;
    max-width: 500px;
    margin-bottom: 32px;
    line-height: 1.6;
}

.bkd-mobile__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--bkd-gold);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.bkd-mobile__btn span {
    color: var(--bkd-dark);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.bkd-mobile__btn i {
    color: var(--bkd-dark);
    font-size: 14px;
}

.bkd-mobile__btn:hover {
    background: var(--bkd-white);
}

.bkd-mobile__features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-end;
    padding-bottom: 16px;
}

.bkd-mobile__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.bkd-mobile__feature i {
    color: var(--bkd-gold);
    font-size: 18px;
}

/* ==========================================================================
   Progress Bar Dark Overlay (reuses bks- from booking-session)
   ========================================================================== */
.bkd-progress-overlay {
    position: relative;
    z-index: 10;
    padding: 32px 24px 0;
    background-color: var(--bkd-dark);
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    overflow: hidden;
}

.bkd-progress-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://madetofit.dk/wp-content/uploads/2026/02/showroom-Hinnnerup-scaled.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    pointer-events: none;
}

.bkd-progress-overlay > * {
    position: relative;
    z-index: 1;
}
.mtf-booking-destination .bks-step__circle { background: transparent; color: rgba(255,255,255,0.3); border-color: rgba(255,255,255,0.15); }
.mtf-booking-destination .bks-step__circle--done { background: var(--bkd-gold); color: var(--bkd-dark); border-color: var(--bkd-gold); }
.mtf-booking-destination .bks-step__circle--active { background: transparent; color: var(--bkd-gold); border-color: var(--bkd-gold); box-shadow: 0 0 0 4px rgba(255,234,213,0.15); }
.mtf-booking-destination .bks-step__label { color: rgba(255,255,255,0.35); }
.mtf-booking-destination .bks-step__label--active { color: var(--bkd-gold); }
.mtf-booking-destination .bks-step__line { background: rgba(255,255,255,0.1); }
.mtf-booking-destination .bks-step__line--done { background: var(--bkd-gold); box-shadow: 0 0 10px rgba(255,234,213,0.2); }
.mtf-booking-destination .bks-step__selection { color: rgba(255,255,255,0.45); }

/* ==========================================================================
   Responsive - Tablet
   ========================================================================== */
@media (max-width: 1024px) {
    .bkd-locations {
        grid-template-columns: 1fr;
        
    }

    .bkd-location {
        min-height: 500px;
    }

    .bkd-location__title {
        font-size: 48px !important;
    }

    .bkd-location__content {
        padding: 36px;
    }

    .bkd-mobile {
        
        min-height: 500px;
    }

    .bkd-mobile__inner {
        padding: 0 36px;
        grid-template-columns: 1fr;
        gap: 24px;
        padding-bottom: 48px;
    }

    .bkd-mobile__title {
        font-size: 40px !important;
    }

    .bkd-mobile__badge {
        right: 36px;
        top: 24px;
    }
}

/* ==========================================================================
   Responsive - Mobile
   ========================================================================== */
@media (max-width: 640px) {
    .bkd-locations {
        padding-top: 20px;
    }

    .bkd-location {
    }


    .bkd-location__bg img {
        object-position: 75% center;
    }

    .bkd-location--aarhus .bkd-location__bg img {
        object-position: 75% center;
    }
    .bkd-location__content {
        padding: 24px;
    }

    .bkd-location__title {
        font-size: 36px !important;
    }

    .bkd-location__desc {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .bkd-location__meta {
        margin-bottom: 24px;
        font-size: 12px;
    }

    .bkd-location__btn {
        padding: 14px 24px;
    }

    .bkd-location__btn span {
        font-size: 12px;
    }

    .bkd-mobile__inner {
        padding: 0 24px;
        padding-bottom: 36px;
    }

    .bkd-mobile__title {
        font-size: 32px !important;
    }

    .bkd-mobile__desc {
        font-size: 14px;
    }

    .bkd-mobile__badge {
        right: 24px;
        top: 16px;
        padding: 8px 14px;
        font-size: 10px;
    }

    .bkd-mobile__features {
        gap: 16px;
    }

    .bkd-mobile__feature {
        font-size: 12px;
    }
}

/* ---------- Trustpilot Bottom Bar ---------- */
.bks-bottom-bar {
    position: relative;
    z-index: 50;
    display: flex;
    gap: 12px;
    width: fit-content;
    margin: 0 auto;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bks-bottom-bar__item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.bks-bottom-bar__item i {
    color: #9fa5a5;
    font-size: 14px;
}
.bks-bottom-bar__item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 600;
}
.bks-bottom-bar__sep {
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 640px) {
    .bks-bottom-bar {
        flex-direction: column;
        border-radius: 16px;
    }
    .bks-bottom-bar__sep {
        width: 100%;
        height: 1px;
    }
}

/* 3D Scanning Section */
.bks-3d-section { position: relative; padding: 80px 48px; background: linear-gradient(180deg, #051919 0%, #0a2626 50%, #051919 100%); border-top: 1px solid rgba(159,165,165,0.1); }
.bks-3d-section__inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.bks-3d-section__visual { position: relative; border-radius: 20px; overflow: hidden; }
.bks-3d-section__visual img { width: 100%;  display: block; border-radius: 20px; }
.bks-3d-section__tag { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #FFEAD5; margin-bottom: 16px; }
.bks-3d-section__title { font-size: 36px !important; font-weight: 600 !important; color: #fff !important; line-height: 1.15 !important; margin-bottom: 20px !important; }
.bks-3d-section__desc { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 32px; }
.bks-3d-section__features { display: flex; gap: 24px; }
.bks-3d-feature { display: flex; align-items: center; gap: 10px; padding: 12px 20px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; }
.bks-3d-feature i { color: #c9a96e; font-size: 16px; }
.bks-3d-feature span { color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 600; white-space: nowrap; }
@media (max-width: 1024px) { .bks-3d-section { padding: 60px 24px; } .bks-3d-section__inner { gap: 40px; } .bks-3d-section__title { font-size: 28px !important; } }
@media (max-width: 640px) { .bks-3d-section { padding: 48px 20px; } .bks-3d-section__inner { grid-template-columns: 1fr; gap: 32px; } .bks-3d-section__title { font-size: 24px !important; } .bks-3d-section__desc { font-size: 14px; } .bks-3d-section__features { flex-direction: column; gap: 12px; } }

/* Bottom bar mobile - horizontal */
@media (max-width: 640px) { .bks-bottom-bar { flex-direction: row; flex-wrap: nowrap; border-radius: 9999px; gap: 6px; padding: 8px 14px; } .bks-bottom-bar__item { gap: 4px; } .bks-bottom-bar__item span { font-size: 9px; white-space: nowrap; } .bks-bottom-bar__item i { font-size: 11px; } .bks-bottom-bar__sep { width: 1px; height: 14px; } }

/* Mobile compact cards - content drives height */
@media (max-width: 640px) {
    .bkd-locations { gap: 16px; padding: 12px 16px 48px; }

    .bkd-location { min-height: auto; }
    .bkd-location__content {
        position: relative;
        inset: auto;
        padding: 20px;
        z-index: 1;
    }
    .bkd-location__tag { margin-bottom: 8px; }
    .bkd-location__tag-line { height: 32px; }
    .bkd-location__title { font-size: 28px !important; margin-bottom: 8px; }
    .bkd-location__desc { font-size: 13px; margin-bottom: 12px; line-height: 1.5; }
    .bkd-location__meta { margin-bottom: 14px; gap: 8px; }
    .bkd-location__btn { padding: 12px 20px; }
    .bkd-location__btn span { font-size: 12px; }

    .bkd-location--mobile { min-height: auto; }
}

/* Mobile image positioning - show postal codes and van */
@media (max-width: 640px) {
    .bkd-location--aarhus .bkd-location__bg img { object-position: 85% center !important; }
    .bkd-location--copenhagen .bkd-location__bg img { object-position: 80% center !important; }
    .bkd-location--mobile .bkd-location__bg img { object-position: 50% center !important; }
}

/* Mobile showroom - 2-column meta grid */
.bkd-location--mobile .bkd-location__meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.bkd-nav { max-width:1100px; margin:0 auto; padding:0 24px 16px; }
.bkd-nav__back { display:inline-flex; align-items:center; gap:10px; padding:12px 24px; color:rgba(255,255,255,0.5); font-size:14px; font-weight:600; text-decoration:none; border-radius:8px; transition:all 0.3s ease; }
.bkd-nav__back:hover { color:#fff; background:rgba(255,255,255,0.06); }
.bkd-nav__back i { font-size:12px; transition:transform 0.3s ease; }
.bkd-nav__back:hover i { transform:translateX(-3px); }
