/**
 * Ford VDP Override Styles
 * This file contains Ford-specific style fixes for the Birchwood VDP
 * to match the Toyota VDP layout.
 * 
 * Include this file AFTER birchwood-vdp.css
 */

/* ==================== SPECS GRID FIXES ==================== */

/* Keep empty spec cells visible to maintain grid structure */
.bvdp-specs-grid .bvdp-spec-cell {
    position: relative;
}

/* Empty cells stay visible but with no content - maintains borders */
.bvdp-specs-grid .bvdp-spec-cell:has(div[style*="font-weight:700"]:empty),
.bvdp-specs-grid .bvdp-spec-cell:has(div[style*="font-weight:700"]:only-child:empty) {
    /* Keep visible - borders maintained */
}

/* Cells marked as empty via JavaScript still stay visible */
.bvdp-specs-grid .bvdp-spec-cell.is-empty {
    /* Keep visible - borders maintained */
}

/* Ensure specs grid fills available space properly */
.bvdp-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #e0e0e0;
    gap: 1px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    margin-bottom: 15px;
    width: 100%;
    overflow: hidden;
}

/* Spec cell styling - ensure consistent appearance */
.bvdp-spec-cell {
    padding: 15px 12px;
    font-size: 13px;
    color: #333;
    background: #fff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 70px;
    line-height: 1.4;
}

/* Value styling */
.bvdp-spec-cell > div:first-child,
.bvdp-spec-cell .bvdp-spec-value {
    font-weight: 700 !important;
    margin-bottom: 5px;
    font-size: 14px;
    color: #000;
    word-break: break-word;
    max-width: 100%;
}

/* Label styling */
.bvdp-spec-cell > div:last-child,
.bvdp-spec-cell .bvdp-spec-label {
    font-size: 12px;
    color: #666;
    text-transform: capitalize;
}


/* ==================== ACTION ROW / BUTTONS LAYOUT ==================== */

/* Main action row container - horizontal layout like Toyota */
.bvdp-action-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

/* Inquiry dropdown - auto width, not flex: 1 */
.bvdp-inquiry-dropdown {
    flex: 0 0 auto;
}

/* Primary button - compact, not full width */
.bvdp-btn-primary {
    background: #003478;
    border: 1px solid #003478;
    color: #fff !important;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s, border-color 0.2s;
    cursor: pointer;
    white-space: nowrap;
}

.bvdp-btn-primary:hover,
.bvdp-btn-primary:focus {
    background: #00285d;
    border-color: #00285d;
    color: #fff !important;
}

/* Outline button - Customize Payments */
.bvdp-btn-outline {
    background: transparent;
    border: 2px solid #003478;
    color: #003478;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    flex: 0 0 auto;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    white-space: nowrap;
}

.bvdp-btn-outline:hover,
.bvdp-btn-outline:focus {
    background: #003478;
    color: #fff;
    text-decoration: none;
}

/* Chevron in dropdown button */
.bvdp-inquiry-dropdown .bvdp-chevron {
    font-size: 10px;
    margin-left: 8px;
    transition: transform 0.2s;
}

.bvdp-inquiry-dropdown.open .bvdp-chevron {
    transform: rotate(180deg);
}

/* Dropdown toggle padding fix */
.bvdp-inquiry-dropdown .dropdown-toggle {
    padding: 12px 24px !important;
}

.bvdp-inquiry-dropdown .dropdown-toggle:hover,
.bvdp-inquiry-dropdown .dropdown-toggle:focus {
    padding: 12px 24px !important;
}

/* Dropdown menu styling */
.bvdp-inquiry-menu {
    min-width: 250px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: none;
    padding: 8px 0;
    margin-top: 8px;
}

.bvdp-inquiry-menu > li > a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s;
}

.bvdp-inquiry-menu > li > a:hover {
    background: #f8f8f8;
    color: #003478;
}

.bvdp-inquiry-menu > li > a .fa {
    width: 20px;
    margin-right: 10px;
    color: #003478;
}


/* ==================== TRADE-IN LINK POSITIONING ==================== */

