/* ========================================
   PREMIUM HOMEPAGE SECTIONS
   BHighClass - Dark Luxury Theme
   ======================================== */

/* ========================================
   SECTION 1: PREMIUM FLEET SPOTLIGHT
   ======================================== */
.fleet-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, var(--background-dark) 0%, #120303 100%);
    overflow: hidden;
}

.fleet-scroll-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.fleet-scroll-track {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0 30px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.fleet-scroll-track::-webkit-scrollbar { display: none; }

.fleet-card {
    flex: 0 0 340px;
    background: linear-gradient(180deg, #1A0808 0%, #0a0a0a 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.15);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
}
.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(197, 160, 89, 0.15), 0 10px 25px rgba(0,0,0,0.8);
    border-color: var(--primary-gold);
}

/* Glassmorphism Shine */
.fleet-card::before {
    content: '';
    position: absolute;
    top: 0; left: -150%;
    width: 50%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transform: skewX(-25deg);
    z-index: 10;
    transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
}
.fleet-card:hover::before { left: 150%; }

.fleet-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.fleet-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.fleet-card:hover .fleet-card-img img { transform: scale(1.1); }

.fleet-card-badge {
    position: absolute;
    top: 15px; right: 15px;
    background: linear-gradient(135deg, rgba(0, 180, 0, 0.9), rgba(0, 130, 0, 0.9));
    color: #fff;
    font-family: 'Kanit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 180, 0, 0.3);
    display: flex; align-items: center; gap: 5px;
}
.fleet-card-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: #90EE90;
    border-radius: 50%;
    animation: pulseDot 1.5s infinite;
}
@keyframes pulseDot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.fleet-card-category {
    position: absolute;
    top: 15px; left: 15px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    color: var(--primary-gold);
    font-family: 'Kanit', sans-serif;
    font-size: 10px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.fleet-card-body {
    padding: 22px 25px 25px;
}
.fleet-card-title {
    font-family: 'Kanit', sans-serif;
    color: var(--primary-gold);
    font-size: 20px;
    margin: 0 0 8px 0;
    letter-spacing: 1px;
}
.fleet-card-location {
    color: var(--text-gray);
    font-family: 'Kanit', sans-serif;
    font-size: 13px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.fleet-card-location i { color: #A01010; }
.fleet-card-price {
    font-family: 'Kanit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}
.fleet-card-unit {
    color: var(--text-gray);
    font-family: 'Kanit', sans-serif;
    font-size: 13px;
    margin-left: 5px;
    font-weight: 400;
}

.fleet-scroll-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}
.fleet-scroll-btn {
    width: 50px; height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.3);
    background: rgba(26, 8, 8, 0.8);
    color: var(--primary-gold);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex; align-items: center; justify-content: center;
}
.fleet-scroll-btn:hover {
    background: var(--primary-gold);
    color: #000;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
}

.fleet-view-all-link {
    display: block;
    text-align: center;
    margin-top: 30px;
}

/* ========================================
   SECTION 2: TRUST COUNTERS
   ======================================== */
.counter-section {
    padding: 80px 20px;
    background: #000;
    position: relative;
    overflow: hidden;
}
.counter-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    opacity: 0.5;
}
.counter-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    opacity: 0.5;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.counter-item {
    text-align: center;
    padding: 30px 15px;
    position: relative;
}
.counter-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(197, 160, 89, 0.3), transparent);
}

.counter-icon {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.1), rgba(59, 0, 0, 0.3));
    border: 1px solid rgba(197, 160, 89, 0.25);
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    color: var(--primary-gold);
    transition: all 0.4s ease;
}
.counter-item:hover .counter-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.2);
    border-color: var(--primary-gold);
}

.counter-number {
    font-family: 'Kanit', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 5px;
    line-height: 1;
}

