
/*** 
====================================================================
Global Settings
====================================================================
***/
@font-face {
    font-family: "Instrument Sans";
    src: url("/assets/fonts/InstrumentSans-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Instrument Sans";
    src: url("/assets/fonts/InstrumentSans-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Instrument Sans";
    src: url("/assets/fonts/InstrumentSans-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Instrument Sans";
    src: url("/assets/fonts/InstrumentSans-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
:root {
    --white-color: #ffffff;
    --black: #000000;
    --theme-color-1: #013412;
    --theme-color-2: #76c11a;
    --grey-color: #6a6a6a;
    --global-color: #f8fbf4;
    --border-radius-xs: 8px;
    --border-radius-sm: 15px;
    --border-radius-md: 20px;
    --font-family-body: 'Instrument Sans', sans-serif;
    --box-shadow: rgba(0, 0, 0, .15) 0 5px 15px;
    --border-light-color:#0000001f;
    --gorent-white-rgb: 255, 255, 255;
}

body{
    color: var(--black);
    line-height: 1.5;
    font-family: "Instrument Sans";
    font-size: 15px;
}
.text-primary{
    color: var(--theme-color-1) !important;
}
.text-secondary{
    color: var(--theme-color-2) !important;
}
.border-radius-xs{
    border-radius: var(--border-radius-xs);
}
.border-radius-sm{
    border-radius: var(--border-radius-sm);
}
.border-radius-md{
    border-radius: var(--border-radius-md);
}
.bg-primary{
    background: var(--theme-color-1) !important;
}
.bg-light {
    background: var(--global-color) !important;
}
.bcr-wrapper{
    position: relative;
    width: 100%;
    overflow: hidden;
}
.bg-overlay:after{
    position: absolute;
    content: "";
    inset: 0;
    background: var(--black);
    opacity: .3;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}
.bg-overlay{
    position: relative;
    z-index: 1;
}
.bcr-intro-inner-banner-sec.bg-overlay:after{
    content: none;
    background: var(--white-color);
    opacity: .8;
    z-index: 1;
}
.bcr-intro-location-sec.bg-overlay:after{
    content: none;
    background: var(--white-color);
    opacity: .6;
}
a{
    text-decoration: none;
    color: #5d9912;
}

h1,.h1,h2,.h2,h3,h4{
    color: var(--theme-color-1);
    font-weight: 700;
    line-height: 1.15;
    font-family: "Instrument Sans";
}
.h1, h1 {
    font-size: clamp(27px, 3vw, 48px);
}
.h2,
h2 {
    font-size: clamp(24px, 2.2vw, 30px);
}
h3{
    font-size: clamp(17px, 2.2vw, 18px);
}
h1 span,
h2 span,
h3 span{
    color: var(--theme-color-2);
}
.form-select,
.form-control{
    height: 48px;
    font-size: 14px;
    border-color: transparent;
    background-color: var(--white-color);
    border-radius: var(--border-radius-xs);
    border: 1px solid var(--border-light-color);
    border-radius: var(--border-radius-sm);
    background-size: 10px;
}
.form-select{
    background-position: right 0.2rem center;
    padding: 0 22px 0 11px;
}
.form-select:focus,
.form-control:focus{
    border-color: var();
    box-shadow: none;
}
input.invalid {
    background-color: #ffdddd
}
textarea.form-control{
    height: 110px !important;
    resize: none;
    padding: 10px 15px;
}

.spacing-padding {
    padding: 70px 0;
}
.spacing-margin {
    margin-bottom: 70px;
}
.bcr-sub-title {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--theme-color-2);
    line-height: 24px;
    position: relative;
}
.bcr-sub-title span~span {
    margin-left: -2px
}
.bcr-sub-title .subtitle-shape3,
.bcr-sub-title .subtitle-shape2,
.bcr-sub-title .subtitle-shape1 {
    display: inline-block;
    background: var(--theme-color-2);
    width: 16px;
    height: 13px;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%)
}
.bcr-sub-title .subtitle-shape2 {
    width: 10px;
    height: 13px
}
.bcr-sub-title .subtitle-shape3 {
    width: 10px;
    height: 13px;
    background: var(--theme-color-1);
}

.btn {
    border-radius: var(--border-radius-sm);
    position: relative;
    transition: all 0.3s ease-in-out;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    font-weight: 600;
    white-space: nowrap;
    padding: 5px 16px;
    letter-spacing: .5px;
    line-height: inherit;
}
.btn-sm{
    font-size: 12px;
    padding: 4px 8px;
    min-height: 32px;
    letter-spacing: 0;
    border-radius: var(--border-radius-xs);
    position: relative;
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid;
    font-weight: 600;
}
.btn-outline-primary:hover,
.btn-primary {
    background: var(--theme-color-1);
    border-color: var(--theme-color-1);
    color: var(--white-color);
}
.btn-outline-primary{
    border-color: var(--theme-color-1);
    color: var(--theme-color-1);
    background: transparent;
}
.btn-secondary {
    background: var(--theme-color-2);
    border-color: var(--theme-color-2);
    color: var(--white-color);
}
.btn-secondary:hover{
    background: #5d9814;
    border-color: #5d9814;
}
.btn-primary:active,
.btn-primary:hover{
    background: var(--theme-color-2) !important;
    border-color: var(--theme-color-2) !important;
}
.btn-light{
    background:var(--global-color);
    color:var(--theme-color-1);
    border-color: var(--global-color);
}
.btn-light:hover {
    background: #f4fcea;
    border-color: #f4fcea;
}
.book-btn{
    display: inline-flex;
    align-items: center;
    gap: 14px;
    height: 45px;
    padding: 3px;
    border-radius: 10px;
    background: linear-gradient(90deg,var(--theme-color-1) 0%,var(--theme-color-2) 100%);
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    overflow: hidden;
    transition: .3s;
}
.book-btn:hover{
    transform: translateY(-2px);
}
.book-btn-icon{
    width: 39px;
    height: 39px;
    border-radius: 8px;
    background:var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color-2);
    font-size: 16px;
    flex-shrink: 0;
}
.book-btn-text{
    white-space: nowrap;
}
.book-btn-arrow{
    width: 39px;
    height: 39px;
    border-radius: 8px;
    background: rgba(255,255,255,.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 16px;
    flex-shrink: 0;
}
.bcr-section-caption {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    align-items: flex-start;
}
.bcr-section-caption p{
    margin-bottom: 0;
}
.checlist-items ul{
    list-style-type: none;
    padding: 0;
    font-weight: 500;
    margin: 0;
    display: grid;
    gap: 10px;
}
.checlist-items.grid-2 ul{
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.checlist-items ul li{
    position: relative;
    padding-left: 30px;
}

.checlist-items ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill='%23ffffff' d='M21.634 47.186c-1.893-2.126-3.422-4.206-4.899-6.22a35.467 35.467 0 0 1-3.494-5.845c-.61-1.248-.88-2.51.441-3.323 3.787-2.327 4.563-.105 6.62 2.473 1.22 1.528 3.02 4.047 4.147 5.639 1.077 1.52 2.39-1.223 2.913-1.998 1.863-2.75 6.703-9.486 8.704-11.975 1.899-2.364 8.028-8.985 9.17-10.038.973-.897 3.027-2.863 4.408-1.778 1.45 1.14 2.16 3.307 1.14 4.716-1.777 2.453-4.567 4.786-6.498 7.122-3.908 4.728-7.608 9.824-11.16 14.899-1.207 1.724-2.901 4.612-3.953 6.482-1.968 3.499-3.696 4.164-7.54-.154z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 16px;
    background-color: var(--theme-color-2);
    background-position: center;
    border-radius: 50%;
    box-shadow: 0 6px 14px -4px rgba(118,193,26,0.5);
}
.ozp-main-pricing-col:before,
.ozp-criteria-img-wrapper .ozp-criteria-col:before{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgb(13 110 253 / 0%) 0%, rgb(13 110 253 / 6%) 55%, rgba(13, 110, 253, 0) 100%);
    z-index: -1;
    pointer-events: none;
}
.ozp-main-pricing-col:after,
.ozp-criteria-img-wrapper .ozp-criteria-col:after{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 212px;
    height: 212px;
    border-radius: 50%;
    border: 1px solid #d3ecff;
    z-index: -1;
    pointer-events: none;
}
.bcr-gradient-icon{
    background: var(--global-color);
    border-radius: 6px;
    width: 50px;
    height: 50px;
    min-width: 50px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.bcr-gradient-icon:after{
    position: absolute;
    content: '';
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background: linear-gradient(90deg,var(--theme-color-2) 0%, var(--theme-color-1) 100%);
    z-index: -1;
    border-radius: var(--border-radius-xs);
    opacity: .4;
}
.bcr-gradient-icon:before{
    position: absolute;
    content: '';
    left: -0;
    width: 100%;
    height: 100%;
    background: var(--global-color);
    z-index: 1;
    border-radius: 6px;
}
.bcr-gradient-icon svg,
.bcr-gradient-icon img{
    position:relative;
    z-index:9;
}
/* Header */


#pageHeader {
    position: relative;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    transition: background 0.2s ease, box-shadow .2s ease, padding .2s ease;
    background: var(--white-color);
    box-shadow: rgba(0, 0, 0, 0.21) 0px 3px 7px 0px;
}
.bcr-header-top-bar{
    background: var(--theme-color-1);
    color: var(--white-color);
    padding: 8px 0;
    line-height: 24px;
}
.bcr-header-bar-list{
    display: flex;
    font-size: 14px;
    gap: 6px 20px;
    flex-wrap: wrap;
}
.bcr-header-bar-list a,
.bcr-header-bar-list li{
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.bcr-header-bar-list li:first-child{
    flex: 1 1 auto;
}
.bcr-header-bar-list .ico{
    display: flex;
    color: var(--theme-color-2);
}
.bcr-header-bar-list a{
    color: var(--white-color);
}
.bcr-main-menu-wrapper{
    gap: 40px;
    position: relative;
}
.bcr-page-nav .bcr-navbar {
    display: flex;
    gap: 30px;
    text-transform: capitalize;
    font-weight: 600;
    letter-spacing: .75px;
}
.bcr-page-nav .bcr-navbar .nav-link{
    padding: 0;
    color: var(--black);
    position: relative;
    line-height: 85px;
    font-size: 16px;
    transition: color .25s ease-in-out;
}
.bcr-page-nav .bcr-navbar .nav-link.active {
    color: #5d9814;
}
.bcr-page-nav .bcr-navbar li{
    /* position: relative; */
}
.bcr-page-nav .bcr-navbar .nav-link:hover{
    color: var(--theme-color-1);
}
.bcr-btn-wrapp{
    display: flex;
    gap: 12px;
    margin-top: 15px;
}
/* Mega menu */
.brc-submenu {
    position: absolute;
    z-index: 999;
    left: -0;
    opacity: 0;
    top: 100%;
    visibility: hidden;
    min-width: 190px;
    background: var(--white-color);
    box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
    transform: scale(1, 0);
    transform-origin: 0 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    max-height: 230px;
    overflow: auto;
}
.bcr-page-nav .bcr-navbar .nav-item:hover .brc-submenu {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
.brc-submenu li a {
    color: var(--black);
    font-size: 14px;
    padding: 8px 10px;
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    transition: all 220ms linear 0ms;
    line-height: 20px;
    font-weight: 500;
}
.brc-submenu li:last-child a{
    border-bottom: none;
}
.brc-submenu li a:hover {
    color: var(--theme-color-2);
    padding-left: 15px;
}
.brc-submenu li a:after {
    content: '';
    width: 3px;
    height: 100%;
    background-color: var(--theme-color-2);
    position: absolute;
    top: 50%;
    left: -3px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    opacity: 0;
    -webkit-transition: all 220ms linear 0ms;
    transition: all 220ms linear 0ms;
}
.brc-submenu li a:hover:after {
    left: 0px;
    opacity: 1;
}









.brc-nav-item.has-mega > .nav-link::after {
content: "";
display: inline-block;
width: 8px;
height: 8px;
border-right: 2px solid currentColor;
border-bottom: 2px solid currentColor;
transform: rotate(45deg);
margin-left: 8px;
margin-bottom: 2px;
transition: transform .25s ease;
}

.brc-nav-item.has-mega.menu-open > .nav-link::after {
transform: rotate(-135deg);
margin-bottom: -2px;
}

 /* ---------- Mega menu panel ---------- */
.brc-mega {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--white-color);
    border-top: 1px solid var(--border-light-color);
    box-shadow: var(--box-shadow);
    border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
    z-index: 1050;
    padding: 5px;
    max-width: 1000px;
    margin: auto;
}

.brc-nav-item.has-mega.menu-open .brc-mega {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
 .brc-mega-inner {
  display: flex;
  min-height: 220px;
  }

  /* ---------- Left tab list ---------- */
  .brc-mega-tabs {
    width: 260px;
    flex-shrink: 0;
    background: var(--global-color);
    border-radius: 0 0 0 var(--border-radius-md);
    padding: 1.25rem 0.75rem;
  }

  .brc-mega-tab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border: none;
    background: transparent;
    text-align: left;
    padding: 0.85rem 1rem;
    border-radius: var(--border-radius-xs);
    color: var(--theme-color-1);
    font-weight: 600;
    font-size: 0.98rem;
    margin-bottom: 0.35rem;
    transition: background .18s ease, color .18s ease;
  }

  .brc-mega-tab .tab-arrow {
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    opacity: 0.55;
    transition: transform .18s ease;
  }

  .brc-mega-tab:hover {
    background: rgba(118, 193, 26, 0.12);
  }

  .brc-mega-tab.active {
    background: var(--theme-color-1);
    color: var(--white-color);
  }

  .brc-mega-tab.active .tab-arrow {
    opacity: 1;
    transform: rotate(-45deg) translateX(2px);
  }

  /* ---------- Right content ---------- */
  .brc-mega-content {
    flex-grow: 1;
    padding: 1.5rem 2rem;
  }

  .brc-mega-panel { display: none; }
  .brc-mega-panel.active {
    display: block;
    animation: brcFadeIn .25s ease;
  }

  @keyframes brcFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .brc-panel-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--grey-color);
    font-weight: 600;
    margin-bottom: 1.1rem;
  }

  .brc-mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.4rem 1.5rem;
  }

  .brc-mega-grid li a {
    display: inline-flex;
    align-items: baseline;
    padding-left: 24px;
    color: var(--black);
    font-weight: 500;
    font-size: 14px;
    transition: color .15s ease-in-out;
    position: relative;
  }
  .brc-mega-grid li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 18px;
    height: 18px;
    background-color: var(--theme-color-2);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M21.634 47.186c-1.893-2.126-3.422-4.206-4.899-6.22a35.467 35.467 0 0 1-3.494-5.845c-.61-1.248-.88-2.51.441-3.323 3.787-2.327 4.563-.105 6.62 2.473 1.22 1.528 3.02 4.047 4.147 5.639 1.077 1.52 2.39-1.223 2.913-1.998 1.863-2.75 6.703-9.486 8.704-11.975 1.899-2.364 8.028-8.985 9.17-10.038.973-.897 3.027-2.863 4.408-1.778 1.45 1.14 2.16 3.307 1.14 4.716-1.777 2.453-4.567 4.786-6.498 7.122-3.908 4.728-7.608 9.824-11.16 14.899-1.207 1.724-2.901 4.612-3.953 6.482-1.968 3.499-3.696 4.164-7.54-.154z'/%3E%3C/svg%3E")
        no-repeat center / contain;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M21.634 47.186c-1.893-2.126-3.422-4.206-4.899-6.22a35.467 35.467 0 0 1-3.494-5.845c-.61-1.248-.88-2.51.441-3.323 3.787-2.327 4.563-.105 6.62 2.473 1.22 1.528 3.02 4.047 4.147 5.639 1.077 1.52 2.39-1.223 2.913-1.998 1.863-2.75 6.703-9.486 8.704-11.975 1.899-2.364 8.028-8.985 9.17-10.038.973-.897 3.027-2.863 4.408-1.778 1.45 1.14 2.16 3.307 1.14 4.716-1.777 2.453-4.567 4.786-6.498 7.122-3.908 4.728-7.608 9.824-11.16 14.899-1.207 1.724-2.901 4.612-3.953 6.482-1.968 3.499-3.696 4.164-7.54-.154z'/%3E%3C/svg%3E")
        no-repeat center / contain;
}
  .brc-mega-grid li a:hover {
    color: var(--theme-color-2);
  }














