
/* Base */

:root {
    --primary: #07b44a;
    --white: #fff;
    --black: #000;
  }

*{
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}
body{
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    line-height: 1.4;
    background: #000;
}
body.hideOverflow { 
    overflow: hidden; 
}
a{
    text-decoration: none;
}
.container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h2{
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 12px;
}

@media (max-width: 991px) {
    .container{
        padding: 0 24px;
    }
    h2{
        font-size: 24px;
    }
}

/* Header */

.bwHeader{
    width: 100%;
    border-radius: 70px;
    position: fixed;
    top: 20px;
    left: auto;
    right: auto;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
}
.bwHeaderInner{
    width: 100%;
    height: 60px;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 12px 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(25, 31, 36, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 100px;
}
.bwLogo{
    width: 200px;
    height: 44px;
}
.bwLogo img{
    max-width: 100%;
    width: 100%;
    height: 44px;
    object-fit: contain;
    object-position: left;
}
.bwNav{
    display: flex;
    align-items: center;
    gap: 32px;
}
.bwNav a{
    color: var(--white);
    font-size: 14px;
    font-weight: 300;
    transition: all 0.3s;
}
.bwNav a:hover{
    color: var(--primary);
}
a.bwNavCta{
    background: var(--primary);
    color: var(--white);
    height: 36px;
    padding: 0 16px;
    text-align: center;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
a.bwNavCta:hover{
    color: var(--white);
}
.bwDrawer{
    display: none;
}
/* Burger button */
.bwBurger{
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    display: none;
  }
  
  /* Bars */
  .bwBurger span{
    position: absolute;
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--white);
    transition: transform .25s ease, opacity .2s ease, top .25s ease;
  }
  .bwBurger span:nth-child(1){ top: 13px; }
  .bwBurger span:nth-child(2){ top: 20px; }
  .bwBurger span:nth-child(3){ top: 27px; }
  
  /* Turn into X (toggle either class or aria-expanded) */
  .bwBurger.is-open span:nth-child(1),
  .bwBurger[aria-expanded="true"] span:nth-child(1){
    top: 20px; transform: rotate(45deg);
  }
  .bwBurger.is-open span:nth-child(2),
  .bwBurger[aria-expanded="true"] span:nth-child(2){
    opacity: 0;
  }
  .bwBurger.is-open span:nth-child(3),
  .bwBurger[aria-expanded="true"] span:nth-child(3){
    top: 20px; transform: rotate(-45deg);
  }
  

@media (max-width: 991px) {
    .bwNav{
        display: none;
    }
    .bwBurger{
        display: inline-flex;
      }
    .bwDrawer{
        width: 80%;
        max-width: 300px;
        height: 100vh;
        position: fixed;
        top: 0;
        left: -120%;
        background: rgba(25, 31, 36, 0.8);
        backdrop-filter: blur(10px);
        z-index: 9999;
        display: flex;
        color: #7E878E;
        transition: all 0.3s;
        padding: 24px;
        overflow-y: auto;
    }
    .bwDrawer.is-open{
        left: 0;
    }
}

/* Banner */

.bwBanner{
    width: 100%;
    height: 100vh;
    position: relative;
}
.bwBannerImg{
    width: inherit;
    height: inherit;
}
.bwBannerImg img{
    width: inherit;
    height: inherit;
    object-fit: cover;
}
.bwBannerHero{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    color: var(--white);
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
}
.bwBannerOverlay{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 20vh;
    background: var(--black);
    background: linear-gradient(360deg, rgba(0, 0, 0, 1) 0%, rgba(237, 221, 83, 0) 100%);
}
.bwBannerHero h1{
    max-width: 800px;
    font-size: 70px;
    margin: 60px 0 32px 0;
    line-height: 1.2;
}
.bwBannerHero h1 span{
    font-size: 30px;
}
a.bannerNavCta{
    background: var(--primary);
    color: var(--white);
    height: 48px;
    padding: 0 32px;
    text-align: center;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
@media (max-width: 991px) {
    .bwBannerHero h1{
        font-size: 50px;
    }
    .bwBannerHero h1 span{
        font-size: 20px;
    }
}

/* Main */

.bwChoose{
    width: 100%;
    padding: 70px 0 70px 0;
    color: var(--white);
    text-align: center;
    max-width: 1170px;
    margin: 70px auto 0 auto;
    position: relative;
    border-radius: 70px;
    background: rgba(25, 31, 36, 0.8);
    backdrop-filter: blur(10px);
}
.bwChoose h2{
    font-size: 45px;
}
.bwChoose p{
    font-size: 18px;
    margin: 0;
}
.bwServiceCards{
    width: 100%;
    max-width: 900px;
    margin: 32px auto 32px auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}
.bwServiceCard{
    width: 100%;
    padding: 12px 24px;
    border-radius: 32px;
    background: var(--white);
    color: var(--black);
    font-weight: 500;
}
.bwCar{
    max-width: 700px;
    margin: 70px auto -170px auto;
    position: relative;
}
.bwCar img{
    width: 100%;
}
.bwAbout{
    width: 100%;
    padding: 140px 0 70px 0;
    text-align: center;
    color: var(--white);
}
.bwAbout p{
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.6;
}

.bwQuickFacts{
    max-width: 700px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
    text-align: left;
    display: flex;
}

.bwQuickFacts li{
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 16px;
}

.bwQuickFacts li:before{
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.bwQuickFacts li:last-child{
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .bwChoose h2 {
        font-size: 32px;
    }
    .bwChoose p {
        font-size: 14px;
    }
    .bwChoose {
        padding: 32px 0 45px 0;
        margin: -32px auto 0 auto;
        border-radius: 32px;
        background: #000;
    }
    .bwCar {
        margin: 70px auto -160px auto;
        padding: 0 32px;
    }
    .bwServiceCards{
        grid-template-columns: 1fr 1fr;
    }
    .bwAbout p {
        margin: 0 auto 40px;
        font-size: 14px;
    }
    .bwQuickFacts {
        flex-direction: column;
    }
    .bwQuickFacts li {
        margin-bottom: 12px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
   .bwServiceCards {
        grid-template-columns: 1fr;
    }
}

/* Services */

.bwServices {
    width: 100%;
    padding: 70px 0;
    text-align: center;
    background: var(--black);
    color: var(--white);
}

.bwServicesIntro {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: #7E878E;
}

.bwServicesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: left;
}

.bwServiceItem {
    background: linear-gradient(rgba(51, 62, 70, 0.6) 0%, rgba(21, 26, 30, 0.6) 100%) 0% 0% / cover;
    padding: 30px;
    border-radius: 32px;
    transition: transform 0.3s ease;
    color: var(--white);
}

.bwServiceItem:hover {
    transform: translateY(-5px);
}

.bwServiceItem h3 {
    margin: 0 0 15px;
    font-size: 20px;
}

.bwServiceItem p {
    margin: 0;
    font-size: 16px;
}


.bwServiceItem i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
    transition: transform 0.3s ease;
}

.bwServiceItem:hover i {
    transform: translateX(15px);
}

@media (max-width: 991px) {
    .bwServices {
        padding: 0;
    }
    .bwServicesIntro {
        margin: 0 auto 32px;
        font-size: 14px;
    }
    .bwServiceItem {
        padding: 24px;
        border-radius: 24px;
    }
    .bwServiceItem i {
        font-size: 24px;
    }
    .bwServiceItem h3 {
        font-size: 16px;
    }
    .bwServiceItem p {
        font-size: 14px;
    }
}

/* Testimonials */

.bwTestimonials {
    width: 100%;
    padding: 70px 0;
    background: var(--black);
    color: var(--white);
    text-align: center;
}

.bwTestimonialsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.bwTestimonialItem {
    background: rgba(25, 31, 36, 0.8);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 32px;
    position: relative;
    transition: transform 0.3s ease;
}

.bwTestimonialItem:hover {
    transform: translateY(-5px);
}

.bwTestimonialItem i {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 20px;
}

.bwTestimonialItem blockquote {
    margin: 0 0 20px;
    font-size: 18px;
    line-height: 1.6;
    font-style: italic;
}

.bwTestimonialItem cite {
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
    font-size: 14px;
}

@media (max-width: 991px) {
    .bwTestimonials {
        padding: 32px 0;
    }
    .bwTestimonialsGrid {
        margin-top: 32px;
    }
    .bwTestimonialItem {
        padding: 24px;
        border-radius: 24px;
    }
    .bwTestimonialItem blockquote {
        font-size: 14px;
    }
    .bwTestimonialItem cite {
        font-size: 12px;
    }
}

/* Contact */

.bwContact {
    width: 100%;
    padding: 70px 0;
    background: #111315;
    color: #7E878E;
    border-top-left-radius: 70px;
    border-top-right-radius: 70px;
}

.bwContactGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.bwContactInfo {
    padding-right: 20px;
}

.bwContactMap {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 32px;
    overflow: hidden;
}

.bwContactMap iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: none;
}
.bwContactInfo h2 {
    margin-bottom: 10px;
    color: var(--white);
}

.bwContactCta {
    font-size: 20px;
    margin-bottom: 40px;
    color: #7E878E;
}

.bwContactDetails {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.bwContactItem {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.bwContactItem i {
    color: var(--primary);
    font-size: 20px;
    margin-top: 3px;
}

.bwContactItem p {
    margin: 0;
    line-height: 1.6;
}
.bwContactItem p span{
    color: var(--primary);
}

.bwContactItem a {
    color: #7E878E;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bwContactItem a:hover {
    color: var(--primary);
}

@media (max-width: 991px) {
    .bwContactGrid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .bwContactInfo {
        padding-right: 0;
    }
    
    .bwContactMap {
        min-height: 300px;
        border-radius: 24px;
    }
    .bwContact {
        padding: 45px 0;
        border-top-left-radius: 32px;
        border-top-right-radius: 32px;
    }
    .bwContactCta {
        font-size: 14px;
        margin-bottom: 24px;
    }
    .bwContactItem i {
        font-size: 16px;
        margin-top: 5px;
    }
    .bwContactItem p {
        font-size: 14px;
    }
}

/* Footer */

.bwFooter {
    width: 100%;
    padding: 25px 0;
    background: #111315;
    color: #7E878E;
}

.bwFooterContent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.bwCopyright {
    margin: 0;
    font-size: 14px;
}

.bwFooterNav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bwFooterNav a {
    color: #7E878E;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bwFooterNav a:hover {
    color: var(--primary);
}

.bwFooterNav span {
    color: #7E878E;
}

@media (max-width: 991px) {
    .bwFooter {
        padding: 0 0 24px 0;
    }
    .bwFooterContent {
        flex-direction: column;
        text-align: center;
    }
    
    .bwFooterNav {
        justify-content: center;
        flex-wrap: wrap;
    }
    .bwCopyright {
        font-size: 12px;
    }
    .bwFooterNav a {
        font-size: 12px;
    }
}
