body {
    background-color: #111111;
}


.ltx247-content-section {
    background: #111111;
    border-bottom: 1px solid #333333;

    padding: 50px 20px 0px 20px;
    font-family: 'Poppins', sans-serif;
}

.ltx247-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.ltx247-content-block {
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.ltx247-content-block h2 {
    font-size: 35px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.ltx247-content-block h2::after {
    content: "";
    display: block;
    width: 100px;
    height: 2px;
    background: #fcf622;
    margin: 10px auto 0;
}

.ltx247-content-block p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #dddddd;
}

/* Fade In Active */
.ltx247-fade-active {
    opacity: 1;
    transform: translateY(0);
}







.apf-section {
    background: #111111;
    padding: 80px 20px;
    font-family: Arial;
    border-bottom: 1px solid #333333;
}


.apf-container {
    max-width: 1300px;
    margin: auto;
}


/* HEADER */

.apf-header {
    text-align: center;
    margin-bottom: 50px;
}


.apf-title {
    color: white;
    font-size: 34px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}


.apf-title span {
    width: 60px;
    height: 3px;
    background: #fcf622;
    display: inline-block;
}


.apf-subtitle {
    color: #9ca3af;
    max-width: 700px;
    margin: auto;
    margin-top: 15px;
    font-size: 18px;
}



/* GRID */

.apf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    padding: 0px 50px;

}



/* CARD */

.apf-card {


    border-radius: 14px;
    overflow: hidden;
    transition: .4s;
    /* border:1px solid #1f2c38; */
}


.apf-card:hover {
    border-color: #fcf622;

}



/* IMAGE */

.apf-image img {

    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 25px;

}



/* CONTENT */

.apf-content {

    padding: 20px 0px;

}



/* TOP */

.apf-top {

    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;

}


.apf-top h3 {

    color: white;
    margin: 0;
    font-size: 24px;

}


.apf-top p {

    color: #9ca3af;
    font-size: 18px;
    margin: 3px 0 0;

}



/* PRICE */

.apf-price {

    color: #fcf622;
    font-weight: bold;
    font-size: 20px;

}


.apf-price span {

    display: block;
    font-size: 18px;
    color: #9ca3af;

}



/* DESC */

.apf-desc {

    color: #9ca3af;
    font-size: 18px;
    margin-bottom: 20px;

}



/* BUTTONS */

.apf-buttons {

    display: flex;
    gap: 15px;
    align-items: center;

}


.apf-btn-main {

    background: #fcf622;
    color: #111111;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
    border: 1px solid #111111;

}


.apf-btn-main:hover {

    background: #111111;
    border: 1px solid #fcf622;
    color: #fff;
    text-decoration: none;

}



.apf-btn-outline {

    color: white;
    text-decoration: none;
    font-size: 14px;

}


.apf-btn-outline:hover {

    color: #fcf622;


}





.station-slider-section {
    background-color: #111111;
    color: white;
    padding: 60px 20px;
    font-family: Arial, sans-serif;
    text-align: center;
    border-bottom: 1px solid #333333;
}

.header-content h2 {
    color: white;
    font-size: 34px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.slider-title span {
    width: 60px;
    height: 3px;
    background: #fcf622;
    display: inline-block;
}

.header-content p {
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 40px;
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

.station-card {
    min-width: calc(33.333% - 14px);
    /* Shows 3 cards at a time */
    position: relative;
    height: 550px;
    overflow: hidden;
}

.station-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transition: 0.3s;
}

.station-card:hover img {
    filter: brightness(0.5);
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    text-align: left;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.card-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.card-overlay p {
    font-size: 18px;
    color: #eee;
    margin-bottom: 15px;
}

.card-overlay a {
    color: #fcf622;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Navigation */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fcf622;
    border: none;
    color: #111111;
    padding: 15px;
    cursor: pointer;
    z-index: 10;
}

.nav-btn:hover {
    background: #111111;
    color: #fcf622;
    border: 1px solid #fcf622;
}

.nav-btn:hover {
    background: transparent;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

@media (max-width: 768px) {
    .station-card {
        min-width: 100%;
    }
    .ltx247-content-section{
        padding: 20px;
    }
}





/* Reset & Base */
.fleet-wrap {
    background-color: #111111;
    color: #ffffff;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.fleet-container {
    display: flex;
    height: 650px;
    width: 100%;
    border-bottom: 1px solid #333333;
}

/* Column Design */
.fleet-col {
    display: flex;
    flex: 0 0 150px;
    /* Closed width */
    border-right: 1px solid #222;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
}

.fleet-col.active {
    flex: 1;
    /* Fully expanded */
    cursor: default;
    background-color: #111111;
    border-right: 1px solid #333;
    border-left: 1px solid #333;
}

/* Side Bar (Vertical Title) */
.side-bar {
    width: 100px;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 50px;
    justify-content: center;

}

.vert-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 50px;
    font-weight: 900;
    letter-spacing: 4px;
    color: #444444;
    transition: color 0.3s;
}

.active .vert-text {
    color: #fcf622;
    /* Acccent color when open */
}

/* Expanded Content Area */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    padding: 40px;
}

.active .main-content {
    opacity: 1;
    visibility: visible;
}

.content-inner {
    max-width: 700px;
    text-align: left;
}

.category-label {
    color: #fcf622;
    font-size: 14px;
    letter-spacing: 2px;
}

.content-inner h2 {
    font-size: 60px;
    margin: 10px 0 20px;
}

.fleet-img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.content-inner p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 18px;
}