/* Mobile Menu */
.bcr-offcanvas-close,
.bcr-offcanvas-opener{
    border: none;
    background: transparent;
    color: var(--body-color);
}
.bcr-mobile-page-nav .offcanvas {
    background: var(--global-color);
    max-width: 330px;
}
.bcr-mobile-page-nav li a {
    padding: 10px 22px;
    color: var(--black);
    display: block;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,.07);
    font-size: 16px;
    font-weight: 500;
}
.bcr-mobile-page-nav li a.bcr-accordion-button{
    position: absolute;
    top: 0px;
    right: 0;
    padding: 13px 12px;
    display: flex;
    align-items: center;
    border: none;
    background: var(--theme-color-1);
    color: var(--white-color) !important;
}
.bcr-mobile-page-nav li a:hover {
    color:var(--theme-color-2);
}
.bcr-mobile-page-nav .bcr-mobile-submenu-list{
    margin: 13px auto;
    width: 90%;
    line-height: 20px;
    background: rgba(255,255,255,.035);
}
.bcr-mobile-page-nav .bcr-mobile-submenu-list a{
    font-size:14px;
    padding: 8px 15px;
}
.bcr-mobile-page-nav li:last-child a{
    border:none;

}




/**** Section 7 ****/
.bcr-intro-banner-sec {
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
    background-image: var(--desktop-bg);
}
.bcr-intro-banner-sec.bg-overlay:after{
    background: rgba(1, 52, 18, 0.08);
    background: linear-gradient(90deg,rgba(1, 52, 18, .95) 20%, rgba(1, 52, 18, 0) 65%);
    opacity: 1;
}
.bcr-intro-banner-caption{
    gap: 20px;
    max-width: 600px;
}
.bcr-intro-banner-caption p{
    margin-bottom: 0;
    font-weight: 500;
    font-size: 16px;
}
.bcr-intro-banner-caption p a{
    color:var(--theme-color-2);
}
.bcr-intro-list-wrapp{
    gap: 15px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.bcr-intro-list-wrapp .bcr-intro-list{
    gap: 10px;
    text-align: center;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(6px);
    border-radius: 14px;
    padding: 10px;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.4;
}
.bcr-intro-list-wrapp .bcr-intro-list img {
    filter: brightness(0) invert(1);
}
/****  Section 4  ****/
.bcr-trust-bar-wrapp{
    gap: 15px;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius-md);
    overflow: hidden;
}
.bcr-intro-trust-bar{
    line-height: 18px;
    font-size: 13px;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
}
.bcr-intro-trust-bar .bcr-gradient-icon{
    width: 45px;
    height: 45px;
    min-width: 45px;
}
.bcr-intro-trust-bar .bcr-intro-col{
    display: flex;
    gap: 12px;
    padding: 12px;
    position: relative;
    align-items: self-start;
    border: 1px solid #76c11a3d;
    border-radius: var(--border-radius-sm);
    background: var(--global-color);
}
.bcr-intro-trust-bar .bcr-intro-col h3{
    font-size: 14px;
}
.bcr-intro-trust-bar .bcr-intro-col p{
    margin-bottom:0;
}
.bcr-intro-trust-bar .bcr-text-wrapps{
    gap: 6px;
}

/****  Section 3  ****/
.bcr-services-list{
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 15px;
}
.bcr-services-list li p{
    margin-bottom: 0;
    flex: 1;
}
.bcr-services-list li a{
    color: var(--black);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 15px;
    position: relative;
    justify-content: center;
    background: var(--white-color);
    border-radius: var(--border-radius-xs);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    z-index: 1;
    height: 100%;
}
.bcr-services-list li a:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 4px;
    background: var(--theme-color-2);
    bottom: 0;
    left: 0;
    right: 0;
}

