@charset "UTF-8";
/* CSS Document */
/* =============================================
   SCROLL REVEAL UTILITY
   ============================================= */
/* =============================================
   SCROLL REVEAL
   ============================================= */
.bk-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease var(--bk-d, 0s), transform 0.6s ease var(--bk-d, 0s);
}
.bk-reveal.bk-pop {
    transform: scale(0.92) translateY(16px);
    transition: opacity 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) var(--bk-d, 0s),
                transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) var(--bk-d, 0s);
}
.bk-reveal.bk-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}
 
/* =============================================
   HERO — matches contact/pricing style
   ============================================= */
.bk-hero {
    background: #000;
    background-image:
        repeating-linear-gradient(-45deg, transparent, transparent 3px, rgba(255,255,255,0.015) 3px, rgba(255,255,255,0.015) 4px),
        repeating-linear-gradient( 45deg, transparent, transparent 3px, rgba(255,255,255,0.015) 3px, rgba(255,255,255,0.015) 4px);
    padding: 80px 40px 72px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.bk-hero::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 48px;
    background: #f2f2f2;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
.bk-hero-eyebrow {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #000;
    background: #fff200;
    padding: 5px 14px;
    border-radius: 2px;
    margin-bottom: 22px;
}
.bk-hero h1 {
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 14px;
}
.bk-hero h1 span { color: #fff200; }
.bk-hero p {
    font-size: 16px;
    color: #888;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}
 
/* =============================================
   TRUST BAR
   ============================================= */
.bk-trust-bar {
    background: #f2f2f2;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.bk-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #000;
    background: #fff200;
    padding: 8px 18px;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* =============================================
   MAIN LAYOUT
   ============================================= */
.bk-main {
    max-width: 1080px;
    margin: 0 auto;
    padding: 70px 40px 80px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 56px;
    align-items: start;
}
 
/* =============================================
   LEFT COLUMN
   ============================================= */
.bk-section-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #000;
    background: #fff200;
    padding: 4px 12px;
    border-radius: 2px;
    margin-bottom: 16px;
}
.bk-left h2 {
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 900;
    color: #000;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 16px;
}
.bk-body-text {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 28px;
}
 
/* Checklist */
.bk-checklist {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
    margin-bottom: 32px;
}
.bk-checklist li {
    font-size: 13.5px;
    color: #333;
    padding-left: 20px;
    position: relative;
    line-height: 1.45;
}
.bk-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 9px;
    height: 9px;
    background: #fff200;
    border-radius: 1px;
    transform: rotate(45deg);
}
 
/* Tip box */
.bk-tip {
    background: #fff;
    border-radius: 6px;
    border-left: 3px solid #fff200;
    padding: 16px 20px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    margin-bottom: 40px;
}
.bk-tip-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #bba000;
    margin-bottom: 4px;
}
.bk-tip-text {
    font-size: 13px;
    color: #444;
    line-height: 1.6;
}
 
/* Divider */
.bk-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}
.bk-divider-line {
    flex: 1;
    height: 1px;
    background: #ddd;
}
.bk-divider-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #888;
    white-space: nowrap;
}
 
/* Other services */
.bk-other-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.bk-other-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    padding: 12px 14px;
    text-decoration: none;
    color: #000;
    font-size: 13px;
    font-weight: 600;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.bk-other-link:hover {
    border-color: #fff200;
    transform: translateX(3px);
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}
.bk-other-dot {
    width: 8px;
    height: 8px;
    background: #fff200;
    border-radius: 1px;
    transform: rotate(45deg);
    flex-shrink: 0;
}
 
/* =============================================
   RIGHT COLUMN — BOOK NOW CARD
   ============================================= */
