@import url('https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&family=Inconsolata:wght@200..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Sora:wght@100..800&display=swap');

:root {
    --h1-home-font-size: 50px;
    --h1-home-font-family: 'Epilogue', sans-serif;
    --h1-home-font-weight: 400;

    --h2-home-font-size: 48px;
    --h2-home-font-family: 'Epilogue', sans-serif;
    --h2-home-font-weight: 400;
    --h2-home-line-height: 60px;

    --h3-home-font-size: 22px;
    --h3-home-font-family: 'Epilogue', sans-serif;
    --h3-home-font-weight: 500;
    --h3-home-line-height: 62px;

}

h1 {
    font-size: var(--h1-home-font-size);
    font-family: var(--h1-home-font-family);
    font-weight: var(--h1-home-font-weight);
    color: #fff;
    margin-bottom: 30px;
}

h2,
h2.h2-title {
    font-size: var(--h2-home-font-size);
    font-family: var(--h2-home-font-family);
    font-weight: var(--h2-home-font-weight);
    line-height: var(--h2-home-line-height);
    color: #FFFFFF;
    margin-bottom: 30px;
}

h3 {
    font-size: var(--h3-home-font-size);
    font-family: var(--h3-home-font-family);
    font-weight: var(--h3-home-font-weight);
    line-height: var(--h3-home-line-height);
    color: #FFFFFF;
    ;
}

section {
    margin: 55px 0;
}

/* Hero Banner */
#hero {
    margin: 0;
}

/* About Service */
#about-service p,
#limo-service p {
    font-family: Sora;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    color: #A6A6A6;
    line-height: 28px;
}

#primary-button {
    font-family: Inconsolata;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
    color: #BFA37C;
    width: 334px;
    height: 61px;
    opacity: 1;
    border: 1px solid #BFA37C;
    display: grid;
    align-items: center;
    transition: 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    margin: 30px auto;
}




.btn-hover::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #BFA37C;
    transition: right 0.3s ease-in-out;
    z-index: -1;
}

.btn-hover:hover::before {
    right: 0;
    /* Remove opacity */
}


.btn-hover:hover {
    color: #000000 !important;
}


/* Why Choose Us */
ul.why-choose-list-one {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 50px;
}

ul.why-choose-list-two {
    display: flex;
    justify-content: center;
    align-items: top;
    text-align: center;
    gap: 50px;
}

ul.why-choose-list-two li {
    width: calc(60% / 2 - 20px);
    margin: 10px;
}

ul.why-choose-list-one li,
ul.why-choose-list-two li {
    padding: 10px;
}

ul.why-choose-list-one li svg {
    width: 60px;
    height: 80px;
}

ul.why-choose-list-one li p,
ul.why-choose-list-two li p {
    font-family: Sora;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    vertical-align: middle;
    color: #FFFFFF;
}

ul.why-choose-list-one li:nth-child(2),
.why-choose-list-two li:first-child {
    position: relative;
}

ul.why-choose-list-one li:nth-child(2)::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 120px;
    background: #BFA37C;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
}

ul.why-choose-list-one li:nth-child(2)::after,
.why-choose-list-two li:first-child::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 120px;
    background: #BFA37C;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
}

#why-choose h2 {
    text-align: center;
}



/* ---------- Modern Accordion UI ---------- */
.limo-services-section {
    padding: 40px 0;
}

.section-title {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Item */
.accordion-item {
    border-radius: 12px;
    /* margin-bottom: 12px; */
    overflow: hidden;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

/* Hover lift */
.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
}

/* Header */
.accordion-header,
.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 24px 0px 24px 0;
    border: none;
    text-align: left;
    font-family: Epilogue;
    font-weight: 500;
    font-size: 22px;
    line-height: 30px;
}

.faq-header {
    font-weight: 400;
}

/* Icon */
.accordion-icon,
.faq-icon {
    display: flex;
    align-items: center;
    margin-left: 12px;
    width: 13px;
    height: 13px;
}

.icon-plus-minus,
.faq-plus-minus {
    width: 13px;
    height: 13px;
    display: block;
}

.icon-line,
.faq-line {
    fill: #ffffff;
    transition: transform 220ms ease, opacity 220ms ease;
    transform-origin: center;
}