.counter-label {
    font-family: 'Kanit', sans-serif;
    font-size: 14px;
    color: var(--text-gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .counter-item:nth-child(2)::after { display: none; }
    .counter-number { font-size: 36px; }
}

/* ========================================
   SECTION 3: SEAMLESS JOURNEY
   ======================================== */
.journey-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #120303 0%, var(--background-dark) 100%);
}

.journey-timeline {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.journey-step {
    flex: 1;
    text-align: center;
    padding: 0 25px;
    position: relative;
}

.journey-step-number {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2A0A0A, #0a0a0a);
    border: 2px solid rgba(197, 160, 89, 0.3);
    margin: 0 auto 25px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Kanit', sans-serif;
    font-size: 32px;
    color: var(--primary-gold);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}
.journey-step:hover .journey-step-number {
    border-color: var(--primary-gold);
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.3);
    transform: scale(1.1);
}

.journey-step-icon {
    font-size: 28px;
}

/* Connector line between steps */
.journey-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -5%;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, rgba(197, 160, 89, 0.4), rgba(197, 160, 89, 0.1));
    z-index: 1;
}

.journey-step h4 {
    font-family: 'Kanit', sans-serif;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.journey-step p {
    color: var(--text-gray);
    font-family: 'Kanit', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .journey-timeline {
        flex-direction: column;
        gap: 40px;
    }
    .journey-step:not(:last-child)::after { display: none; }
    .journey-step { padding: 0 10px; }
}

/* ========================================
   SECTION 4: ELITE MEMBERSHIP — ULTRA PREMIUM
   ======================================== */
.elite-section {
    padding: 120px 20px;
    background: linear-gradient(160deg, #1A0808 0%, #000 40%, #0a0505 70%, #120808 100%);
    position: relative;
    overflow: hidden;
}

/* Animated ambient glow orbs */
.elite-section::before {
    content: '';
    position: absolute;
    top: -200px; left: 30%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.06) 0%, transparent 70%);
    pointer-events: none;
    animation: eliteOrb1 8s ease-in-out infinite;
}
.elite-section::after {
    content: '';
    position: absolute;
    bottom: -200px; right: 20%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(160, 16, 16, 0.05) 0%, transparent 70%);
    pointer-events: none;
    animation: eliteOrb2 10s ease-in-out infinite;
}
@keyframes eliteOrb1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(50px, 30px) scale(1.2); opacity: 1; }
}
@keyframes eliteOrb2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    50% { transform: translate(-40px, -20px) scale(1.1); opacity: 0.8; }
}

.elite-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.elite-content {
    flex: 1;
    min-width: 300px;
}

.elite-content h2 {
    font-size: 38px;
    color: var(--text-light);
    margin-bottom: 10px;
    letter-spacing: 3px;
    line-height: 1.3;
}
.elite-content h2 span {
    background: linear-gradient(135deg, #c5a059, #e8d5a3, #c5a059);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gold decorative line under title */
.elite-title-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
    margin-bottom: 20px;
    position: relative;
}
.elite-title-line::before {
    content: '';
    position: absolute;
    left: 0; top: -2px;
    width: 6px; height: 6px;
    background: var(--primary-gold);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(197, 160, 89, 0.5);
}

.elite-content > p {
    color: var(--text-gray);
    font-family: 'Kanit', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.elite-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 35px;
}

.elite-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 22px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.04), rgba(10, 5, 5, 0.6));
    border: 1px solid rgba(197, 160, 89, 0.1);
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}
/* Shimmer sweep on hover */
.elite-feature-item::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(197, 160, 89, 0.06), transparent);
    transform: skewX(-20deg);
    transition: 0.6s;
    pointer-events: none;
}
.elite-feature-item:hover::before { left: 150%; }
.elite-feature-item:hover {
    border-color: rgba(197, 160, 89, 0.35);
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.08), rgba(30, 10, 10, 0.6));
    transform: translateX(8px);
    box-shadow: 0 4px 25px rgba(197, 160, 89, 0.1);
}

