/* ── HOME + BOOKING OVERRIDES 2026-04-29 ── */
.yd-price-card-light,
.yd-price-card-light .yd-price-from,
.yd-price-card-light .yd-price-text,
.yd-price-card-light .yd-price-includes li,
.yd-price-card-light .yd-price-pill,
.yd-price-card-light h3,
.yd-price-card-light .yd-price-includes h4 {
    color: #17191d;
    -webkit-text-fill-color: currentColor;
}

.kh-home-services-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.95rem 1.6rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    color: #f6f2eb;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.kh-home-services-link:hover {
    background: #364958;
    border-color: rgba(255,255,255,0.18);
    color: #f6f2eb;
}

.kh-home-service-grid-featured {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-areas:
        "intro intro service-1 service-2"
        "intro intro service-3 service-4";
    grid-auto-rows: minmax(250px, 1fr);
    gap: 0;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 32px;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.03), transparent 24%),
        linear-gradient(180deg, #171717 0%, #101010 100%);
}

.kh-home-service-card-intro,
.kh-home-service-card-featured {
    position: relative;
    isolation: isolate;
    padding: 2rem;
    min-height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
    background: transparent;
    border-right: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.kh-home-service-card-featured::before,
.kh-home-service-card-intro::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 22% 100%, rgba(245, 138, 19, 0.85), transparent 38%),
        radial-gradient(circle at 66% 18%, rgba(255,255,255,0.12), transparent 30%),
        linear-gradient(180deg, rgba(45, 36, 29, 0.94) 0%, rgba(25, 23, 21, 0.98) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
}

.kh-home-service-card-intro {
    grid-area: intro;
    padding: 2rem 2rem 1.85rem;
    justify-content: space-between;
    border-radius: 0 0 32px 0;
}

.kh-home-service-card-intro::before {
    opacity: 1;
}

.kh-home-service-card-intro h2 {
    max-width: 14ch;
    margin: 0;
    color: #f7f1e8;
    font-size: clamp(2.35rem, 3.8vw, 4.25rem);
    line-height: 0.96;
    font-weight: 300;
}

.kh-home-service-card-intro p {
    max-width: 34rem;
    margin: 0;
    color: rgba(247, 241, 232, 0.82);
    line-height: 1.8;
}

.kh-home-service-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(247, 241, 232, 0.88);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: lowercase;
}

.kh-home-service-card-service-1 { grid-area: service-1; }
.kh-home-service-card-service-2 { grid-area: service-2; }
.kh-home-service-card-service-3 { grid-area: service-3; }
.kh-home-service-card-service-4 { grid-area: service-4; }

.kh-home-service-card-service-2,
.kh-home-service-card-service-4 {
    border-right: 0;
}

.kh-home-service-card-service-3,
.kh-home-service-card-service-4 {
    border-bottom: 0;
}

.kh-home-service-card-featured > * {
    position: relative;
    z-index: 1;
}

.kh-home-service-card-intro > * {
    position: relative;
    z-index: 1;
}

.kh-home-service-card-featured:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.02);
    border-color: rgba(255,255,255,0.12);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}

.kh-home-service-card-featured:hover::before {
    opacity: 0.24;
}

.kh-home-service-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: rgba(247, 241, 232, 0.5);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.kh-home-service-meta span:first-child {
    color: #f5a11d;
    font-weight: 600;
}

.kh-home-service-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    margin-left: auto;
    color: rgba(255,255,255,0.52);
}

.kh-home-service-icon svg {
    width: 36px;
    height: 36px;
}

.kh-home-service-card-featured h3 {
    margin: 0;
    color: #f6f2eb;
    font-size: clamp(1.55rem, 2vw, 2.15rem);
    line-height: 1.08;
    font-weight: 300;
    max-width: 11ch;
}

.kh-home-service-card-featured p {
    margin: 0;
    color: rgba(246, 242, 235, 0.72);
    line-height: 1.8;
    max-width: 28ch;
}

.kh-home-process {
    background:
        radial-gradient(circle at 12% 12%, rgba(255,255,255,0.04), transparent 24%),
        linear-gradient(180deg, #0d0d0d 0%, #14181f 100%);
}

.kh-home-process-intro-text {
    color: rgba(240,237,232,0.72);
    line-height: 1.9;
    font-size: 0.96rem;
    max-width: 54ch;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.kh-home-process-stage {
    position: relative;
    padding: 2.65rem;
    border-radius: 30px;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.8), rgba(255,255,255,0) 38%),
        linear-gradient(180deg, #edf2f6 0%, #e4ebf1 100%);
    border: 1px solid rgba(196, 207, 217, 0.9);
    color: #17212b;
    overflow: hidden;
}

.kh-home-process-stage-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.9fr);
    gap: 2.8rem;
    align-items: end;
}