/* When active: hide vertical line to form minus; we use transforms for smoothness */
.accordion-item.active .icon-line.vertical,
.faq-item.open .faq-line.vertical {
    opacity: 0;
    transform: scaleY(0.1);
}

.accordion-item.active .icon-line.horizontal,
.faq-item.open .faq-line.horizontal {
    transform: translateY(0);
}

/* Content area: smooth height transition */
.accordion-content,
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 400ms cubic-bezier(.2, .9, .2, 1), padding 300ms ease;
    padding: 0 20px 0 0;
}

/* When active, we will set max-height via JS to content.scrollHeight */
.accordion-item.active .accordion-content {
    padding: 18px 20px 18px 0;
    margin-bottom: 12px;
}

/* Inner layout */
.accordion-inner,
.faq-inner {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.rating {
    min-width: 120px;
}

.service-content {
    flex: 0.5 0.5 400px;
}

.service-image {
    width: 366px;
    flex: 0 0 366px;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Stars styling */
.service-rating {
    display: inline-block;
    line-height: 1;
    font-size: 20px;
    margin-bottom: 8px;
}

.service-star--filled {
    color: #f5c518;
}

.service-star--empty {
    color: #ddd;
}

.faq-inner p {
    font-family: Sora;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.rating-service {
    width: 60%;
}

/* Responsive */
@media (max-width: 768px) {
    .accordion-inner {
        flex-direction: column;
    }

    .service-image {
        width: 100%;
        flex-basis: 100%;
    }
}


.accordion-item .accordion-content {
    height: 0;
    overflow: hidden;
}

.accordion-item.active .accordion-content {
    height: auto;
}

#limo-services .wrap h2.h2-title {
    max-width: 768px;
    width: 100%;
}

.accordion-item,
.faq-item {
    border: 1px solid #545A60;
    border-left: none;
    border-radius: 0;
    border-right: none;
}

.faq-item:not(:first-of-type) {
    border-top: 0;
}

.service-content p {
    font-family: Sora;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    max-width: 712px;
    width: 100%;
    color: #A6A6A6;
}




/* Premium Fleet */
/* Grid */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Item */
.fleet-item {
    position: relative;
    overflow: hidden;
}

/* Wrapper */
.thumb-wrapper {
    position: relative;
}

/* Image */
.thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    margin-bottom: 80px;
}

.thumb {
    min-height: 524px;
    background-image: url('../images/thumb-bg.png');
    background-repeat: no-repeat;
    background-position: top;
    background-size: 100% 100%;
    display: flex;
    align-items: end;
}

.fleet-item h3 {
    text-align: center;
}

/* Hover Panel */
.fleet-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    border-radius: 0px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease-in-out, visibility 0.35s ease-in-out;
    overflow: hidden;
    display: grid;
    align-items: center;
}

.fleet-hover .wrap {
    max-width: 271px;
    width: 100%;
    margin: 0 auto;
}

/* Show overlay on hover (Fade In) */
.fleet-item:hover .fleet-hover {
    opacity: 1;
    visibility: visible;
}

#fleet h2.h2-title {
    text-align: center;
}

/* Content styling */
.fleet-hover h3 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}

.fleet-categories,
.fleet-rating,
.fleet-desc,
.fleet-price {
    margin-bottom: 12px;
}

/* Buttons */
.fleet-buttons {
    margin-top: 15px;
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    gap: 10px;
}

.fleet-buttons a {
    max-width: 204px;
    width: 100%;
    text-align: center;
    height: 59px;
    font-family: Inconsolata;
    font-weight: 500;
    font-size: 15px;
    line-height: 18.13px;
    border-radius: 0px;
    display: grid;
    align-items: center;
    transition: 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid #BFA37C;
    background: transparent;
    color: #BFA37C;
    display: flex;
    justify-content: center;
}


.fleet-price-wrap .currency {
    vertical-align: top;
    font-family: Sora;
    font-weight: 500;
    font-style: Medium;
    font-size: 23.62px;
    line-height: 100%;
    text-align: center;
    color: #BFA37C;
}

.fleet-price-wrap .amount {
    font-family: Sora;
    font-weight: 500;
    font-style: Medium;
    font-size: 45.84px;
    line-height: 100%;
    text-align: center;
    color: #BFA37C;
}

.hour-basis {
    font-family: Epilogue;
    font-weight: 500;
    font-style: Medium;
    font-size: 18.56px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #BFA37C;
}