/****  Section 8  ****/
.bcr-coreValues-description{
    flex-direction: column;
    gap: 15px;

}
.bcr-coreValues-description p{
    margin-bottom: 0;
}
.bcr-coreValues-wrapper .row > div:nth-child(2) .bcr-coreValues-description{
    flex-direction: column-reverse;
}
.bcr-coreValues-description .bcr-img-holder img{
    border-radius: var(--border-radius-md);
}
.bcr-coreValues-details{
    gap: 15px;
}
/****  Section 6  ****/
.bcr-about-sec .bcr-section-caption{
    max-width: 1000px;
    margin: auto;
}
.bcr-about-col{
    gap: 15px;
    background: var(--global-color);
    height: 100%;
    border-radius: var(--border-radius-sm);
    padding: 15px;
    overflow: hidden;
}
.bcr-about-col:after{
    position:absolute;
    content:'';
    bottom:0;
    left:0;
    right:0;
    width: 100%;
    height: 3px;
    background: var(--theme-color-2);
}
.bcr-about-col .bcr-about-list-wrapp {
    margin-bottom: 40px;
}
.bcr-about-description{
    max-width: 650px;
    gap: 10px;
    margin-top: 21px;
}
.bcr-about-col .icon{
    max-width: 55px;
    width: 100%;
}
.bcr-about-col .bcr-about-details{
    gap: 10px;
}
.bcr-left-img{
    position: absolute;
    left: 0;
    bottom: 10%;
    width: 25%;
}
.bcr-right-img{
    position: absolute;
    bottom: 10%;
    right: 0;
    width: 25%;
}

/****  Section 5  ****/
.bcr-steps-wrapper{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}

.bcr-steps-wrapper .bcr-steps-col{
    background: var(--theme-color-1);
    color: var(--white-color);
    position: relative;
    z-index: 1;
    padding: 25px 20px 35px;
    overflow: hidden;
}
.bcr-steps-wrapper .bcr-steps-col::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    height: 10px;
    background-color: var(--theme-color-2);
    z-index: -1;
}
.bcr-steps-wrapper .bcr-steps-col .bcr-count {
    position: absolute;
    top: 20%;
    right: 0;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--global-color);
    border-bottom-left-radius: 15px;
    border-top-left-radius: 15px;
    z-index: 1;
    color: var(--theme-color-1);
    font-size: 18px;
    font-weight: 600;
}
.bcr-steps-wrapper .icon {
    position: relative;
    height: 80px;
    width: 80px;
    min-width: 80px;
    background-color: rgba(var(--gorent-white-rgb), .08);
    border-radius: 50%;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-top: -25px;
    margin-left: -25px;
    z-index: 1;
}
.bcr-steps-wrapper .icon img {
    filter: brightness(0) invert(1);
}
.bcr-steps-wrapper .icon:before {
    content: "";
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 3px solid rgba(var(--gorent-white-rgb), .15);
    border-radius: 50%;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    z-index: -1;
}
.bcr-steps-wrapper .shape-1 {
    position: absolute;
    bottom: 0;
    left: 50%;
    border-left: 105px solid transparent;
    border-bottom: 178px solid rgba(var(--gorent-white-rgb), 0.05);
    border-right: 105px solid transparent;
    transform: translateX(-50%);
    z-index: -1;
}
.bcr-steps-wrapper .shape-2 {
    position: absolute;
    top: -40px;
    right: -50px;
    border-left: 105px solid transparent;
    border-bottom: 178px solid rgba(var(--gorent-white-rgb), 0.05);
    border-right: 105px solid transparent;
    z-index: -1;
}
.bcr-steps-wrapper .shape-3 {
    position: absolute;
    bottom: -57px;
    right: -123px;
    border-left: 105px solid transparent;
    border-bottom: 178px solid rgba(var(--gorent-white-rgb), 0.05);
    border-right: 105px solid transparent;
    z-index: -1;
}
.bcr-steps-text h3{
    color: var(--white-color);
}
.bcr-steps-text p{
    margin: 0;
}
.bcr-steps-text{
    gap: 10px;
    padding-top: 50px;
}
/* Section 11 */
.bcr-offering-wrapper{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 90px 20px;
    padding: 40px 0 30px;
}
.bcr-offering-col{
    padding: 90px 25px 45px;
    background-color: var(--white-color);
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    border-radius: var(--border-radius-sm);
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    z-index: 1;
    gap: 15px;
}
.bcr-offering-col:hover {
    transform: translateY(-10px);
}
.bcr-offering-col p{
    margin: 0;
}
.bcr-offering-col .icon{
    height: 90px;
    width: 90px;
    margin: -135px auto 20px;
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    z-index: 2;
}
.bcr-offering-col .icon img{
     transition: all .4s linear;
}
.bcr-offering-col:hover .icon img{
    filter: brightness(0) invert(1);
}
.bcr-offering-col .icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background-color: var(--theme-color-1);
    transform: scaleX(0.7) rotateX(20deg);
    opacity: 0;
    transition: all .4s linear;
    z-index: -1;
}
.bcr-offering-col:hover .icon::before {
    transform: scaleX(1.0) rotateX(0deg);
    transition: all .4s linear;
    opacity: 1;
}
.bcr-offering-col .bcr-offering-text{
    flex: 1;
    gap: 10px;
}
.bcr-offering-col .bcr-count{
    width: 60px;
    height: 60px;
    margin: 0 auto -71px;
    box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
    z-index: 1;
    font-size:18px;
    transition: all .4s linear;
}
.bcr-offering-col:hover .bcr-count{
    color:var(--white-color)
}
.bcr-offering-col .bcr-count:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background-color: var(--theme-color-1);
    transform: scaleY(0.7) rotateY(20deg);
    opacity: 0;
    transition: all .4s linear;
    z-index: -1;
}
.bcr-offering-col:hover .bcr-count:after {
    transform: scaleY(1.0) rotateY(0deg);
    opacity: 1;
}
/* Section 12 */
.bcr-cta-wrapp{
    background: var(--theme-color-1);
    border-radius: var(--border-radius-sm);
    position: relative;
    padding: 50px 60px;
    z-index: 1;
    overflow: hidden;
}
.bcr-cta-wrapp h2{
    font-size: 24px;
}
.bcr-cta-wrapp .bcr-sub-title .subtitle-shape3{
    background: var(--white-color);
}
.bcr-cta-wrapp .bcr-cta-shape{
    position: absolute;
    width: 60%;
    height: 100%;
    top: 0;
    z-index: -1;
    right: 0;
}
.bcr-cta-wrapp .bcr-cta-shape img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

/***** ASR Question Sec *****/
.bcr-question-sec .accordion-button {
    padding: 16px 32px 16px 16px;
    color: var(--theme-color-1);
    background: 0 0;
    font-size: 17px;
    font-weight: 600;
    position: relative
}
.bcr-question-sec .accordion-button::after {
    background-image: none;
    content: none;
}
.bcr-question-sec .accordion-button:focus,.bcr-question-sec .accordion-button:not(.collapsed) {
    box-shadow: none;
    border: none
}

.bcr-question-sec .accordion-header {
    margin-bottom: 0;
    padding: 0;
    border: none;
    background-color: transparent
}
.bcr-question-sec .accordion-item {
    border: none;
    background: var(--global-color);
    margin-bottom: 18px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.bcr-question-sec .accordion-body {
    padding: 0 22px 20px;
    color: var(--dark-grey);
    text-align: justify;
    font-weight: 400;
}
.bcr-question-sec .fa-chevron-down {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform .3s ease-in-out;
}
.bcr-question-sec .accordion-button[aria-expanded=true] .fa-chevron-down {
    transform: translateY(-50%) rotate(-180deg);
    color: var(--dark-grey);
}



.bcr-car-listing-wrapp{ 
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}
.bcr-car-listing-wrapp .bcr-car-list-col{
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius-sm);
    padding: 15px;
    border-bottom: 3px solid var(--theme-color-2);
}
.bcr-car-listing-wrapp .bcr-car-list-col h3{
    margin-bottom: 12px;
}
.bcr-car-listing-wrapp .bcr-car-list-col h3 a{
    color:var(--theme-color-1)
}
.bcr-car-listing-wrapp .bcr-car-list-col .bcr-card-specs-list{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 0 15px;
    gap: 8px 13px;
    font-weight: 500;
    font-size: 14px;
    color: var(--grey-color);
}
.bcr-car-list-col .bcr-card-specs-list .ico{
    color: var(--theme-color-2);
}
.bcr-car-listing-wrapp .bcr-car-list-col .bcr-card-specs-list .ico svg{
    width: 20px;
    height: 20px;
}
.bcr-car-listing-wrapp .bcr-car-list-col .bcr-card-specs-list li{
    background: var(--global-color);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 12px;
    border-radius: var(--border-radius-xs);
}
.bcr-car-listing-wrapp .bcr-car-book-actions{
    gap: 15px;
    background: var(--global-color);
    padding: 5px 10px;
    border-radius: var(--border-radius-xs);
}
.bcr-car-listing-wrapp .bcr-car-book-actions  .head-txt{
    font-size: 12px;
    color: var(--grey-color);
    line-height: 16px;
}
.bcr-car-listing-wrapp .bcr-car-book-actions  .price{
    font-size:18px;
}
.bcr-car-listing-wrapp .bcr-car-book-actions  .price span{
    color: var(--grey-color);
    font-size: 13px;
}
.bcr-car-listing-wrapp .bcr-car-book-actions .btn{
    font-size: 14px;
    min-height: 37px;
    padding: 4px 12px;
    border-radius: var(--border-radius-xs);
}



