/* ==========================================================
   VIP GTS Fleet Plugin — White / Light Theme
   ========================================================== */



.vip-fleet-wrap {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    padding: 60px 0;
    color: #1a1a1a;
}

/* ---- Category nav ---- */
.vip-fleet-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    list-style: none;
    margin: 0 0 50px;
    padding: 0;
}

.vip-fleet-categories li a {
    display: inline-block;
    padding: 10px 28px;
    border: 2px solid #b8922a;
    color: #b8922a;
    border-radius: 30px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.25s, color 0.25s;
}

.vip-fleet-categories li a:hover {
    background: #b8922a;
    color: #fff;
}

/* ---- Section heading ---- */
.vip-fleet-section {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.vip-fleet-section h3 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    color: #111;
    margin-bottom: 36px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e8e8e8;
    position: relative;
}

.vip-fleet-section h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #b8922a;
}

/* ---- Grid ---- */
.vip-fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* ---- Card ---- */
.vip-fleet-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.vip-fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(184,146,42,0.15);
    border-color: #b8922a;
}

/* ---- Image ---- */
.vip-fleet-img-wrap {
    overflow: hidden;
    height: 200px;
    background: #f5f5f5;
}

.vip-fleet-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.vip-fleet-card:hover .vip-fleet-img {
    transform: scale(1.04);
}

/* ---- Card body ---- */
.vip-fleet-card-body {
    padding: 20px;
}

.vip-fleet-card-body .card-title {
    color: #111;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 12px;
    line-height: 1.4;
}

/* ---- Meta (passengers / bags) ---- */
.vip-fleet-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.vip-fleet-meta span {
    color: #555;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.vip-fleet-meta i {
    color: #b8922a;
}

/* ---- Buttons ---- */
.vip-fleet-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.vip-btn-quote {
    background: linear-gradient(135deg, #b8922a, #d4a93e);
    color: #fff !important;
    padding: 9px 18px;
    border-radius: 6px;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: opacity 0.25s;
    border: none;
    cursor: pointer;
}

.vip-btn-quote:hover {
    opacity: 0.88;
}

.vip-btn-details {
    color: #b8922a !important;
    padding: 9px 14px;
    border: 1.5px solid #b8922a;
    border-radius: 6px;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background 0.25s, color 0.25s;
}

.vip-btn-details:hover {
    background: #b8922a;
    color: #fff !important;
}

/* ---- Notice ---- */
.vip-fleet-notice {
    text-align: center;
    color: #888;
    padding: 40px;
    font-size: 15px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .vip-fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .vip-fleet-grid {
        grid-template-columns: 1fr;
    }
    .vip-fleet-categories li a {
        padding: 8px 18px;
        font-size: 12px;
    }
    .vip-fleet-section h3 {
        font-size: 20px;
    }
}