.fleet-buttons .btn-secondary {
    background: #e9e9e9;
}

.fleet-buttons .btn-outline {
    background: transparent;
    border: 1px solid #BFA37C;
    color: #BFA37C;
}

.fleet-hover .wrap p {
    font-family: Sora;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: #A6A6A6;
}


/* Responsive */
@media(max-width: 992px) {
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media(max-width: 600px) {
    .fleet-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}





/*  Testimonials */
#testimonials h2.h2-title {
    max-width: 720px;
    width: 100%;
}

.testimonial-slide .wrap {
    padding: 0 40px;
    border-left: 1px solid #504B40;
}

.testimonial-slide .wrap h3.testimonial-title {
    font-family: Epilogue;
    font-weight: 500;
    font-size: 22px;
    line-height: 100%;
    color: #ffffff;
}

.testimonial-slide .wrap .testimonial-rating {
    color: #BFA37C;
}

.testimonial-slide .wrap .testimonial-review p,
.testimonial-slide .wrap .testimonial-name {
    font-family: Sora;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: #A6A6A6;
    padding-top: 20px;
}

.testimonial-slide .wrap .testimonial-name {
    color: #ffffff;
    font-weight: 600;
}

#testimonials .slick-dots li button::before {
    width: 12px;
    height: 12px;
    color: #A6A6A6 !important;
    opacity: 1 !important;
    font-size: 14px;
}

#testimonials .slick-dots li.slick-active button::before {
    color: #BFA37C !important;
}

.testimonial-slider {
    margin: 100px 0 55px;
}

#testimonials ul.slick-dots {
    bottom: -50px;
}

#testimonials ul.slick-dots li {
    margin: 0;
}

/* FAQ */
#faq-section {
    position: relative;
    z-index: 1;
    padding: 55px 0px;
}

#faq-section .faq-accordion {
    max-width: 1055px;
    width: 100%;
    margin: 25px 0 0 auto;
}

#faq-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 59.03%, rgba(0, 0, 0, 0.9) 100%);
    top: 0;
    left: 0;
    z-index: -1;
}

#faq-section h2.h2-title {
    position: relative;
}

#faq-section h2.h2-title::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-bottom: 1px solid #545A60;
    bottom: -26px;
}

.faq-item:first-child {
    border-top: 0;
}


/* Contact */
.info-item span.info-icon,
.info-item ul {
    display: inline;
    width: fit-content;
}

.info-item ul li span,
.info-item ul li a {
    font-family: Sora;
    font-weight: 500;
    font-size: 18.29px;
    line-height: 32px;
    letter-spacing: 0%;
    color: #FFFFFF;
}

.contact-info {
    margin: 55px 0;
}

#contact .wrap p {
    font-family: Sora;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
}

.contact-form form input,
.contact-form form textarea {
    background: transparent !important;
    border-bottom: 1px solid #545A60 !important;
    width: 100% !important;
    max-width: 100% !important;
}

.contact-form form input::placeholder,
.contact-form form textarea::placeholder {
    color: #fff !important;
    font-family: Inconsolata;
    font-weight: 500;
    font-size: 20px;
    line-height: 18.13px;
    opacity: 1 !important;
}

#contact .contact-form button {
    font-family: Inconsolata !important;
    font-weight: 500 !important;
    font-size: 15px !important;
    line-height: 18.13px;
    letter-spacing: 22%;
    text-transform: uppercase !important;
    color: #BFA37C !important;
    border: 1px solid #BFA37C !important;
    background: transparent !important;
    border-radius: 0px !important;
    transition: 0.3s ease-in-out !important;
    position: relative !important;
    overflow: hidden !important;
    margin-top: 20px !important;
    z-index: 1 !important;
    max-width: 182px;
    width: 100%;
    height: 59px;
}

.contact-form button:before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    /* Start fully to the right (hidden) */
    width: 100%;
    height: 100%;
    background-color: #BFA37C;
    transition: right 0.3s ease-in-out;
    z-index: -1;
}

.contact-form button:hover:before {
    right: 0;
}

#contact .contact-form button:hover {
    color: #000000 !important;
}












/* Responsive */
@media(min-width: 1200px) and (max-width:1399px) {

    #why-choose ul.why-choose-list-one li h3,
    #why-choose ul.why-choose-list-two li h3 {
        font-size: 18px !important;
        line-height: 25px !important;
        height: auto;
    }
}