.kh-home-process-stage-controls {
    position: absolute;
    top: 1.9rem;
    right: 1.9rem;
    display: flex;
    gap: 0.75rem;
    z-index: 2;
}

.kh-home-process-arrow {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(23, 33, 43, 0.12);
    background: rgba(255,255,255,0.82);
    color: #17212b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.kh-home-process-arrow svg {
    width: 22px;
    height: 22px;
}

.kh-home-process-arrow:hover {
    background: #364958;
    color: #f6f2eb;
    transform: translateY(-1px);
}

.kh-home-process-stage-copy {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    max-width: 41rem;
    padding: 6rem 0 0.2rem 0.45rem;
}

.kh-home-process-stage-number {
    width: 72px;
    height: 72px;
    position: absolute;
    top: 1.9rem;
    left: 1.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(23, 33, 43, 0.08);
    color: #17212b;
    font-size: 2rem;
    font-weight: 300;
}

.kh-home-process-stage-copy h3 {
    margin: 0 0 1rem;
    color: #17212b;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.02;
    font-weight: 300;
}

.kh-home-process-stage-description {
    color: rgba(23, 33, 43, 0.78);
    font-size: 0.98rem;
    line-height: 1.85;
    max-width: 54ch;
    margin-bottom: 1.6rem;
}

.kh-home-process-stage-includes {
    max-width: 28rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(80, 108, 131, 0.3);
}

.kh-home-process-stage-includes ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: 0;
    margin: 0;
}

.kh-home-process-stage-includes li {
    position: relative;
    padding-left: 1rem;
    color: rgba(23, 33, 43, 0.92);
    line-height: 1.45;
    font-size: 0.82rem;
}

.kh-home-process-stage-includes li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.42rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #506c83;
}

.kh-home-process-stage-media {
    /*min-height: 100%;*/
    align-self: end;
    justify-self: end;
    padding: 0.55rem;
    border-radius: 24px;
    background: rgba(166, 183, 197, 0.62);
    width: min(100%, 540px);
    margin: 2.2rem 0 0 auto;
}

.kh-home-process-stage-media img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    display: block;
    object-fit: cover;
    border-radius: 20px;
}

.bk-locations {
    margin-top: 2.4rem;
}

.bk-location-card {
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(111, 148, 182, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(10, 18, 24, 0.98) 0%, rgba(6, 11, 16, 1) 100%);
    border: 1px solid rgba(170, 194, 214, 0.12);
    border-radius: 32px;
    padding: 1rem;
    overflow: hidden;
    box-shadow: 0 36px 100px rgba(0, 0, 0, 0.34);
}

.bk-location-media {
    position: relative;
    background:
        radial-gradient(circle at 16% 20%, rgba(41, 67, 88, 0.42), transparent 26%),
        linear-gradient(180deg, rgba(8, 14, 20, 0.95) 0%, rgba(9, 16, 22, 0.82) 100%);
    border: 1px solid rgba(170, 194, 214, 0.1);
    border-radius: 24px;
    overflow: hidden;
}

.bk-location-map {
    min-height: 580px;
    height: 100%;
}

.bk-location-map .maplibregl-canvas,
.bk-location-map .maplibregl-canvas-container,
.bk-location-map .maplibregl-map {
    border-radius: 24px;
}

.bk-location-content {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    z-index: 3;
    width: min(380px, calc(100% - 2.5rem));
    padding: 1.15rem 1.2rem 1.1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #f3efe8;
    background: rgba(11, 18, 24, 0.82);
    border: 1px solid rgba(203, 218, 232, 0.14);
    border-radius: 22px;
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.bk-location-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.9rem;
}

.bk-location-meta-item {
    display: flex;
    align-items: start;
    gap: 0.85rem;
    color: rgba(243, 239, 232, 0.84);
    line-height: 1.55;
    font-size: 0.98rem;
}

.bk-location-meta-item-country {
    align-items: center;
    color: #f6f2eb;
}

.bk-location-meta-item-country span {
    font-size: 1.35rem;
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.03em;
}

.bk-location-meta-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
}

.bk-location-meta-item svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 0.2rem;
    color: rgba(178, 221, 194, 0.92);
}

.bk-location-meta-item a {
    color: #f6f2eb;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.bk-location-meta-item a:hover {
    color: #d9e8ef;
    opacity: 1;
}

.bk-location-contact-stack {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.bk-map-marker {
    position: relative;
    width: 16px;
    height: 16px;
    padding: 0;
    border: 2px solid rgba(240, 247, 242, 0.92);
    border-radius: 999px;
    background: #56a46a;
    box-shadow: 0 10px 28px rgba(23, 53, 31, 0.48);
    cursor: pointer;
}

.bk-map-marker::before {
    content: "";
    position: absolute;
    inset: -9px;
    border-radius: inherit;
    border: 1px solid rgba(86, 164, 106, 0.45);
    animation: bkMapPulse 2.4s ease-out infinite;
}

.bk-map-popup .maplibregl-popup-content {
    padding: 0.8rem 0.95rem;
    border-radius: 16px;
    border: 1px solid rgba(193, 217, 234, 0.12);
    background: rgba(9, 16, 21, 0.96);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.34);
}

