/* ==========================================
   SINGLE KART PAGE
========================================== */
.kart-hero{
    position:relative;
    width:100%;
    min-height:370px;
    height:520px;
    overflow:hidden;
    background:#000;
    margin-top: 110px;
}

.hero-content,
.hero-content .container-fluid{
    box-sizing:border-box;
}

.hero-image{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
}

.hero-image img{
    width:100%;
    height:100%;
    /*object-fit:cover;*/
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg, rgba(0,0,0,.98) 0%, rgba(0,0,0,.98) 18%, rgba(0,0,0,.88) 30%, rgba(0,0,0,.55) 48%, rgba(0,0,0,.24) 64%, rgba(0,0,0,0) 100%);
}

.hero-content{
    position:relative;
    z-index:5;
    display:flex;
    align-items:center;
    padding:50px 30px;
}

.hero-content .container-fluid{
    width:100%;
    max-width:660px;
}

.hero-content h1,
.hero_title{
    color:#fff;
    font-size:64px;
    font-weight:900;
    line-height:0.92;
    text-transform:uppercase;
    margin:0 0 8px;
    letter-spacing:-1px;
}

.hero-content h3,
.hero-subtitle{
    color:#e30613;
    font-size: 46px;
    font-weight:800;
    text-transform:uppercase;
    margin:0 0 24px;
    line-height:1;
    letter-spacing:-0.02em;
}

.hero-points {
    list-style:none;
    margin:0;
    padding:0;
}

.hero-points li {
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:14px;
    color:#fff;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    line-height:1.2;
}

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

.hero-points li i {
    width:24px;
    min-width:24px;
    font-size:22px;
    line-height:1;
    color:#e30613;
    stroke-width:1.5;
}

@media(max-width:991px){
    .kart-hero{
        height:320px;
    }

    .hero-image img{
        object-position:82% center;
    }

    .hero-content{
        padding:0 24px;
    }

    .hero-content h1,
    .hero_title{
        font-size:48px;
    }

    .hero-content h3,
    .hero-subtitle{
        font-size:36px;
        margin-bottom:20px;
    }

    .hero-points li {
        font-size:13px;
        gap:12px;
    }
}

@media(max-width:767px){
    .kart-hero{
        min-height:300px;
        height:auto;
        padding-bottom:24px;
        margin-top: 80px;
    }

    .hero-image img{
        object-position:92% center;
    }

    .hero-content{
        align-items:flex-end;
        padding:24px;
    }

    .hero-content .container-fluid{
        max-width:100%;
    }

    .hero-content h1,
    .hero_title{
        font-size:34px;
    }

    .hero-content h3,
    .hero-subtitle{
        font-size:24px;
        margin-bottom:18px;
    }

    .hero-points li {
        font-size:13px;
        gap:10px;
        margin-bottom:12px;
    }
}



/* ==========================================
   READY TO BOOK
========================================== */

/* Ready to Book */
.ready-book-section{
    background:transparent;
}
.kart-calendar-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e30613;
    border-radius: 5px;
    color: #e30613;
}

.kart-calendar-icon i {
    font-size: 42px;
}
.ready-book-box{
    background:#0d0d0d;
    border:1px solid rgba(255,255,255,.12);
    /*border-radius:8px;*/
    padding:28px 35px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    box-shadow:0 0 20px rgba(0,0,0,.25);
}

.ready-left{
    display:flex;
    align-items:center;
    gap:20px;
}


.ready-content h2{
    margin:0;
    color:#fff;
    font-size:34px;
    line-height:1;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1px;
}

.ready-content p{
    margin-top:10px;
    color:#d8d8d8;
    font-size:19px;
    line-height:1.5;
    max-width:450px;
}

.location-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:18px;

    background:#ef1b1b;
    color:#fff;
    text-decoration:none;

    padding:18px 42px;

    border-radius:6px;

    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;

    transition:.3s;
}

.location-btn span{
    font-size:20px;
    transition:.3s;
}

.location-btn:hover{
    background:#c60000;
    color:#fff;
}

.location-btn:hover span{
    transform:translateX(5px);
}

/* Responsive */

@media(max-width:991px){

    .ready-book-box{
        flex-direction:column;
        text-align:center;
        gap:25px;
    }

    .ready-left{
        flex-direction:column;
    }

    .ready-content p{
        max-width:100%;
    }

}

@media(max-width:767px){

    .ready-content h2{
        font-size:26px;
    }

    .location-btn{
        width:100%;
    }

}

/* ==========================================
   INTRO SECTION
========================================== */