/* The Yellow Button */
.fleet-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #fcf622;
    color: #000;
    text-decoration: none;
    font-weight: 900;
    font-size: 14px;
    border-radius: 35px;
    transition: transform 0.3s;
}

.fleet-btn:hover {
    text-decoration: underline #111111;
    color: #111111;
    background: #fff;
}

/* Responsive Mobile */
@media (max-width: 900px) {
    .fleet-container {
        flex-direction: column;
        height: auto;
    }

    .fleet-col {
        flex: 1 0 100px;
        border-right: none;
        border-bottom: 1px solid #222;
    }

    .side-bar {
        width: 100%;
        height: 100px;
        padding: 0;
        align-items: center;
    }

    .vert-text {
        writing-mode: horizontal-tb;
        transform: rotate(0);
    }

    .fleet-col.active {
        flex-direction: column;
    }

    .content-inner h2 {
        font-size: 40px;
    }

    .category-label {
        font-size: 10px;
    }

    .main-content {
        padding: 15px;
    }

    .fleet-para {
        font-weight: 300 !important;

    }
}

.rfaq-section {

    background: #111111;
    padding: 50px 20px;
    font-family: Arial;

}



.rfaq-container {

    max-width: 1200px;
    margin: auto;

}



/* header */

.rfaq-header {

    text-align: center;
    margin-bottom: 50px;

}



.rfaq-title {

    color: white;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

}



.rfaq-title span {

    width: 60px;
    height: 3px;
    background: #fcf622;

}



.rfaq-sub {

    color: #9ca3af;
    margin-top: 15px;

}



/* grid */

.rfaq-grid {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;

}


@media(max-width:768px) {

    .rfaq-grid {

        grid-template-columns: 1fr;

    }

    .apf-grid,
    .sts-grid {
        padding: 5px;
    }

    .sts-section,
    .apf-section {
        padding: 50px 5px;
    }

}



/* item */

.rfaq-item {

    border: 1px solid #333333;
    margin-bottom: 15px;
    overflow: hidden;

}



.rfaq-question {

    width: 100%;
    background: none;
    border: none;
    color: white;
    padding: 20px;
    text-align: left;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;

}



.rfaq-icon {

    background: #333333;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fcf622;
    font-size: 20px;

}



.rfaq-answer {

    max-height: 0;
    overflow: hidden;
    transition: .4s;
    color: #9ca3af;
    padding: 0 20px;

}



.rfaq-item.active .rfaq-answer {

    max-height: 200px;
    padding: 20px;

}


button:focus {
    outline: none;
}


/* CSS FOR THE FOOTER */
.luz-footer {
    background-color: #111111;
    color: #ffffff;
    padding-top: 80px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-main {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 0 20px 60px;
}

/* Brand Styles */
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.logo-text {
    font-size: 38px;
    font-weight: 900;
    letter-spacing: 2px;
}

.intro-text {
    color: #888;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px;
}

.phone-link {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
}

/* Social Icons (The Yellow Circles) */
.social-row {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;

}
.social-circle img {
    width: 100%;
    height: 100%;

}

/* Column Text */
.footer-col h3 {
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 700;
}

.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 5px;
}

.footer-nav li a {
    color: #888;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.footer-nav li a:hover {
    color: #fcf622;
    padding-left: 5px;
    text-decoration: underline #fcf622;

}

/* Contact Details with Icons */
.detail-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
    color: #888;
    font-size: 15px;
}

.yellow-icon {
    color: #fcf622;
    font-size: 18px;
}
.yellow-icon img {
    width: 20px;
    height: 20px;
}

/* Bottom Bar Styling */
.footer-bottom {
    border-top: 1px solid #222;
    padding: 30px 20px;
}

.bottom-inner {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #666;
}

.bottom-links a {
    color: #666;
    text-decoration: none;
    margin-left: 25px;
    transition: 0.3s;
}

.bottom-links a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-main {
        grid-template-columns: 1fr;
    }

    .bottom-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}