.bk-map-popup .maplibregl-popup-tip {
    border-top-color: rgba(9, 16, 21, 0.96);
}

.bk-map-popup-card {
    display: grid;
    gap: 0.2rem;
    color: #f6f2eb;
}

.bk-map-popup-card strong {
    font-size: 0.92rem;
    font-weight: 700;
}

.bk-map-popup-card span {
    color: rgba(214, 228, 238, 0.68);
    font-size: 0.78rem;
}

.bk-location-map .maplibregl-ctrl-top-right {
    top: 1rem;
    right: 1rem;
}

.bk-location-map .maplibregl-ctrl-group {
    border: 1px solid rgba(211, 226, 236, 0.12);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(9, 16, 21, 0.84);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
}

.bk-location-map .maplibregl-ctrl-group button {
    background: transparent;
}

.bk-location-map .maplibregl-ctrl-group button span {
    filter: invert(1) brightness(1.35);
}

.bk-location-map .maplibregl-ctrl-bottom-right {
    right: 1rem;
    bottom: 1rem;
}

.bk-location-map .maplibregl-ctrl-attrib {
    background: rgba(9, 16, 21, 0.72);
    border-radius: 999px;
    backdrop-filter: blur(10px);
    color: rgba(214, 228, 238, 0.76);
}

.bk-location-map .maplibregl-ctrl-attrib a {
    color: rgba(214, 228, 238, 0.76);
}

@keyframes bkMapPulse {
    0% {
        opacity: 0.75;
        transform: scale(0.7);
    }
    70% {
        opacity: 0;
        transform: scale(1.55);
    }
    100% {
        opacity: 0;
        transform: scale(1.55);
    }
}

@media (max-width: 1100px) {
    .kh-home-process-stage-grid {
        grid-template-columns: 1fr;
    }

    .kh-home-service-grid-featured {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas:
            "intro intro"
            "service-1 service-2"
            "service-3 service-4";
        grid-auto-rows: minmax(220px, auto);
    }

    .kh-home-process-stage-copy {
        max-width: none;
        padding: 0;
    }

    .bk-location-map {
        min-height: 520px;
    }
}

@media (max-width: 700px) {
    .kh-home-service-grid-featured,
    .bk-location-meta {
        grid-template-columns: 1fr;
        grid-template-areas:
            "intro"
            "service-1"
            "service-2"
            "service-3"
            "service-4";
        border-radius: 26px;
    }

    .kh-home-services-link {
        width: 100%;
    }

    .kh-home-service-card-intro,
    .kh-home-service-card-featured,
    .kh-home-process-stage,
    .bk-location-content {
        padding: 1.35rem;
    }

    .kh-home-actions .kf-btn,
    .oo2-cta-link {
        width: auto;
        max-width: calc(100vw - 2rem);
    }

    .kh-home-service-card-intro,
    .kh-home-service-card-featured {
        min-height: 0;
        border-right: 0;
    }

    .kh-home-service-card-intro {
        border-radius: 0;
    }

    .kh-home-service-card-intro h2 {
        font-size: clamp(2rem, 9vw, 2.9rem);
        max-width: 13ch;
    }

    .kh-home-service-card-featured p,
    .kh-home-service-card-intro p {
        max-width: none;
    }

    .kh-home-process-stage {
        padding-top: 5.5rem;
    }

    .kh-home-process-stage-controls {
        top: 1.25rem;
        right: 1.25rem;
    }

    .kh-home-process-arrow {
        width: 48px;
        height: 48px;
    }

    .kh-home-process-stage-number {
        width: 64px;
        height: 64px;
        top: 1.25rem;
        left: 1.25rem;
        font-size: 1.8rem;
    }

    .kh-home-process-stage-includes {
        max-width: none;
        padding-top: 1rem;
    }

    .kh-home-process-stage-media {
        width: 100%;
        margin-top: 1.35rem;
    }

    .kh-home-process-stage-media img,
    .bk-location-map {
        min-height: 0;
    }

    .bk-location-card {
        padding: 0.8rem;
        border-radius: 26px;
    }

    .bk-location-map {
        min-height: 420px;
    }

    .bk-location-content {
        position: static;
        width: auto;
        margin: 0.9rem;
        padding: 1rem 1rem 1.05rem;
        border-radius: 18px;
    }

    .kf-floating-call {
        width: auto;
        max-width: min(16.5rem, calc(100vw - 2rem));
    }
}
