/* assets/css/sections/tradition.css */
.tradition-fleet-redesign {
    padding: 120px 0;
    background-color: #ffffff;
    position: relative;
    overflow-x: hidden;
}

.tf-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.tf-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.75rem;
    color: var(--color-primary);
    letter-spacing: 1.5px;
    margin-bottom: 30px;
}

.pulse-dot {
    width: 10px; height: 10px;
    background: var(--color-action);
    border-radius: 50%;
    animation: tf-pulse 2s infinite;
}

@keyframes tf-pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 94, 0, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(255, 94, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 94, 0, 0); }
}

.tf-title-new {
    font-size: clamp(2.2rem, 5vw, 3.5rem) !important;
    line-height: 1.1 !important;
    font-weight: 900 !important;
    color: #0f172a;
    margin-bottom: 35px !important;
    letter-spacing: -0.04em !important;
}

.text-gradient {
    background: linear-gradient(90deg, var(--color-primary), #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tf-highlight-text {
    font-size: 1.25rem !important;
    line-height: 1.6;
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 20px;
}

.tf-secondary-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 40px;
}

.tf-features-row {
    display: flex;
    gap: 24px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tf-feature-pill {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 200px;
}

.tf-feature-icon {
    width: 52px; height: 52px;
    background: #eff6ff;
    color: var(--color-primary);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.tf-feature-info strong {
    display: block;
    font-size: 1.15rem;
    color: #0f172a;
    font-weight: 800;
}

.tf-feature-info span {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-premium-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    color: #0f172a;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.btn-premium-link i {
    color: var(--color-action);
    transition: transform 0.3s ease;
}

.btn-premium-link:hover { color: var(--color-primary); }
.btn-premium-link:hover i { transform: translateX(8px); }

.fleet-slider-viewport-new {
    position: relative;
    width: 100%;
    border-radius: 48px;
    overflow: hidden;
    box-shadow: 0 40px 100px -20px rgba(15, 23, 42, 0.2);
}

.fleet-slider-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.fleet-slider-track::-webkit-scrollbar { 
    display: none;
}

.fleet-slide-single {
    min-width: 100%;
    height: 580px;
    scroll-snap-align: start;
}

.fleet-slide-single img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.fleet-dots-new {
    position: absolute;
    bottom: 40px;
    left: 40px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.fleet-dot-new {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.fleet-dot-new.active {
    background: #fff;
    width: 35px;
    border-radius: 10px;
}

.fleet-floating-label {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.85rem;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.fleet-floating-label i { color: var(--color-action); }

@media (max-width: 1100px) {
    .tf-layout-grid { grid-template-columns: 1fr; gap: 60px; text-align: center; }
    .tf-badge-premium, .tf-features-row, .tf-footer-link { justify-content: center; }
    .fleet-slide-single { height: 400px; }
    .fleet-dots-new { left: 50%; transform: translateX(-50%); }
}

@media (max-width: 576px) {
    .tradition-fleet-redesign { padding: 60px 0; }
    .tf-highlight-text { font-size: 1.1rem !important; }
    .tf-features-row { flex-direction: column; gap: 15px; }
    .fleet-slider-viewport-new { border-radius: 24px; }
    .fleet-slide-single { height: 300px; }
    .fleet-floating-label { top: 15px; right: 15px; font-size: 0.75rem; padding: 8px 15px; }
}