@media(max-width: 1200px) and (min-width: 992px) {
    :root {
        --h1-home-font-size: 40px;
        --h2-home-font-size: 36px;
        --h2-home-line-height: 48px;
    }

    h3 {
        font-size: 20px !important;
    }

    a {
        font-size: 14px !important;
    }

    p {
        font-size: 14px !important;
    }

    li {
        font-size: 14px !important;
    }

    /* Hero */
    #hero {
        margin: 25px 0;
    }

    ul.why-choose-list-one li h3,
    ul.why-choose-list-two li h3 {
        line-height: 30px !important;
        height: 60px;
    }
}

@media(max-width: 991px) and (min-width: 768px) {
    :root {
        --h1-home-font-size: 35px;
        --h2-home-font-size: 32px;
        --h2-home-line-height: 44px;
    }

    h3 {
        font-size: 18px !important;
    }

    a {
        font-size: 13px !important;
    }

    p {
        font-size: 13px !important;
    }

    li {
        font-size: 13px !important;
    }

    /* Hero */
    #hero {
        margin: 20px 0;
    }

    ul.why-choose-list-one li h3,
    ul.why-choose-list-two li h3 {
        line-height: 28px !important;
        height: 56px;
    }

    ul.why-choose-list-two li {
        width: calc(100% / 2 - 20px);
        margin: 10px;
    }

    .service-content {
        flex: none;
    }
}

@media(max-width: 767px) {
    :root {
        --h1-home-font-size: 32px;
        --h2-home-res-font-size: 28px;
        --h2-home-line-height: 36px;
    }

    h2.h2-title {
        font-size: var(--h2-home-res-font-size) !important;
        line-height: 40px !important;
    }

    h3 {
        font-size: 22px !important;
    }

    a {
        font-size: 14px !important;
    }

    p {
        font-size: 14px !important;
        line-height: 24px !important;
    }

    li {
        font-size: 14px !important;
    }

    /* Hero */
    #hero {
        margin: 15px 0;
    }

    ul.why-choose-list-one {
        grid-template-columns: repeat(1, 1fr);
    }

    ul.why-choose-list-one li h3,
    ul.why-choose-list-two li h3 {
        line-height: 30px !important;
        height: auto;
    }

    ul.why-choose-list-two {
        flex-direction: column;
        align-items: center;
    }

    ul.why-choose-list-two li {
        width: 100%;
        margin: 10px 0;
    }

    .service-content {
        flex: none;
    }

    ul.why-choose-list-one li:nth-child(2)::before,
    ul.why-choose-list-one li:nth-child(2)::after,
    .why-choose-list-two li:first-child::after {
        display: none;
    }

    .fleet-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .fleet-grid .fleet-item h3 {
        text-align: center;
        line-height: 30px;
        margin: 15px 0;
    }

    .rating-service {
        width: 100%;
    }

    .accordion-header,
    .faq-header {
        font-size: 18px;
        line-height: 30px;
    }
}

@media(max-width:576px) {

    h2,
    .h2-title {
        margin-bottom: 10px !important;
        line-height: 50px !important;
    }

    #nsc-primary #hero .row,
    #nsc-primary #hero .row div {
        height: 294px !important;
    }

    #limo-service {
        padding: 10px !important;
    }

    #why-choose h2 {
        max-width: 310px;
        width: 100%;
        margin: 0 auto 30px !important;
    }

    ul.why-choose-list-one h3,
    ul.why-choose-list-two h3 {
        margin: 30px 0 20px;
    }

    #why-choose {
        margin: 0 !important;
        padding-bottom: 0 !important;
    }

    .info-item ul li span {
        font-size: 14px;
    }

    span.info-icon svg {
        width: 40px;
        height: 60px;
    }

    .testimonial-slide .wrap {
        padding: 0 20px;
    }

    .limo-services-section {
        padding: 0px 0;
    }

    .page-template-nsc-contact #book-with-us .left-book img {
        height: 350px;
    }

    .accordion-header,
    .faq-header {
        line-height: 24px;
    }

    #about-service #primary-button {
        width: 100%;
    }

    #faq-section h2.h2-title::before {
        bottom: -26px;
    }

    section {
        margin: 30px 0 !important;
    }
}

@media(max-width: 425px) {
    .info-item ul li span {
        display: none;
    }
}