/* Ensure trade-in link is below specs grid, not floating right */
.bvdp-tradein-link {
    display: block;
    margin-top: 20px;
    text-align: left;
}

.bvdp-tradein-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #003478;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.bvdp-tradein-link a:hover {
    color: #000;
    text-decoration: none;
}

.bvdp-tradein-link a .fa {
    font-size: 12px;
    transform: rotate(-45deg);
}


/* ==================== PRICE SECTION ==================== */

/* Price display */
.bvdp-price-section {
    margin-bottom: 20px;
}

.bvdp-price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 5px;
}

.bvdp-price-value {
    font-size: 32px;
    font-weight: 700;
    color: #003478;
}

/* Biweekly link styling */
.bvdp-biweekly-link {
    font-size: 16px;
    font-weight: 600;
    color: #003478;
    text-decoration: none;
}

.bvdp-biweekly-link:hover {
    color: #000;
    text-decoration: none;
}

/* Price note */
.bvdp-price-note {
    font-size: 11px;
    color: #777;
    margin-top: 3px;
}


/* ==================== VEHICLE INFO SECTION ==================== */

.bvdp-vehicle-info {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: none;
}

/* Badge styling */
.bvdp-badge {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

/* Title styling */
.bvdp-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    margin: 0 0 10px 0;
}

/* Status badge */
.bvdp-status-row {
    margin-bottom: 15px;
    font-size: 14px;
    color: #28a745;
    font-weight: 600;
}


/* ==================== HERO SECTION LAYOUT ==================== */

.bvdp-hero {
    padding: 20px 0 40px;
    background: #fff;
}

.bvdp-hero .row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

/* Gallery column */
.bvdp-hero .col-md-6:first-child {
    padding-right: 20px;
}

/* Info column */
.bvdp-hero .col-md-6:last-child {
    padding-left: 20px;
}


/* ==================== IMAGE GALLERY ==================== */

.bvdp-gallery {
    margin-bottom: 30px;
}

.bvdp-main-slider {
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}

.bvdp-main-slider .slick-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Slider navigation */
.bvdp-main-slider .slick-prev,
.bvdp-main-slider .slick-next {
    background: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: 10;
}

.bvdp-main-slider .slick-prev {
    left: 15px;
}

.bvdp-main-slider .slick-next {
    right: 15px;
}

.bvdp-main-slider .slick-prev:before,
.bvdp-main-slider .slick-next:before {
    color: #000;
    font-size: 24px;
}

/* Thumbnail slider */
.bvdp-thumb-slider {
    margin: 0 -5px;
}

.bvdp-thumb-slider .slick-slide {
    padding: 0 5px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.bvdp-thumb-slider .slick-slide.slick-current {
    opacity: 1;
}

.bvdp-thumb-slider .slick-slide:hover {
    opacity: 1;
}

.bvdp-thumb-slider img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 4px;
    height: auto;
}

/* View All Images button */
.bvdp-gallery-actions {
    margin-top: 15px;
    text-align: center;
}

#birchwoodVDP .bvdp-view-all-btn,
.bvdp-view-all-btn {
    display: inline-block !important;
    background: #fff !important;
    border: 2px solid #000 !important;
    color: #000 !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    transition: all 0.2s !important;
    cursor: pointer !important;
    text-decoration: none !important;
}

#birchwoodVDP .bvdp-view-all-btn:hover,
.bvdp-view-all-btn:hover {
    background: #000 !important;
    color: #fff !important;
    text-decoration: none !important;
}


/* ==================== WHY YOU'LL LOVE IT SECTION ==================== */

.bvdp-love-it-section {
    background: #eff4f4;
    padding: 60px 0;
    margin-bottom: 30px;
    position: relative;
}

.bvdp-love-it-section::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 45px solid transparent;
    border-right: 45px solid transparent;
    border-top: 25px solid #eff4f4;
}

.bvdp-love-content .row {
    display: flex;
    flex-wrap: wrap;
}

/* Desktop: Love It section columns side by side */
#birchwoodVDP .bvdp-love-it-section .col-md-6,
#birchwoodVDP .bvdp-love-it-section .col-lg-6,
.bvdp-love-it-section .col-md-6,
.bvdp-love-it-section .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    float: none !important;
}