/* Step number */
.elite-feature-number {
    font-family: 'Kanit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: rgba(197, 160, 89, 0.25);
    flex-shrink: 0;
    letter-spacing: 1px;
    min-width: 22px;
}
.elite-feature-item:hover .elite-feature-number {
    color: rgba(197, 160, 89, 0.6);
}

.elite-feature-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.15), rgba(100, 10, 10, 0.2));
    border: 1px solid rgba(197, 160, 89, 0.25);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--primary-gold);
    font-size: 20px;
    transition: all 0.3s ease;
}
.elite-feature-item:hover .elite-feature-icon {
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.25);
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.25), rgba(100, 10, 10, 0.3));
}

.elite-feature-text {
    flex: 1;
}
.elite-feature-text h5 {
    color: var(--text-light);
    font-family: 'Kanit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
    letter-spacing: 0.5px;
}
.elite-feature-text p {
    color: var(--text-gray);
    font-family: 'Kanit', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* Direct Contact CTA */
.elite-direct-contact {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 5px;
}

.elite-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    border: 1px solid rgba(197, 160, 89, 0.4);
    border-radius: 30px;
    color: var(--primary-gold);
    font-family: 'Kanit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.elite-phone-btn i {
    font-size: 14px;
    animation: phoneRing 2s ease-in-out infinite;
}
@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-10deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-5deg); }
    50% { transform: rotate(0deg); }
}
.elite-phone-btn:hover {
    background: rgba(197, 160, 89, 0.1);
    border-color: var(--primary-gold);
    box-shadow: 0 0 25px rgba(197, 160, 89, 0.15);
    transform: translateY(-2px);
}

.elite-or-text {
    font-family: 'Kanit', sans-serif;
    font-size: 13px;
    color: var(--text-gray);
    letter-spacing: 0.5px;
}

/* ===== THE ELITE CTA BOX — SHOWSTOPPER ===== */
.elite-cta-box {
    flex: 0 0 420px;
    background: linear-gradient(160deg, rgba(50, 15, 15, 0.7), rgba(15, 5, 5, 0.9), rgba(30, 10, 10, 0.6));
    backdrop-filter: blur(30px);
    border: 1px solid transparent;
    border-radius: 24px;
    padding: 55px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.9),
        0 0 60px rgba(197, 160, 89, 0.06),
        inset 0 1px 0 rgba(197, 160, 89, 0.15);
}

/* Animated rotating border glow */
.elite-cta-box::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    border-radius: 26px;
    background: conic-gradient(
        from 0deg,
        transparent 0%,
        rgba(197, 160, 89, 0.4) 10%,
        transparent 20%,
        transparent 50%,
        rgba(197, 160, 89, 0.3) 60%,
        transparent 70%
    );
    z-index: -1;
    animation: rotateBorder 6s linear infinite;
}
@keyframes rotateBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Inner background (fixes border glow) */
.elite-cta-box::after {
    content: '';
    position: absolute;
    top: 1px; left: 1px; right: 1px; bottom: 1px;
    border-radius: 23px;
    background: linear-gradient(160deg, rgba(50, 15, 15, 0.95), rgba(10, 5, 5, 0.98), rgba(25, 8, 8, 0.95));
    z-index: -1;
}

/* Crown with breathing glow */
.elite-cta-crown {
    font-size: 70px;
    color: var(--primary-gold);
    margin-bottom: 25px;
    display: block;
    position: relative;
    z-index: 1;
    animation: crownGlow 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(197, 160, 89, 0.4));
}
@keyframes crownGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 15px rgba(197, 160, 89, 0.3));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 35px rgba(197, 160, 89, 0.6));
        transform: scale(1.05);
    }
}