/***** ASR Location Page Sec *****/
.bcr-location-list-wrapper{
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.bcr-location-list-wrapper .link{
    background: var(--theme-color-1);
    color: var(--white-color);
    letter-spacing: 1px;
    transition: all .35s;
    padding: 10px 25px;
    margin: 0 25px 0 0px;
    border-radius: var(--border-radius-xs);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.bcr-location-list-wrapper .link:after{
    position:absolute;
    content:'';
    left:0;
    width: 7px;
    height: 100%;
    background: var(--theme-color-2);
    top: 0;
    transition: width .4s linear;
    z-index: -1;
}
.bcr-location-list-wrapper .link:hover:after{
    width:100%;
}
.bcr-location-list-wrapper .icon{
    width: 37px;
    height: 37px;
    position: absolute;
    transform: rotate(45deg);
    right: 8px;
    top: 4px;
    transition: all .35s;
    background: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, .2) 0px 0px 8px;
    border-radius: var(--border-radius-xs);
    z-index: 99;
}
.bcr-location-list-wrapper .icon svg{
    transform: rotate(-45deg);
    fill: var(
    --primary-color);
    transition: all .35s;
}



/**** Section 26 ****/
.ozp-reviews-col{
    border-radius: 10px;
    font-size: 13px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    height: 100%;
    background: var(--global-color);
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}
.ozp-reviews-col:after{
    position: absolute;
    content: '';
    width: 100%;
    height: 4px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--theme-color-2);
}
.ozp-reviews-col p{
    margin: 0;
}
.ozp-reviews-col .ozp-reviews-head{
    display: flex;
    gap: 10px;
    position: relative;
    padding-right: 35px;
}
.ozp-reviews-col .ozp-reviews-head .google-symbol{
    position: absolute;
    right: 0;
}
.ozp-reviews-col .icon{
    width: 30px;
    height: 30px;
    min-width: 30px;
    background: var(--theme-color-2);
    border-radius: 50%;
    color: var(--white-color);
}
.ozp-reviews-col .ozp-reviews-info-wrapp{
    display: flex;
    flex-direction: column;
}
.ozp-reviews-col .ozp-reviews-info-wrapp .name{
    font-size: 14px;
    line-height: 20px;
}
.ozp-reviews-col .ozp-reviews-info-wrapp .time{
    color: var(--grey-color);
    font-size: 12px;
}
.ozp-reviewsSwiper .swiper-slide{
    height: auto;
    display: flex;
}
.ozp-reviews-col .check-icon{
    color: #1a73e8;
}
.ozp-star-list{
    color: #f6b52a;
    gap: 3px;
}
.ozp-star-list li{
    display:flex;
}
.ozp-star-list svg{
    width: 14px;
    height: 14px;
}
.ozp-swiper-btn-block{}
/* Lock class ka asar khatam karo */
.ozp-swiper-btn-block .swiper-button-lock {
    display: flex !important;
    opacity: 1;
}
.ozp-swiper-btn-block .swiper-button-next:after, 
.ozp-swiper-btn-block .swiper-button-prev:after{
    content: none;
}
.ozp-swiper-btn-block svg{
    width: 16px;
    height: 16px;
}
.ozp-swiper-btn-block .swiper-button-next, 
.ozp-swiper-btn-block .swiper-button-prev{
    width: 30px;
    height: 40px;
    background: var(--theme-color-2);
    border-radius: var(--border-radius-xs);
    color: var(--white-color);
    margin: 0;
    display: flex !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    transform: translateY(-50%);
    border: 1px solid var(--theme-color-2);
    transition:all .25s ease-in-out;
}
.ozp-swiper-btn-block .swiper-button-next:hover, 
.ozp-swiper-btn-block .swiper-button-prev:hover{
    background:transparent;
    color: var(--theme-color-2);
}
.ozp-swiper-btn-block .swiper-button-next{
    right: 0;
}
.ozp-swiper-btn-block .swiper-button-prev{
    left: 0;
}
.ozp-reviewsSwiper .ozp-swiper-btn-block {
    position: relative;
    margin-top: 20px;
    justify-content: flex-end;
}






/* Section 15 */
.bcr-intro-inner-banner-sec{
    padding: 50px 0;
}

.bcr-inner-hero-wrapps{
    display: grid;
    grid-template-columns: 45% 50%;
    grid-template-rows: auto;
    gap: 30px;
}
.bcr-intro-inner-banner-caption{
    gap: 8px;
}
.bcr-inner-hero-wrapps p{
    margin-bottom:0;
}
.bcr-inner-banner-img {
    width: 50%;
    position: absolute;
    top: 0;
    height: 100%;
    right: 0;
}
.bcr-inner-banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left bottom;
}
.bcr-intro-inner-list-wrapp{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 35px;
    line-height: 22px;
    margin: 0 -75px 0 0;
    padding-top: 15px;
}
.bcr-intro-inner-list-wrapp .bcr-intro-inner-list {
    gap: 10px;
}
.bcr-intro-inner-list-wrapp .bcr-intro-inner-list .bcr-text-wrapp{
    gap: 12px;
}
.bcr-intro-inner-list-wrapp .bcr-intro-inner-list p{
    margin-bottom: 0;
    font-size: 14px;
}