.bvdp-love-left-col {
    padding-right: 60px;
}

.bvdp-love-right-col {
    padding-left: 80px;
    border-left: 2px solid #d7dddd;
}

/* Why You'll Love It - Main title */
#birchwoodVDP .bvdp-love-it-section .bvdp-section-title,
.bvdp-love-it-section .bvdp-section-title {
    font-size: 28px !important;
    font-weight: 400 !important;
    margin-bottom: 35px !important;
    color: #333 !important;
    text-align: center !important;
    font-style: italic !important;
}

/* Section subtitles - "Receive the following..." and "Notable features" */
#birchwoodVDP .bvdp-love-subtitle,
.bvdp-love-subtitle {
    font-size: 22px !important;
    font-weight: 700 !important;
    margin-bottom: 25px !important;
    color: #000 !important;
    line-height: 1.4 !important;
}

/* Bullet list in left column */
#birchwoodVDP .bvdp-love-left-col ul,
.bvdp-love-left-col ul {
    list-style: disc !important;
    padding-left: 20px !important;
    margin: 0 0 25px 0 !important;
}

#birchwoodVDP .bvdp-love-left-col ul li,
.bvdp-love-left-col ul li {
    font-size: 15px !important;
    color: #333 !important;
    line-height: 1.6 !important;
    margin-bottom: 8px !important;
    padding: 0 !important;
}

/* Dealer name paragraph */
#birchwoodVDP .bvdp-love-left-col p,
.bvdp-love-left-col p {
    font-size: 15px !important;
    color: #333 !important;
    line-height: 1.6 !important;
    margin-bottom: 15px !important;
}

#birchwoodVDP .bvdp-love-left-col p strong,
.bvdp-love-left-col p strong {
    font-weight: 700 !important;
    color: #000 !important;
}

/* Features list with checkmarks */
.bvdp-love-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bvdp-love-features-list li {
    display: flex;
    align-items: center;
    margin-top: 15px;
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}

.bvdp-love-features-list li:first-child {
    margin-top: 0;
}

.bvdp-love-features-list li .fa {
    margin-right: 15px;
    font-size: 18px;
    color: #003478;
    flex-shrink: 0;
}


/* ==================== FEATURES SECTION ==================== */

.bvdp-features-section {
    padding: 50px 0;
    background-color: #fff;
}

/* Desktop: Features section columns side by side */
#birchwoodVDP .bvdp-features-section .row {
    display: flex !important;
    flex-wrap: wrap !important;
}

#birchwoodVDP .bvdp-features-section .col-md-6,
#birchwoodVDP .bvdp-features-section .col-lg-6,
.bvdp-features-section .col-md-6,
.bvdp-features-section .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    float: none !important;
}

/* Section titles - "About This Vehicle" and "Features & Specifications" */
#birchwoodVDP .bvdp-section-title,
.bvdp-section-title {
    font-size: 26px !important;
    font-weight: 700 !important;
    margin-bottom: 25px !important;
    color: #000 !important;
    text-align: center !important;
}

/* Description text */
#birchwoodVDP .bvdp-description-content,
.bvdp-description-content {
    max-height: 150px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease;
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: #333 !important;
}

.bvdp-description-content.expanded {
    max-height: none;
}

.bvdp-read-more {
    display: inline-block;
    margin-top: 15px;
    font-weight: 700;
    color: #003478;
    cursor: pointer;
    text-decoration: none;
    font-size: 15px;
}

.bvdp-read-more:hover {
    color: #000;
}

/* Accordion - Features & Specifications */
#birchwoodVDP .bvdp-accordion .panel-default,
.bvdp-accordion .panel-default {
    border: none !important;
    box-shadow: none !important;
    border-bottom: 1px solid #ddd !important;
    border-radius: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    background: transparent !important;
}

#birchwoodVDP .bvdp-accordion .panel-heading,
.bvdp-accordion .panel-heading {
    background-color: transparent !important;
    border: none !important;
    padding: 20px 0 !important;
}