.bk-right {
    position: sticky;
    top: 30px;
}
.bk-book-card {
    background: #000;
    background-image:
        repeating-linear-gradient(-45deg, transparent, transparent 3px, rgba(255,255,255,0.018) 3px, rgba(255,255,255,0.018) 4px),
        repeating-linear-gradient( 45deg, transparent, transparent 3px, rgba(255,255,255,0.018) 3px, rgba(255,255,255,0.018) 4px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}
 
/* Card top accent */
.bk-card-top {
    background: #fff200;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.bk-card-badge {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #000;
}
.bk-card-price-mini {
    text-align: right;
}
.bk-card-price-mini .from {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #555;
    display: block;
}
.bk-card-price-mini .num {
    font-size: 22px;
    font-weight: 900;
    color: #000;
    letter-spacing: -0.03em;
    line-height: 1;
}
 
/* Card body */
.bk-card-body {
    padding: 28px 24px 24px;
}
.bk-card-heading {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
    line-height: 1.2;
}
.bk-card-sub {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 24px;
}
 
/* THE BOOK NOW BUTTON */
.bk-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: #fff200;
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
    padding: 16px 24px;
    border-radius: 4px;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, gap 0.2s ease, transform 0.15s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 16px;
}
.bk-book-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: background 0.2s;
}
.bk-book-btn:hover {
    background: #ffe600;
    gap: 14px;
    transform: translateY(-1px);
}
.bk-book-btn:hover::before {
    background: rgba(255,255,255,0.06);
}
.bk-book-btn:active {
    transform: translateY(0);
}
 
/* Card quick info */
.bk-card-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid #1e1e1e;
}
.bk-card-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    color: #888;
}
.bk-card-info-item svg { flex-shrink: 0; }
 
/* Price note */
.bk-price-note {
    font-size: 11px;
    color: #555;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 20px;
}
 
/* Discounts row on card */
.bk-card-discounts {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}
.bk-disc-badge {
    flex: 1;
    background: #111;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    padding: 10px 12px;
    text-align: center;
}
.bk-disc-pct {
    font-size: 18px;
    font-weight: 900;
    color: #fff200;
    letter-spacing: -0.02em;
    display: block;
    line-height: 1;
    margin-bottom: 2px;
}
.bk-disc-label {
    font-size: 9.5px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
 
/* Questions link */
.bk-card-questions {
    text-align: center;
    font-size: 12px;
    color: #555;
    padding-top: 16px;
    border-top: 1px solid #1a1a1a;
    margin-top: 4px;
}
.bk-card-questions a {
    color: #fff200;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,242,0,0.3);
    transition: border-color 0.2s;
}
.bk-card-questions a:hover { border-color: #fff200; }
 
/* =============================================
   LOCATION LINKS STRIP
   ============================================= */
.bk-locations-section {
    background: #161616;
    background-image:
        repeating-linear-gradient(-45deg, transparent, transparent 3px, rgba(255,255,255,0.012) 3px, rgba(255,255,255,0.012) 4px),
        repeating-linear-gradient( 45deg, transparent, transparent 3px, rgba(255,255,255,0.012) 3px, rgba(255,255,255,0.012) 4px);
    padding: 50px 40px;
}
.bk-locations-inner {
    max-width: 1080px;
    margin: 0 auto;
}
.bk-locations-heading {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.bk-locations-heading::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #222;
}
.bk-locations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.bk-location-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    padding: 8px 14px;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 600;
    color: #aaa;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.bk-location-chip:hover {
    border-color: #fff200;
    color: #fff200;
    background: #111;
}
.bk-location-chip svg { flex-shrink: 0; }
 
/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
    .bk-main {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 50px 24px 60px;
    }
    .bk-right { position: static; }
    .bk-hero { padding: 60px 24px 60px; }
    .bk-trust-bar { gap: 16px; padding: 16px 24px; }
    .bk-checklist { grid-template-columns: 1fr; }
    .bk-other-grid { grid-template-columns: 1fr; }
    .bk-locations-section { padding: 40px 24px; }
}
@media (max-width: 480px) {
    .bk-trust-bar { flex-direction: column; align-items: flex-start; gap: 10px; }
}