.kart-intro-section{
    padding:100px 0;
    text-align:center;
}

.intro-small{
    color:#e10600;
    text-transform:uppercase;
    font-weight:700;
    letter-spacing:2px;
    display:block;
    margin-bottom:15px;
}

.intro-header h2{
    font-size:58px;
    line-height:1.1;
    text-transform:uppercase;
    font-weight:800;
    margin-bottom:30px;
}

.intro-content{
    max-width:900px;
    margin:0 auto;
    font-size:20px;
    line-height:1.8;
}

/* ==========================================
   FEATURES
========================================== */
.kart-intro-section{
    padding:90px 0;
    background:#fff;
}

.intro-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 60px;
}

.intro-small{
    display:block;
    color:#e31b23;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:10px;
}

.intro-title{
    font-size:46px;
    font-weight:800;
    color:#222;
    text-transform:uppercase;
    line-height:1.2;
    margin:0;
}

.intro-divider{
    width:70px;
    height:3px;
    background:#e31b23;
    margin:18px auto 25px;
}

.intro-content{
    color:#555;
    font-size:17px;
    line-height:1.8;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    margin-top:40px;
}

.feature-item{
    text-align:center;
    padding:0 30px;
    position:relative;
}

.feature-item:not(:last-child)::after{
    content:"";
    position:absolute;
    right:0;
    top:10px;
    width:1px;
    height:170px;
    background:#e5e5e5;
}
.kart-progress-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}

.feature-icon {
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.feature-icon:last-child {
    border-right: none;
}

.feature-icon i {
    color: #ed1c24;
    font-size: 32px;
    line-height: 1;
}

.feature-icon span {
    color: #111;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}
.feature-icon{
    margin-bottom:20px;
}

.feature-icon .et-pb-icon{
    font-size:36px;
    color:#e31b23;
    line-height:1;
}

.feature-item h3{
    font-size:18px;
    font-weight:700;
    text-transform:uppercase;
    color:#222;
    margin-bottom:15px;
}

.feature-item p{
    color:#666;
    font-size:15px;
    line-height:1.8;
    margin:0;
}

@media(max-width:991px){

    .feature-grid{
        grid-template-columns:repeat(2,1fr);
        gap:40px;
    }

    .feature-item::after{
        display:none;
    }

}

@media(max-width:767px){

    .intro-title{
        font-size:32px;
    }

    .feature-grid{
        grid-template-columns:1fr;
    }

}

/* ==========================================
   SPECIFICATION
========================================== */
.kart-specification {
    /*padding: 70px 0;*/
    background: #fff;
}

.kart-spec-wrapper {
    display: flex;
    align-items: stretch;
    /*border-radius: 8px;*/
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.kart-spec-image {
    flex: 1;
}

.kart-spec-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.kart-spec-card {
    width: 48%;
    background: #111;
    color: #fff;
    padding: 25px 30px;
}

.kart-spec-card h3 {
    margin: 0 0 18px;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
}

.kart-spec-card table {
    width: 100%;
    border-collapse: collapse;
}

.kart-spec-card table tr td {
    padding: 9px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.kart-spec-card table tr:last-child td {
    border-bottom: none;
}

.kart-spec-card table td:first-child {
    width: 42%;
    color: #cfcfcf;
    font-weight: 500;
}

.kart-spec-card table td:last-child {
    color: #fff;
    font-weight: 600;
}

/* Mobile */

@media (max-width: 768px) {

    .kart-spec-wrapper {
        flex-direction: column;
    }

    .kart-spec-card {
        width: 100%;
    }

    .kart-spec-image img {
        height: 260px;
    }

}

/* ==========================================
   LOCATIONS
========================================== */

.location-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.location-card{
    display:block;
    padding:25px;
    background:#fff;
    border-radius:12px;
    text-decoration:none;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
}

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

/* ==========================================
   MOBILE
========================================== */

@media(max-width:991px){

    .hero-content h1{
        font-size:55px;
    }

    .hero-content h3{
        font-size:24px;
    }

    .ready-book-box{
        flex-direction:column;
        gap:30px;
        text-align:center;
    }

    .feature-grid{
        grid-template-columns:repeat(2,1fr);
        gap:40px;
    }

    .feature-item{
        border:none;
    }

    .spec-grid{
        grid-template-columns:1fr;
    }

    .location-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:767px){

    .kart-hero{
        height:650px;
    }

    .hero-content h1{
        font-size:40px;
    }

    .intro-header h2{
        font-size:34px;
    }

    .feature-grid{
        grid-template-columns:1fr;
    }
}