#birchwoodVDP .bvdp-accordion .panel-title a,
.bvdp-accordion .panel-title a {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    font-weight: 600 !important;
    color: #000 !important;
    text-decoration: none !important;
    font-size: 16px !important;
    background: transparent !important;
}

#birchwoodVDP .bvdp-accordion .panel-title a:hover,
#birchwoodVDP .bvdp-accordion .panel-title a:focus,
.bvdp-accordion .panel-title a:hover,
.bvdp-accordion .panel-title a:focus {
    text-decoration: none !important;
    color: #333 !important;
    background: transparent !important;
}

/* Chevron/arrow icon */
#birchwoodVDP .bvdp-accordion .panel-title a::after,
.bvdp-accordion .panel-title a .fa,
.bvdp-accordion .panel-title a .chevron {
    color: #999 !important;
    font-size: 14px !important;
}

#birchwoodVDP .bvdp-accordion .panel-body,
.bvdp-accordion .panel-body {
    border-top: none !important;
    padding: 0 0 25px 0 !important;
    background: transparent !important;
}

.bvdp-feature-list {
    padding-left: 20px;
    margin-bottom: 0;
}

.bvdp-feature-list li {
    padding: 3px 0;
    color: #555;
    font-size: 14px;
    list-style-type: disc;
}

/* Chevron rotation */
.bvdp-accordion .panel-title a .fa-caret-down {
    transition: transform 0.3s ease;
}

.bvdp-accordion .panel-title a.collapsed .fa-caret-down {
    transform: rotate(-90deg);
}


/* ==================== SIMILAR VEHICLES SECTION ==================== */

.bvdp-similar-section {
    padding: 50px 0;
    background: #f8f8f8;
}

.bvdp-similar-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    text-align: center;
}

#birchwoodVDP .bvdp-similar-header h2,
.bvdp-similar-header h2 {
    font-size: 28px !important;
    font-weight: 700 !important;
    margin: 0 0 15px 0 !important;
    color: #000 !important;
    text-align: center !important;
}

.bvdp-similar-search-link {
    color: #003478;
    font-weight: 600;
    text-decoration: none;
}

.bvdp-similar-search-link:hover {
    text-decoration: underline;
}

/* Carousel */
.bvdp-similar-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

.bvdp-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.bvdp-carousel-btn:hover {
    background: #003478;
    color: #fff;
    border-color: #003478;
}

.bvdp-carousel-prev {
    left: 0;
}

.bvdp-carousel-next {
    right: 0;
}

/* Similar vehicle card */
.bvdp-similar-card {
    padding: 10px;
}

.bvdp-similar-card a {
    display: block;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s;
}

.bvdp-similar-card a:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.bvdp-similar-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.bvdp-similar-card-info {
    padding: 15px;
}

.bvdp-similar-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.bvdp-similar-card-trim {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.bvdp-similar-card-price {
    font-size: 16px;
    font-weight: 700;
    color: #003478;
}


/* ==================== MOBILE RESPONSIVE ==================== */

/* Force Ford grid to use flexbox for proper stacking */
#birchwoodVDP .bvdp-hero .row,
#birchwoodVDP .bvdp-hero > .container > .row {
    display: flex !important;
    flex-wrap: wrap !important;
}

#birchwoodVDP .bvdp-hero .col-md-6,
#birchwoodVDP .bvdp-hero .col-lg-6,
#birchwoodVDP .bvdp-hero .col-sm-6 {
    float: none !important;
    flex: 0 0 50%;
    max-width: 50%;
}

@media (max-width: 991px) {
    /* Force columns to stack on tablet/mobile */
    #birchwoodVDP .bvdp-hero .col-md-6,
    #birchwoodVDP .bvdp-hero .col-lg-6,
    #birchwoodVDP .bvdp-hero .col-sm-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    /* Gallery column first, info second on mobile */
    #birchwoodVDP .bvdp-hero .row {
        flex-direction: column !important;
    }

    #birchwoodVDP .bvdp-hero .col-md-6:first-child {
        order: 1;
        margin-bottom: 20px;
    }

    #birchwoodVDP .bvdp-hero .col-md-6:last-child {
        order: 2;
    }

    /* Love It Section */
    .bvdp-love-left-col {
        padding-right: 15px;
        margin-bottom: 40px;
        border-bottom: 2px solid #d7dddd;
        padding-bottom: 40px;
    }

    .bvdp-love-right-col {
        padding-left: 15px;
        border-left: none;
    }

    .bvdp-love-subtitle {
        font-size: 20px;
    }

    /* Love It section columns */
    #birchwoodVDP .bvdp-love-it-section .col-md-6,
    #birchwoodVDP .bvdp-love-it-section .col-lg-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}