.elite-cta-title {
    font-family: 'Kanit', sans-serif;
    font-size: 28px;
    letter-spacing: 5px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #d4b36a, #f0e0b0, #c5a059, #e8d5a3);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 4s ease-in-out infinite;
}
@keyframes goldShimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.elite-cta-desc {
    font-family: 'Kanit', sans-serif;
    color: rgba(200, 200, 200, 0.8);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

/* Premium CTA Button with shimmer */
.elite-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 45px;
    background: linear-gradient(135deg, #c5a059, #d4b36a, #b8923d);
    color: #000;
    font-family: 'Kanit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border-radius: 35px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 
        0 8px 25px rgba(197, 160, 89, 0.35),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
/* Button shimmer sweep */
.elite-cta-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: btnShimmer 3s ease-in-out infinite;
    pointer-events: none;
}
@keyframes btnShimmer {
    0% { left: -100%; }
    50% { left: 150%; }
    100% { left: 150%; }
}
.elite-cta-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(197, 160, 89, 0.5),
        0 0 50px rgba(197, 160, 89, 0.15);
    background: linear-gradient(135deg, #d4b36a, #e8d5a3, #c5a059);
}

/* Members social proof */
.elite-cta-members {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}
.elite-cta-members-avatars {
    display: flex;
}
.elite-cta-members-avatars img {
    width: 34px; height: 34px;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
    margin-left: -8px;
    object-fit: cover;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(197, 160, 89, 0.2);
}
.elite-cta-members-avatars img:first-child { margin-left: 0; }
.elite-cta-members-avatars img:hover {
    transform: scale(1.2) translateY(-3px);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.5);
    z-index: 10;
}
.elite-cta-members-text {
    font-family: 'Kanit', sans-serif;
    font-size: 13px;
    color: var(--text-gray);
}
.elite-cta-members-text strong {
    color: var(--primary-gold);
    font-weight: 700;
}

/* Decorative floating sparkle particles */
.elite-cta-box .sparkle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-gold);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}
.elite-cta-box .sparkle-1 {
    width: 3px; height: 3px;
    top: 20%; left: 15%;
    animation: sparkleFloat 4s ease-in-out infinite;
}
.elite-cta-box .sparkle-2 {
    width: 2px; height: 2px;
    top: 60%; right: 12%;
    animation: sparkleFloat 5s ease-in-out 1s infinite;
}
.elite-cta-box .sparkle-3 {
    width: 4px; height: 4px;
    top: 35%; right: 25%;
    animation: sparkleFloat 6s ease-in-out 2s infinite;
}
.elite-cta-box .sparkle-4 {
    width: 2px; height: 2px;
    top: 75%; left: 25%;
    animation: sparkleFloat 4.5s ease-in-out 0.5s infinite;
}
.elite-cta-box .sparkle-5 {
    width: 3px; height: 3px;
    top: 15%; right: 18%;
    animation: sparkleFloat 5.5s ease-in-out 1.5s infinite;
}
@keyframes sparkleFloat {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
    25% { opacity: 0.8; transform: translateY(-10px) scale(1); }
    50% { opacity: 0.4; transform: translateY(-20px) scale(0.8); }
    75% { opacity: 0.9; transform: translateY(-8px) scale(1.2); }
}

/* Decorative line ornament */
.elite-cta-ornament {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    margin: 20px auto;
    position: relative;
    z-index: 1;
}
.elite-cta-ornament::before {
    content: '';
    position: absolute;
    top: -3px; left: 50%; transform: translateX(-50%);
    width: 7px; height: 7px;
    background: var(--primary-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.5);
}

@media (max-width: 1024px) {
    .elite-container {
        flex-direction: column;
    }
    .elite-cta-box {
        flex: auto;
        width: 100%;
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .fleet-card { flex: 0 0 290px; }
    .fleet-card-img { height: 180px; }
    .elite-section { padding: 80px 20px; }
    .elite-content h2 { font-size: 30px; }
    .elite-cta-box { padding: 40px 25px; flex: auto; }
    .elite-cta-crown { font-size: 55px; }
    .elite-cta-title { font-size: 22px; letter-spacing: 3px; }
}