/* Section 16 */
.bcr-benefits-wrapper{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.bcr-benefits-wrapper.bcr-grid-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.bcr-benefits-wrapper.bcr-grid-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.bcr-benefits-col{
    background: var(--global-color);
    padding: 20px 30px;
    gap: 15px;
    box-shadow: rgba(0, 0, 0, .05) 0px 0px 12px 6px inset;
}
.bcr-benefits-col::after {
    content: "";
    position: absolute;
    top: 12px;
    right: 12px;
    width: 100px;
    height: 65px;
    background-image: radial-gradient(circle,rgba(118, 193, 26, 0.22) 2px,transparent 2px);
    background-size: 12px 12px;
    -webkit-mask-image: linear-gradient(to bottom left,#000 20%, transparent 85%);
    mask-image: linear-gradient(to bottom left, #000 20%, transparent 85% );
    pointer-events: none;
    z-index: 0;
}
.bcr-benefits-col p{
    margin-bottom:0;
}
.bcr-benefits-text h3{
    margin-bottom: 10px;
}


/* Section 17 */
.bcr-about-details-wrapper .bcr-about-details-col{
    gap: 15px;
}
.bcr-about-details-wrapper .bcr-about-details-col:not(:last-child){
    border-bottom: 1px solid var(--border-light-color);
    padding-bottom: 15px;
    margin-bottom: 20px;
}
/* Section 18 */
.bcr-reasons-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: start;
}
.bcr-reasons-wrapper p{
    margin-bottom: 0;
}
.bcr-reasons-wrapper .bcr-reasons-col {
    min-width: 0;
    background: var(--global-color);
    padding: 25px;
    overflow: hidden;
    gap: 15px;
    box-shadow: rgba(0, 0, 0, .05) 0px 0px 12px 6px inset;
    z-index: 1;
}
.bcr-reasons-wrapper .bcr-reasons-col:nth-child(1){
    margin-top: 30px;
}
.bcr-reasons-wrapper .bcr-reasons-col:nth-child(4){
    margin-top: -30px;
}
.bcr-reasons-wrapper .bcr-reasons-col:after{
    position:absolute;
    content:'';
    background-image: url('/assets/images/section-shape-18.png');
    width: 119px;
    height: 137px;
    left: 0;
    top: 0;
    opacity: .1;
    z-index: -1;
}
/* Section 19 */
.bcr-business-form-wrapp{
    background: var(--global-color);
    border-radius: var(--border-radius-md);
    padding: 30px;
}
.bcr-business-list-wrapper{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 30px;
}
.bcr-business-list-wrapper .bcr-business-form-list{
    gap: 10px;
    line-height: 20px;
    background: var(--white-color);
    border-radius: var(--border-radius-sm);
    box-shadow: rgba(0, 0, 0, .05) 0px 0px 12px 6px inset;
    padding: 8px 12px;
}
.bcr-business-list-wrapper .bcr-business-form-list span{
    font-weight: 400;
    display: block;
}
.bcr-business-form-wrapp .bcr-business-form{
    gap: 15px;
}
.bcr-business-form-wrapp .bcr-business-form .form-control{
    border-color: var(--white-color);
    box-shadow: rgba(0, 0, 0, .05) 0px 0px 12px 6px inset;
}
/* Section 20 */
.bcr-monthly-rental-wrapper .bcr-rental-card{
    background: var(--white-color);
    border-radius: var(--border-radius-sm);
    padding: 25px;
    height: 100%;
}
.bcr-monthly-rental-wrapper .bcr-list-title{
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 26px;
}
.bcr-monthly-rental-list ul li{
    display: flex;
    gap: 20px;
}
.bcr-monthly-rental-list > ul > li:not(:last-child){
    border-bottom: 1px solid var(--border-light-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.bcr-monthly-rental-list ul{
    font-weight: 400;
}
.bcr-monthly-rental-list p{
    margin-bottom: 0;
}
.bcr-monthly-rental-wrapper .bcr-rental-car-list{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.bcr-monthly-rental-wrapper .bcr-rental-car-list .bcr-car-img{
    flex: 0 0 170px;
    background: var(--global-color);
    padding: 8px;
}
.bcr-monthly-rental-wrapper .bcr-rental-car-list li{
    display: flex;
    border: 1px solid var(--border-light-color);
    border-radius: var(--border-radius-sm);
    align-items: center;
    overflow: hidden;
    gap: 20px;
    padding-right: 15px;
}
.bcr-monthly-rental-wrapper .bcr-rental-car-list p{
    margin-bottom: 0;
}
.bcr-monthly-rental-wrapper .bcr-rental-car-list .text-wrapp{
    border-radius: 1px solid var(--border-light-color);
    border-right: 1px solid var(--border-light-color);
    padding: 10px 20px 10px 0;
    font-size: 14px;
    line-height: 1.4;
    gap: 6px;
    align-items: flex-start;
}
.bcr-monthly-rental-wrapper .bcr-rental-car-list .bcr-car-title{
    font-weight: 600;
    font-size: 16px;
    color: var(--theme-color-2);
    text-decoration: underline;
}
.bcr-monthly-rental-wrapper .bcr-rental-car-list .bcr-price-wrap{
    white-space: nowrap;
    background: var(--global-color);
    padding: 7px 14px;
    font-size: 22px;
    line-height: 30px;
    border-radius: var(--border-radius-sm);
}
.bcr-monthly-rental-wrapper .bcr-rental-car-list .bcr-car-price{
    text-align: center;
}
.bcr-monthly-rental-wrapper .bcr-rental-car-list .bcr-car-price span{
    display: block;
    font-weight: 400;
    line-height: 20px;
    font-size: 14px;
}
/* Section 21 */
.bcr-works-details-wrapps{
    grid-template-columns: 400px auto;
    gap: 40px;
}
.bcr-works-details-wrapps .bcr-works-wrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.bcr-works-details-wrapps .bcr-works-col{
    padding: 20px 25px;
    gap: 15px;
    background: var(--global-color);
    box-shadow: rgba(0, 0, 0, .05) 0px 0px 12px 6px inset;
    border-bottom: 3px solid var(--theme-color-2);
}
.bcr-works-details-wrapps .bcr-works-col p{
    margin:0;
}

/* Section 22 */
.bcr-company-sec .row > div:first-child .bcr-company-process-card {
    padding-right: 20px;
    border-right: 1px solid var(--border-light-color);
}
/* Right Card */

.bcr-company-sec .row > div:nth-child(2) .bcr-company-process-card {
    padding-left: 20px;
}
.bcr-company-process-card .bcr-company-process-head{gap: 10px;margin-bottom: 30px;}
.bcr-company-process-card .icon{width: 90px;height: 90px;min-width: 90px;position: relative;}
.bcr-company-process-card .bcr-company-process-list{display: grid;grid-template-columns: repeat(3, minmax(0, 1fr));gap: 20px;}
.bcr-company-process-card p{
    margin:0;
}
.bcr-company-process-card .bcr-company-process-list .icon{
    margin: 0 auto 20px;
}
.bcr-company-process-card .bcr-company-process-list::after{
    position: absolute;
    content: '';
    width: 70%;
    border: 1px dashed var(--theme-color-2);
    left: 50%;
    transform: translateX(-50%);
    top: 45px;
    z-index: -1;
    opacity: .5;
}
.bcr-company-process-card .bcr-company-process-list li{display: flex;flex-direction: column;gap: 15px;}
.bcr-company-process-card .bcr-company-process-list .bcr-count{background: var(--theme-color-1);color: var(--white-color);font-weight: 600;font-size: 14px;width: 30px;height: 30px;position: absolute;bottom: -20px;letter-spacing: 1px;}

.bcr-company-process-card .bcr-company-perfect-list{display: grid;grid-template-columns: repeat(2, minmax(0, 1fr));gap: 22px;}
.bcr-company-process-card .bcr-company-perfect-list li{display: flex;align-items: flex-start;gap: 20px;}
.bcr-company-process-card .bcr-company-perfect-list .bcr-text-wrapp{
    gap: 6px;
}
/* Contact Page */
.bcr-contact-page-sec h2{
    font-size: 24px;
}
.bcr-contact-page-sec .bcr-contact-page-form,
.bcr-contact-page-sec .bcr-contact-info-list{
    border-radius: var(--border-radius-sm); 
    padding: 30px;
    height: 100%; 
}
.bcr-contact-info-list .bcr-contact-page-list{
    gap: 25px;
    font-weight: 500;
}
.bcr-contact-info-list .bcr-contact-page-list li{
    display: flex;
    gap: 25px;
    border-bottom: 1px solid var(--border-light-color);
    padding-bottom: 25px;
}
.bcr-contact-info-list .bcr-contact-page-list li:last-child{
    border: none;
    padding-bottom: 0;
}
.bcr-contact-info-list .bcr-contact-page-list svg{
    color:var(--theme-color-2);
    width: 26px;
    height: 26px;
}
.bcr-contact-info-list .bcr-contact-page-list strong{
    color: var(--theme-color-1);
    font-size: 18px;
    margin-bottom: 4px;
}
.bcr-contact-info-list .bcr-contact-page-list a{
    color: var(--theme-color-1);
    transition: color .25s ease-in-out;
}
.bcr-contact-info-list .bcr-contact-page-list a:hover{
     color: var(--theme-color-2);
}
.bcr-contact-page-sec .bcr-contact-page-form .form-control{
    border-color: #e4e4e4;
}
/* Footer Page */
/* ---------- Footer ---------- */
.bcr-footer-page{
    background: var(--theme-color-1);
    padding-top: 45px;
    border-top: 6px solid var(--theme-color-2);
}
.bcr-footer-wrapper .bcr-ft-contact-list svg{
    width: 20px;
    height:20px;
    color: var(--theme-color-2);
}
.bcr-footer-contact-description p{
    font-size: 13px;
    line-height: 22px;
}
.bcr-footer-wrapper .bcr-ft-contact-list{
    gap: 10px;
}
.bcr-footer-wrapper .bcr-ft-contact-list .bcr-text-wrapp{display: inline-flex;gap: 10px;color: var(--white-color);}
.bcr-footer-listing-holder{
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 15px;
}
.bcr-footer-listing-holder .bcr-ft-list.bcr-cars-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 15px;
}
.bcr-footer-wrapper .bcr-ft-heading{
    margin-bottom: 15px;
    padding-bottom: 4px;
    font-size: 20px;
}
.bcr-footer-wrapper .bcr-ft-heading:after{
    position:absolute;
    content:'';
    width: 50px;
    height: 1px;
    background: var(--theme-color-2);
    bottom: 0;
    left: 0;
}

.bcr-footer-listing-holder .bcr-ft-list{
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.bcr-footer-listing-holder .bcr-ft-list a{
    display: inline-flex;
    align-items: baseline;
    padding-left: 28px;
    position: relative;
    color: var(--white-color);
}
.bcr-footer-listing-holder .bcr-ft-list a:hover{
    transform: translateX(7px);
}
.bcr-footer-listing-holder .bcr-ft-list a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background-color: var(--theme-color-2);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M21.634 47.186c-1.893-2.126-3.422-4.206-4.899-6.22a35.467 35.467 0 0 1-3.494-5.845c-.61-1.248-.88-2.51.441-3.323 3.787-2.327 4.563-.105 6.62 2.473 1.22 1.528 3.02 4.047 4.147 5.639 1.077 1.52 2.39-1.223 2.913-1.998 1.863-2.75 6.703-9.486 8.704-11.975 1.899-2.364 8.028-8.985 9.17-10.038.973-.897 3.027-2.863 4.408-1.778 1.45 1.14 2.16 3.307 1.14 4.716-1.777 2.453-4.567 4.786-6.498 7.122-3.908 4.728-7.608 9.824-11.16 14.899-1.207 1.724-2.901 4.612-3.953 6.482-1.968 3.499-3.696 4.164-7.54-.154z'/%3E%3C/svg%3E")
        no-repeat center / contain;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M21.634 47.186c-1.893-2.126-3.422-4.206-4.899-6.22a35.467 35.467 0 0 1-3.494-5.845c-.61-1.248-.88-2.51.441-3.323 3.787-2.327 4.563-.105 6.62 2.473 1.22 1.528 3.02 4.047 4.147 5.639 1.077 1.52 2.39-1.223 2.913-1.998 1.863-2.75 6.703-9.486 8.704-11.975 1.899-2.364 8.028-8.985 9.17-10.038.973-.897 3.027-2.863 4.408-1.778 1.45 1.14 2.16 3.307 1.14 4.716-1.777 2.453-4.567 4.786-6.498 7.122-3.908 4.728-7.608 9.824-11.16 14.899-1.207 1.724-2.901 4.612-3.953 6.482-1.968 3.499-3.696 4.164-7.54-.154z'/%3E%3C/svg%3E")
        no-repeat center / contain;
}

.bcr-footer-cta-left .icon{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(160deg, #94c63d 0%, #6aa82a 45%, #4c891d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow:
      0 0 0 10px rgba(140, 170, 110, 0.14),
      0 0 0 20px rgba(140, 170, 110, 0.09),
      0 0 0 30px rgba(140, 170, 110, 0.05);
    min-width: 70px;
    color: var(--white-color);
}

.bcr-footer-cta-wrapp{
    display: grid;
    grid-template-columns: 2fr 1.5fr .5fr;
    align-items: center;
    gap: 30px;
    background: rgba(255,255,255,.05);
    border-radius: 30px;
    padding: 0px 35px 0 50px;
    margin-bottom: 40px;
    border: 1px solid rgba(255,255,255,.1);
}
.bcr-footer-cta-wrapp .bcr-btn-wrapp .btn{
    min-width: 140px;
}
.bcr-footer-cta-wrapp .bcr-footer-cta-left{
    gap: 40px;
}
.bcr-footer-cta-wrapp .bcr-footer-cta-left span{
    font-size: 18px;
    line-height: 25px;
}
.bcr-footer-wrapper a{
    transition: all .25s ease-in-out;
}
.bcr-footer-wrapper a:hover{
    color: var(--theme-color-2) !important;
}
.bcr-social-media{
    gap: 12px;
}
.bcr-social-media a{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-xs);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    color: var(--white-color);
}
.copyright{
    border-top: 1px solid rgba(255,255,255,.15);
    margin-top: 40px;
}
.copyright a{
    color:var(--theme-color-2);
}
/* Sticky Btn */
.bcr-sticky-call-box {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-color-2);
    color: var(--white-color);
    border-radius: 50%;
    z-index: 999;
}
.bounce {
    animation: bounce 0.8s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    30% { transform: translateY(-10px); }
    50% { transform: translateY(0); }
    70% { transform: translateY(-5px); }
}
.bcr-thank-you-wrapper{
    padding: 30px;
    gap: 20px;
    border-radius: var(--border-radius-xs);
}
/* Blogs */
.bcr-blog-col{
    gap: 10px;
    padding: 10px 10px 20px;
    border-radius: 16px;
}
.bcr-blog-col img{
    border-radius: var(--border-radius-xs);
}
.bcr-blog-col .bcr-blog-title{
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
    color: var(--theme-color-1);
    transition: color .25s ease-in-out;
}
.bcr-blog-col .bcr-blog-title:hover{
    color: var(--theme-color-2);
}
.bcr-blog-detail-block{
    border-radius: var(--border-radius-md);
    padding: clamp(15px, 3vw, 30px);
}
.bcr-blog-detail-block h1{
    font-size: clamp(22px, 3vw, 34px);
}
.bcr-blog-detail-block h2{
    font-size: clamp(20px, 2.2vw, 24px);
}
.bcr-blog-detail-block h3{
    font-size: clamp(16px, 2.2vw, 18px);
}


.bcr-intro-location-sec{
    padding: 80px 0;
    z-index: 1;
}

.bcr-intro-location-sec:before{
    position: absolute;
    content: '';
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: contain;
    top: 0;
    background-position: bottom right;
    background-repeat: no-repeat
}
.bcr-intro-location-caption {
    gap: 20px;
    max-width: 580px;
}
.bcr-intro-location-caption p{
    margin-bottom: 0;
}
.bcr-intro-location-list{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
    background: var(--white-color);
    border-radius: var(--border-radius-xs);
    padding:5px 15px 5px 0;
}
.bcr-intro-location-list .bcr-text-wrapps{
    gap: 10px;
    font-size: 14px;
}
.bcr-intro-location-list .bcr-content{
    gap: 5px;
}


/* Website Responsive */
@media (min-width: 1350px){
    .container{
        max-width: 1300px;
    }
}
@media (max-width: 1199px){
    .bcr-page-nav .bcr-navbar{
        letter-spacing: 0;
    }
    .bcr-main-menu-wrapper{
        gap: 12px;
    }
    .logo img{
        max-width: 130px;
    }
    .bcr-intro-banner-caption{
        max-width: 500px;
    }
    .demo-card{
        max-width: 100%;
        padding: 25px 15px;
    }
    .bcr-intro-trust-bar{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .bcr-about-description {
        max-width: 480px;
    }
    .bcr-location-list-wrapper{
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .bcr-works-details-wrapps {
        grid-template-columns: 300px auto;
        gap: 20px;
    }
    .bcr-works-details-wrapps .bcr-works-col{
        padding: 15px;
    }
    
}
@media (max-width: 991px){
    .bcr-intro-banner-caption p{
        font-size: inherit;
    }
    .spacing-padding {
        padding: 40px 0;
    }
    .spacing-margin {
        margin-bottom: 40px;
    }
    .bcr-section-caption{
        margin-bottom: 25px;
        gap: 10px;
    }
    .bcr-intro-banner-sec.bg-overlay:after{
        background: linear-gradient(90deg, rgba(1, 52, 18, .95) 20%, rgba(1, 52, 18, 0) 100%);
    }
    .bcr-benefits-wrapper.bcr-grid-3,
    .bcr-offering-wrapper,
    .bcr-steps-wrapper,
    .bcr-car-listing-wrapp{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .bcr-about-description {
        max-width: 100%;
    }
    .bcr-location-list-wrapper{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .bcr-cta-wrapp{
        padding: 30px;
    }
    .bcr-footer-cta-wrapp{
        grid-template-columns: auto;
        padding: 45px 20px 20px 45px;
        gap: 12px;
    }
    .bcr-inner-banner-img {
        width: 85%;
    }
    .bcr-intro-inner-banner-sec.bg-overlay:after{
        content: '';
    }
    .bcr-intro-inner-banner-caption{
        position: relative;
        z-index: 9;
    }
    .bcr-inner-hero-wrapps{
        grid-template-columns: 60% 40%;
    }
    .bcr-works-details-wrapps {
        grid-template-columns: auto;
        gap: 20px;
    }
    .bcr-intro-location-sec{
        padding: 50px 0;
    }
    .bcr-intro-location-caption {
        gap: 12px;
    }
    .bcr-intro-location-list{
        background: transparent;
    }
    .bcr-intro-location-sec.bg-overlay:after{
        content: '';
    }
}
@media (max-width: 767px) {
    body{
        font-size: 14px;
    }
    .btn{
        font-size: 14px;
        min-height: 40px;
        gap: 6px;
        padding: 5px 12px;
        letter-spacing: 0;
    }
    .form-select, .form-control{
        height: 42px;
    }
    .logo img {
        max-width: 110px;
    }
    .bcr-intro-inner-banner-sec,
    .bcr-intro-banner-sec{
        padding: 40px 0 80px;
        background-position: top;
        background-image: var(--mobile-bg);
    }
    .bcr-intro-inner-banner-sec{
        padding: 40px 0;
        background-size: cover;
    }
    .bcr-intro-inner-banner-sec.bg-overlay:after,
    .bcr-intro-banner-sec.bg-overlay:after {
        background: linear-gradient(to bottom, #013412 0%, rgba(1, 52, 18, .95) 25%, rgba(1, 52, 18, .75) 30%, rgba(1, 52, 18, 0) 60%, rgba(1, 52, 18, .75) 67%, rgba(1, 52, 18, .95) 80%, #013412 100%);
    }
    .bcr-intro-inner-banner-caption h1,
    .bcr-intro-inner-banner-caption h2{
        color: var(--white-color);
    }
    .bcr-inner-hero-wrapps {
        color: var(--white-color);
        grid-template-columns: auto;
    }
    .bcr-intro-inner-list-wrapp{
        margin: 0;
        padding-top: 190px;
        gap: 15px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .bcr-intro-banner-caption{
        gap: 12px;
    }
    .bcr-intro-list-wrapp .bcr-intro-list{
        text-align: start;
    }
    .bcr-intro-trust-bar .bcr-intro-col{
        flex-direction: column;
    }
    .bcr-intro-list-wrapp{
        padding-top: 190px;
    }
    .bcr-works-details-wrapps .bcr-works-wrapper,
    .bcr-intro-trust-bar,
    .bcr-location-list-wrapper,
    .bcr-intro-list-wrapp{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }
    .bcr-intro-location-list,
    .bcr-company-process-card .bcr-company-perfect-list,
    .bcr-benefits-wrapper.bcr-grid-3,
    .bcr-benefits-wrapper.bcr-grid-2,
    .bcr-offering-wrapper,
    .bcr-steps-wrapper,
    .bcr-car-listing-wrapp{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .bcr-steps-text{
        padding-top: 0;
        margin-left: 20px;
    }
    .bcr-steps-wrapper .bcr-steps-col .bcr-count{
        top: auto;
        bottom: 15px;
        right: auto;
        left: 0;
        border-radius: 0 15px 15px 0;
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    .bcr-steps-wrapper .bcr-steps-col::after{
        height: 5px;
    }
    .bcr-coreValues-wrapper .row > div:nth-child(2) .bcr-coreValues-description{
        flex-direction: column
    }
    .bcr-cta-wrapp {
        padding: 20px;
    }
    .bcr-sub-title{
        font-size: 14px;
    }
    .bcr-cta-wrapp h2 {
        font-size: 21px;
    }
    .bcr-question-sec .accordion-button{
        font-size: 15px;
    }
    .bcr-footer-cta-wrapp{
        padding: 45px 20px 20px;
        margin-bottom: 30px;
    }
    .bcr-footer-page{
        padding-top: 25px;
    }
    .bcr-footer-listing-holder{
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 20px;
    }
    .bcr-footer-listing-holder .bcr-ft-list-wrapp:nth-child(3) {
        grid-column: 1 / -1;
    }
    .bcr-reasons-wrapper{
        gap: 12px;
    }
    .bcr-reasons-wrapper .bcr-reasons-col{
        padding: 12px;
        height: 100%;
    }
    .bcr-reasons-wrapper .bcr-reasons-col:nth-child(4),
    .bcr-reasons-wrapper .bcr-reasons-col:nth-child(1) {
        margin-top: 0;
    }
    .bcr-company-process-card .bcr-company-process-list{
        grid-template-columns:auto;
        text-align: left;
    }
    .bcr-company-process-card .bcr-company-process-list li{
        flex-direction: row;
    }
    .bcr-company-process-card .bcr-company-process-list .icon{
        margin: 0 45px 0 0;
    }
    .bcr-company-process-card .bcr-company-process-list .bcr-count{
        right: -40px;
        bottom: auto;
        top: 50%;
        transform: translateY(-50%);
    }
    .bcr-company-process-card .bcr-company-process-list::after{
        width: auto;
        height: 70%;
        left: 100px;
    }
    .bcr-company-sec .row > div:first-child .bcr-company-process-card{
        padding-right: 0;
        border-right: none;
    }
    .bcr-company-process-card .icon{
        width: 75px;
        height: 75px;
        min-width: 75px;
        padding: 15px;
    }
    .bcr-company-process-card .bcr-company-perfect-list li:not(:last-child){
        border-bottom: 1px solid var(--border-light-color);
        padding-bottom: 15px;
    }
    .bcr-company-sec .row > div:nth-child(2) .bcr-company-process-card{
        padding: 0;
    }
    .bcr-contact-page-sec .bcr-contact-page-form, .bcr-contact-page-sec .bcr-contact-info-list {
        padding: 20px;
    }
    .bcr-contact-us-banner{
        background-image: url('/assets/images/contact-us-mobile-bg.webp');
    }
    .bcr-intro-location-sec {
        padding: 40px 0 0;
    }
    .bcr-intro-location-sec:before{
        background-image: var(--mobile-bg) !important;
        background-position: top;
    }
    .bcr-intro-location-sec.bg-overlay:after{
        content: none;
    }
    .bcr-intro-location-list .bcr-text-wrapps{
        background: var(--white-color);
        border-radius: var(--border-radius-sm);
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        padding: 10px;
    }
    .bcr-intro-location-list{padding-top: 140px;}
}


/* Complete Form CSS */
/* ===== Form ===== */
.bcr-topbar{
    background: var(--theme-color-1);
    border-radius:18px;
    color:var(--white-color);
    padding:18px 26px;
}
.bcr-topbar-right{
    gap: 35px;
}
.bcr-topbar-left{
    gap: 20px;
}
.bcr-topbar .pin-circle{
    width:44px;
    height:44px;
    border-radius:50%;
    background:rgba(255,255,255,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}
.bcr-topbar .loc-label{ font-size:13px; opacity:.8; margin-bottom:2px;}
.bcr-topbar .loc-value{ font-size:16px; font-weight:600;}
.bcr-topbar .date-value{ font-weight:600; font-size:14px; }
.bcr-topbar .date-arrow{ opacity:.6; margin:0 10px; }

/* ===== Sidebar ===== */
.bcr-filter-card{
    background:var(--white-color);
    border-radius:var(--border-radius-xs);
    padding:20px;
    box-shadow: var(--box-shadow);
}

.bcr-filter-card .filter-title{
    font-weight:600;
    font-size:16px;
}
.bcr-filter-card .filter-title .reset-link{
    font-size:.82rem;
    color:var(--ok-green);
    font-weight:500;
    cursor:pointer;
}
.bcr-filter-card .bcr-form-check-list{
    display: grid;
    gap: 6px;
}
.bcr-filter-card .form-check{
    padding-left:1.9em;
}
.bcr-filter-card .form-check .form-check-input{
    margin-left:-1.9em;
    width:1.05em;height:1.05em;
    margin-top:.2em;
}
.bcr-filter-card .form-check-input:checked{
    background-color: var(--theme-color-1);
    border-color: var(--theme-color-1);
}
.bcr-filter-card .form-check-input:focus{
    box-shadow:none;
}
.bcr-filter-card .form-check-label{
    font-size:.9rem;
    display: inline-flex;
    align-items:center;
    gap:8px;
    color:#2b2b2b;
}
.bcr-filter-card .form-check-label i{ 
    color:var(--theme-color-2); 
    font-size:1rem; 
    width:18px; 
    text-align:center;
}
hr.filter-sep{ margin:16px 0; opacity:.1; }

.promo-input{
    border-radius:8px 0 0 8px;
    font-size:.85rem;
}
.btn-apply{
    background:var(--theme-color-1);
    color:#fff;
    border-radius:0 8px 8px 0;
    font-weight:500;
    font-size:.85rem;
    border:1px solid var(--theme-color-1);
}
.btn-apply:hover{ background:var(--forest-btn-hover); color:#fff;}


/* ===== Car Cards ===== */
.bcr-car-card{
    background: var(--white-color);
    padding:16px;
    height:100%;
    box-shadow: var(--box-shadow);
    position:relative;
    transition:box-shadow .15s ease, transform .15s ease;
    border-radius: var(--border-radius-xs);
}
.bcr-car-name{
    font-size: 18px;
    margin-bottom: 15px;
}
.status-available{
    background: var(--theme-color-2);
    color: var(--white-color);
    top: 10px;
    right: 10px;
    font-weight: 500;
    font-size: 13px;
    padding: 3px 8px;
    border-radius: var(--border-radius-xs);
}
.bcr-car-specs{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 15px;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 14px;
    border-bottom: 1px solid var(--border-light-color);
    padding-bottom: 15px;
}
.bcr-car-specs li{
    display: flex;
    gap: 10px;
    align-items: center;
}
.bcr-car-specs .car-ico{
    background: var(--global-color);
    border-radius: 50px;
    width: 31px;
    height: 30px;
    min-width: 30px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: rgba(0, 0, 0, .15) 0px 2px 8px 0px;
    border-bottom: 2px solid var(--theme-color-2);
}
.bcr-car-specs .car-ico svg{
    width: 18px;
    height: 18px;
}
.price-total{color: var(--grey-color);font-size: 14px;}
.price-value{

}
.bcr-card-actions{
    display: flex;
    justify-content: space-between;
}
.bcr-card-actions .btn{
    font-size: 12px;
    padding: 4px 11px;
    min-height: 32px;
    letter-spacing: 0;
    border-radius: var(--border-radius-xs);
}
.bcr-card-actions .bcr-btn-actions{
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: end;
    align-items: center;
}
.btn-change-dates {
    background: var(--forest-btn);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    font-weight: 500;
    border-radius: 10px;
    padding: 10px 18px;
    white-space: nowrap;
}
/* Main Form */
  .bk-widget label,
  .bk-widget .bk-label{
    display:block;
    font-size:.95rem;
    font-weight:600;
    margin-bottom:.5rem;
    color:var(--bk-ink);
  }


  /* --- combined date + time pill ------------------------------- */
  .bk-datetime{
    display:flex;
    align-items:stretch;
    height:48px;
    border: 1px solid var(--border-light-color);
    border-radius: var(--border-radius-sm);
    background:#fff;
    overflow:visible;                 /* dropdown must escape */
    transition:border-color .15s ease, box-shadow .15s ease;
  }
  .bk-datetime:focus-within{
    border-color:var(--theme-color-2);
  }

  .bk-seg{
    position:relative;                /* dropdown anchor */
    flex:1 1 50%; min-width:0;
    display:flex; align-items:center; gap:.4rem;
    padding:0 .55rem 0 .9rem;
    cursor:pointer;
  }
  .bk-seg + .bk-seg{ padding-left:.25rem; }

  .bk-value{
    flex:1 1 auto; 
    min-width:0;
    border:0; 
    padding:0; background:transparent;
    font:inherit; 
    font-size:.95rem;
    cursor:pointer;
    text-overflow:ellipsis; overflow:hidden; white-space:nowrap;
  }
  .bk-value:focus{ outline:none; }

  .bk-icon-btn{
    flex:0 0 auto;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:28px;
    height:28px;
    padding:0;
    border:0;
    background:transparent;
    color: var(--theme-color-2);
    border-radius:50%;
    cursor:pointer;
  }

  .bk-icon-btn svg{ width:17px; height:17px; }

  /* --- selects -------------------------------------------------- */
  .bk-select{
    background-size: 12px;
    /* background-position: -7px; */
    background-position: right 1rem center;
  }
  .bk-select:focus{
    border-color:var(--bk-accent);
    box-shadow:0 0 0 3px rgba(31,168,224,.15);
  }



  /* --- custom time dropdown ------------------------------------- */
  .bk-timelist{
    position:absolute;
    top:calc(100% + 8px);
    left:0;
    z-index:20;
    width: 135px;
    max-height: 180px;
    overflow-y:auto;
    margin:0;
    padding:.35rem;
    list-style:none;
    background:var(--white-color);
    border-radius:14px;
    box-shadow:0 12px 28px rgba(18,22,28,.14);
    display:none;
    font-weight: 500;
  }
  .bk-timelist.is-open{ display:block; }
  .bk-timelist--flip{ left:auto; right:0; }

  .bk-timelist li{
    padding: 6px 12px;
    font-size: 13px;
    border-radius: var(--border-radius-xs);
    cursor:pointer;
    white-space:nowrap;
    transition: all .25s ease-in-out;
  }
  .bk-timelist li:hover,
  .bk-timelist li.is-active{background:var(--global-color);color: var(--theme-color-2);}
  .bk-timelist li.is-selected{color: var(--theme-color-2);font-weight:600;}
  .bk-timelist li.is-disabled{ cursor:not-allowed; background:none; }

  /* Flatpickr: sit above the Bootstrap modal (z-index 1055) */
  .flatpickr-calendar{ z-index:1080 !important; font-family:inherit; }
  .flatpickr-day.selected,
  .flatpickr-day.selected:hover{background: var(--theme-color-1);border-color: var(--white-color);}
  .flatpickr-day.today{
    border-color: var(--theme-color-2);
    color: var(--white-color);
    background: var(--theme-color-2);
  }
.flatpickr-day.inRange,.flatpickr-day.prevMonthDay.inRange,.flatpickr-day.nextMonthDay.inRange,.flatpickr-day.today.inRange,.flatpickr-day.prevMonthDay.today.inRange,.flatpickr-day.nextMonthDay.today.inRange,.flatpickr-day:hover,.flatpickr-day.prevMonthDay:hover,.flatpickr-day.nextMonthDay:hover,.flatpickr-day:focus,.flatpickr-day.prevMonthDay:focus,.flatpickr-day.nextMonthDay:focus {
    background: var(--global-color) ;
    border-color: var(--global-color);
    color: var(--theme-color-2);
}


  /* --- demo page chrome (not part of the widget) ---------------- */
.demo-card{
    background: var(--global-color);
    border-radius: var(--border-radius-md);
    padding: 1.75rem;
    box-shadow: 0 18px 44px rgba(18, 22, 28, .08);
    max-width: 90%;
    margin: -55px auto 0;
    position: relative;
    z-index: 99;
    border-bottom: 4px solid var(--theme-color-2);
}
.demo-card h2{
    font-size: clamp(18px, 2.2vw, 22px);
}


/* Bcr Addons Sec */
.bcr-addons-sec .bcr-main-panel{
    background:var(--white-color);
    border-radius:var(--border-radius-xs);
    box-shadow: var(--box-shadow);
    padding: 30px 20px;
    height: fit-content;
}
form.bcr-checlout-form .ck-field-label{
    font-weight: 500;
    margin-bottom: 4px;
}
.bcr-addons-sec h2{
    font-weight: 600;
    font-size: 24px;
}
.bcr-addons-main-wrapp{
    display: grid;
    grid-template-columns: 400px auto;
    gap: 30px;
}
/* ---------- car card ---------- */
.bcr-addons-sec .bcr-car-features-list{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    display: grid;
    gap: 15px;
    border-bottom: 1px solid var(--border-light-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.bcr-addons-sec .bcr-car-features-list li{
    display:flex;
    align-items:center;
    gap: 8px;
    background:var(--global-color);
    border-radius:var(--border-radius-xs);
    padding: 9px 12px;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 3px solid var(--theme-color-2);
}
.bcr-addons-sec .bcr-car-features-list li svg{
    width: 20px;
    height: 20px;
    color: var(--theme-color-2);
}
.bcr-addons-sec .bcr-mini-label{
    font-weight: 600;
    font-size: 14px;
}
.bcr-addons-main-wrapp .bcr-location-wrapp{
    gap: 10px;
    margin-bottom: 15px;
}
.bcr-addons-main-wrapp .bcr-location-wrapp .text-wrapp{
    gap: 6px;
    font-size: 13px
}
.bcr-addons-sec .bcr-trip-col-wrap{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    display: grid;
    gap: 15px;
    margin-bottom: 25px;
}
.bcr-addons-sec .bcr-trip-col{
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    background: var(--global-color);
    border-radius: var(--border-radius-sm);
    border-bottom: 3px solid var(--theme-color-2);
    padding: 12px;
}
.bcr-addons-sec .bcr-trip-col ul{
    font-size: 13px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.bcr-addons-sec .bcr-trip-col ul li{
    border-bottom: 1px solid var(--border-light-color);
    padding-bottom: 6px;
    display: flex;
    gap: 8px;
}
.bcr-addons-sec .bcr-trip-col ul svg{
    color: var(--theme-color-2);
}
.bcr-addons-sec .bcr-trip-col ul li:last-child{
    border:none;
    padding-bottom:0
}
.bcr-addons-sec .bcr-trip-col .day{
    display:flex;
    align-items:center;
    gap:.45rem;
}
.bcr-addons-sec .bcr-trip-col i{
    color:var(--theme-color-2);
}


/* ---------- summary ---------- */
.bcr-addons-sec .bcr-summary-wrapper{
    border:1px solid var(--border-light-color);
    border-radius:var(--border-radius-sm);
    padding:1.25rem;
}
.bcr-addons-sec .bcr-summary-block{
    background:var(--global-color);
    border-radius:var(--border-radius-xs);
    padding: 13px 18px;
    display: flex;
    gap: 12px;
}
.bcr-addons-sec .bcr-summary-block .label{ font-size:.85rem; font-weight:600; }
.bcr-addons-sec .bcr-summary-block .value{ font-size:.88rem; color:var(--theme-color-1); }
.bcr-addons-sec .bcr-summary-block i{ color:var(--theme-color-2); }



.bcr-addons-sec .bcr-booking-line-item{
    display:flex; justify-content:space-between; align-items:flex-start;
    gap:1rem; padding:.6rem 0; font-size:.9rem;
}
.bcr-addons-sec .bcr-booking-line-item .sub{ color:var(--grey-color); font-size:.82rem; }
.bcr-addons-sec .bcr-booking-line-item .val{ font-weight:700; white-space:nowrap; }

.bcr-addons-sec .bcr-total-price-row{
    border-top:1px solid var(--border-light-color);
    padding-top:14px;
    margin-top:7px;
}

.bcr-addons-sec .bcr-total-price-row .val{
    font-size:20px;
}
/* ---------- extras rows ---------- */
.bcr-addons-sec .bcr-extra-addons{
    display:grid;
    grid-template-columns:56px minmax(0,1fr) 110px 118px;
    align-items:center; gap:1rem;
    padding:1.1rem 0;
    border-bottom:1px solid var(--border-light-color);
}
.bcr-addons-sec .bcr-extra-addons:last-child{ border-bottom:0; }

.bcr-addons-sec .bcr-addons-icon{
    width:46px; height:46px; border-radius:var(--border-radius-xs);
    background:var(--global-color); color:var(--theme-color-2);
    display:grid; place-items:center; font-size:1.25rem;
}
.bcr-addons-sec .bcr-addons-name{ font-weight:600; font-size:.97rem; margin:0 0 .2rem; }
.bcr-addons-sec .bcr-addons-desc{ color:var(--grey-color); font-size:.86rem; margin:0; line-height:1.45; }
.bcr-addons-sec .bcr-addons-link{
    color:var(--theme-color-2); font-size:.86rem;
    text-decoration:underline; text-underline-offset:2px;
}
.bcr-addons-sec .bcr-addons-link:hover{ color:var(--theme-color-1); }


.bcr-addons-sec .bcr-addons-price{ text-align:center; line-height:1.1; }
.bcr-addons-sec .bcr-addons-price .bcr-addons-amount{font-size: 20px;font-weight: 600;color: var(--theme-color-1);}
.bcr-addons-sec .bcr-addons-price .bcr-addons-cur{font-size:.85rem;font-weight:600;vertical-align:super;margin-right: 4px;color: var(--theme-color-2);}
.bcr-addons-sec .bcr-addons-price .bcr-addons-unit{
    display:block; font-size:.7rem; letter-spacing:.04em;
    color:var(--grey-color); text-transform:uppercase; margin-top:.15rem;
}




/* add / added toggle */
.bcr-addons-sec .bcr-btn-addons{
    display:inline-flex; align-items:center; gap:.4rem;
    background:none; border:0; padding:.35rem .5rem;
    color:var(--theme-color-1); font-weight:600; font-size:.9rem;
    letter-spacing:.02em;
}
.bcr-addons-sec .bcr-btn-addons i{ font-size:1.2rem; color:var(--grey-color); }
.bcr-addons-sec .bcr-btn-addons:hover i{ color:var(--theme-color-2); }
.bcr-addons-sec .bcr-btn-addons.is-added{ color:var(--theme-color-2); }
.bcr-addons-sec .bcr-btn-addons.is-added i{ color:var(--theme-color-2); }

.bcr-addons-sec .included-badge{
    width:30px; height:30px; border-radius:50%;
    background:var(--theme-color-1); color:var(--white-color);
    display:grid; place-items:center; font-size:.95rem;
}

/* stepper */
.bcr-addons-sec .bcr-stepper{ text-align:center; }
.bcr-addons-sec .bcr-stepper-controls{ display:flex; align-items:center; justify-content:center; gap:.55rem; }
.bcr-addons-sec .bcr-step-btn{
    width:26px;
    height:26px;
    border-radius:50%;
    padding:0;
    border: 1.5px solid var(--theme-color-1);
    background:transparent;
    color: var(--theme-color-1);
    display:grid;
    place-items:center;
    font-size:.95rem;
}
.bcr-addons-sec .bcr-step-btn:hover:not(:disabled){ background:var(--theme-color-2); color:var(--white-color); }
.bcr-addons-sec .bcr-step-btn:disabled{ opacity:.35; }
.bcr-addons-sec .bcr-step-value{ min-width:16px; font-weight:600; }
.bcr-addons-sec .bcr-stepper-label{
    display:block; font-size:.7rem; letter-spacing:.04em;
    color:var(--grey-color); text-transform:uppercase; margin-top:.3rem;
}

.bcr-form-check-input:checked {
    background-color: var(--theme-color-1);
    border-color: var(--theme-color-1);
}

/* Bcr Car Info Details Sec */
.bcr-car-info-details-sec .bcr-car-info-grid{
    display: grid;
    gap: 25px;
}
.bcr-car-info-details-sec h1{
    font-size: 30px;
}
.bcr-car-info-details-sec h2{
    font-size: 24px;
}
.bcr-car-info-details-sec .bcr-title-bar{
    gap: 15px;
    border-radius:var(--border-radius-md);
    padding: 15px 32px;
}
.bcr-car-info-details-sec .bcr-title-bar h1{
    font-size: clamp(24px, 3vw, 32px);
}
.bcr-car-info-details-sec .bcr-title-bar .bcr-price{
    margin:.25rem 0 0;
    color:var(--grey-color);
    font-size:1rem;
    display:flex;
    align-items:center;
    gap:8px;
}
.bcr-car-info-details-sec .bcr-title-bar .bcr-price strong{
    color:var(--theme-color-1);
    font-weight:600;
    font-size:24px;
    line-height:30px;
}
.bcr-car-info-details-sec .bcr-car-info-card{
    background:var(--white-color);
    border-radius:var(--border-radius-md);
    box-shadow:var(--box-shadow);
    padding:2rem;
}
.bcr-car-info-details-sec .bcr-card-narrow{
    color:var(--grey-color);
}
.bcr-car-info-details-sec .bcr-car-overview-wrapper{
    background:var(--global-color);
    border-radius:var(--border-radius-md);
    padding:2rem;
}
.bcr-car-info-details-sec .bcr-car-overview-wrapper .bcr-spec-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0,1fr));
    gap: 20px 15px;
}
.bcr-car-info-details-sec .bcr-car-overview-wrapper .bcr-spec{
    display:flex;
    align-items:center;
    gap:.9rem;
}
.bcr-car-info-details-sec .bcr-car-overview-wrapper .bcr-spec-ico{
    width:44px;
    height:44px;
    flex:0 0 44px;
    display:grid;
    place-items:center;
    border-radius:var(--border-radius-xs);
    background:var(--white-color);
    color:var(--theme-color-2);
    font-size:1.3rem;
    border-bottom:3px solid var(--theme-color-2);
    box-shadow:var(--box-shadow);
}
.bcr-car-info-details-sec .bcr-car-overview-wrapper .bcr-spec .label{
    display:block;
    font-size:.78rem;
    letter-spacing:.03em;
    text-transform:uppercase;
    color:var(--grey-color);
}
.bcr-car-info-details-sec .bcr-car-overview-wrapper .bcr-spec .value{
    font-weight:600;
    font-size:1rem;
}
.bcr-car-info-details-sec .bcr-card-cover-gallery{
    display:grid;
    grid-template-columns:repeat(4, minmax(0,1fr));
    gap:1rem;
}
.bcr-car-info-details-sec .bcr-card-cover-gallery a{
    border-radius:var(--border-radius-sm);
    overflow:hidden;
    background:var(--white-color);
    transition:border-color .2s ease, transform .2s ease;
}
.bcr-car-info-details-sec .bcr-card-cover-gallery a:hover{
    border-color:var(--theme-color-2);
    transform:translateY(-3px);
}
.bcr-car-info-details-sec .bcr-card-cover-gallery a.is-feature{
    grid-column:span 2;
    grid-row:span 2;
}
.bcr-car-info-details-sec .bcr-card-cover-gallery img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.bcr-car-info-details-sec .bcr-card-benefit-wrapp .bcr-benefit-list{
    display:grid;
    gap:20px;
    color:var(--grey-color);
}
.bcr-car-info-details-sec .bcr-card-benefit-wrapp .bcr-benefit-list li{
    display:flex;
    gap:1rem;
    padding-bottom:20px;
    border-bottom:1px solid var(--border-light-color);
}
.bcr-car-info-details-sec .bcr-card-benefit-wrapp .bcr-benefit-list li:last-child{
    border-bottom:0;
    padding-bottom:0;
}
.bcr-car-info-details-sec .bcr-card-benefit-wrapp .bcr-benefit-ico{
    width:38px;
    height:38px;
    flex:0 0 38px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:var(--global-color);
    color:var(--theme-color-2);
    font-size:1.15rem;
}
.bcr-car-info-details-sec .bcr-card-benefit-wrapp .bcr-benefit-ico svg {
    width: 28px;
    height: 28px;
}
.bcr-car-info-details-sec .bcr-card-benefit-wrapp h3{
    margin-bottom:6px;
    font-weight:600;
    font-size:18px;
}
.bcr-car-info-details-sec .bcr-card-benefit-wrapp p{
    margin:0;
}

.bcr-filter-btn{
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 14px;
    z-index: 999;
    padding: 0 12px;
    min-height: 38px;
    border-radius: var(--border-radius-xs);
}

.bcr-offcanvas-fiters{
    height:60vh !important;
}
.bcr-offcanvas-fiters .bcr-filter-card .bcr-form-check-list{
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.bcr-offcanvas-fiters .bcr-filter-card{
    box-shadow: none;
    padding: 0;
}






@media (max-width: 1199px){
    .bcr-addons-main-wrapp{
        grid-template-columns: 320px auto;
    }
    .bcr-addons-sec .bcr-extra-addons {
        grid-template-columns: 56px minmax(0, 1fr) 70px 80px;
    }
}
@media (max-width: 991px){
    .bcr-topbar-right {
        gap: 15px;
    }
    .bcr-addons-main-wrapp {
        grid-template-columns: 200px auto;
        gap: 20px;
    }
    .bcr-addons-sec .bcr-trip-col-wrap,
    .bcr-addons-sec .bcr-car-features-list{
        grid-template-columns: auto;
        gap: 10px;
    }
    .bcr-addons-sec .bcr-main-panel{
        padding: 15px;
    }
}
@media (max-width: 767px){
    .bcr-topbar{
        padding: 12px;
    }
    .bcr-addons-main-wrapp {
        grid-template-columns: auto;
    }
    .bcr-addons-sec .bcr-trip-col-wrap,
    .bcr-addons-sec .bcr-car-features-list{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .bcr-addons-sec .bcr-extra-addons {
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 15px 6px;
    }
    .bcr-addons-sec .bcr-addons-price {
        grid-column: 1 / 2;
    }

    .bcr-addons-sec .bcr-addons-extra-action {
        grid-column: 2 / 3;
        text-align: end;
    }
    .bcr-addons-sec .bcr-main-panel .bcr-car-img img{
        max-width: 150px;
    }
    .bcr-car-info-details-sec .bcr-car-info-card{
        padding: 1.25rem;
    }
    .bcr-car-info-details-sec .bcr-car-overview-wrapper{
        padding:1rem;
    }
    .bcr-car-info-details-sec .bcr-car-overview-wrapper .bcr-spec-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }
    .bcr-car-info-details-sec .bcr-card-cover-gallery{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}