@media (max-width: 767px) {
    /* Force all columns to full width on mobile */
    #birchwoodVDP .col-md-6,
    #birchwoodVDP .col-lg-6,
    #birchwoodVDP .col-sm-6,
    #birchwoodVDP .col-md-4,
    #birchwoodVDP .col-lg-4,
    #birchwoodVDP .col-md-3,
    #birchwoodVDP .col-lg-3 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        float: none !important;
    }

    /* Ensure rows are flexbox */
    #birchwoodVDP .row {
        display: flex !important;
        flex-wrap: wrap !important;
        flex-direction: column !important;
    }

    /* Specs grid - 2 columns on mobile */
    .bvdp-specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Hero section */
    .bvdp-hero {
        padding: 15px 0 30px;
    }

    .bvdp-hero .col-md-6:first-child,
    .bvdp-hero .col-md-6:last-child {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Gallery - maintain 4:3 aspect ratio */
    .bvdp-main-slider .slick-slide img {
        aspect-ratio: 4 / 3;
        height: auto;
    }

    .bvdp-thumb-slider img {
        aspect-ratio: 4 / 3;
        height: auto;
    }

    /* Title */
    .bvdp-title {
        font-size: 22px;
    }

    /* Price */
    .bvdp-price-value {
        font-size: 28px;
    }

    /* Action row - stack buttons on mobile */
    .bvdp-action-row {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .bvdp-action-row .bvdp-btn-primary,
    .bvdp-action-row .bvdp-btn-outline,
    .bvdp-action-row .bvdp-inquiry-dropdown {
        width: 100% !important;
    }

    .bvdp-action-row .bvdp-inquiry-dropdown .dropdown-toggle {
        width: 100% !important;
        justify-content: center !important;
    }

    /* Love It Section */
    .bvdp-love-it-section {
        padding: 40px 0;
    }

    .bvdp-section-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    /* Similar vehicles */
    .bvdp-similar-carousel-wrapper {
        padding: 0 30px;
    }

    .bvdp-similar-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    /* Single column specs on very small screens */
    .bvdp-specs-grid {
        grid-template-columns: 1fr;
    }

    .bvdp-spec-cell {
        padding: 12px;
        min-height: 50px;
    }

    /* Title */
    .bvdp-title {
        font-size: 20px;
    }

    /* Price */
    .bvdp-price-value {
        font-size: 24px;
    }
}


/* ==================== STICKY HEADER ==================== */

.bvdp-sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #000;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.bvdp-sticky-header.is-visible {
    transform: translateY(0);
}

.bvdp-sticky-content {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 0;
    padding-left: 15px;
    gap: 15px;
    min-height: 60px;
}

/* Contact button */
.bvdp-contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #003478;
    border: none;
    color: #fff;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.bvdp-contact-btn:hover,
.bvdp-contact-btn:focus,
.bvdp-contact-btn.is-open {
    background: #00285d;
}

@media (max-width: 767px) {
    .bvdp-sticky-vehicle-info,
    .bvdp-sticky-pricing {
        display: none !important;
    }

    .bvdp-sticky-header {
        background: #003478 !important;
        border: none !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2) !important;
    }

    .bvdp-sticky-content {
        justify-content: center;
        padding: 0 !important;
        border: none !important;
    }

    .bvdp-contact-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 0.5px;
        border: none !important;
        background: #003478 !important;
    }

    .bvdp-contact-btn:hover,
    .bvdp-contact-btn:focus {
        background: #003478 !important;
        border: none !important;
    }

    .bvdp-contact-btn-text {
        display: inline;
    }
}
