/* =========================
   FLEET PAGE STYLES
========================= */

/* Import base styles from main style.css */
@import url('style.css');

/* Page Header Styles */
.page-header {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--matte-black) 0%, var(--dark-gray) 100%);
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-accent), transparent);
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 15px;
}

.page-title span {
    color: var(--gold-accent);
}

.page-subtitle {
    color: var(--soft-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--soft-gray);
}

.breadcrumb a:hover {
    color: var(--gold-accent);
}

.breadcrumb span {
    color: var(--gold-accent);
}

/* Fleet Filters */
.fleet-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    background: var(--dark-gray);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--white);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold-accent);
    color: var(--matte-black);
    border-color: var(--gold-accent);
}

/* Fleet Grid */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 380px);
    gap: 40px;
    margin-bottom: 80px;
    justify-content: center;
}

.vehicle-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(13, 13, 13, 0.95));
    backdrop-filter: blur(20px);
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid rgba(221, 186, 94, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    max-width: 380px;
}

.vehicle-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--gold-accent);
    box-shadow: 0 30px 60px rgba(221, 186, 94, 0.3);
}

.vehicle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-accent), var(--gold-light), var(--gold-accent));
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.vehicle-card:hover::before {
    transform: scaleX(1);
}

/* Vehicle Image */
.vehicle-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* BMW 7 Series specific image positioning */
.bmw-7-series .vehicle-image img {
    object-position: center 80%;
}

.vehicle-card:hover .vehicle-image img {
    transform: scale(1.15);
}

.vehicle-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-dark));
    color: var(--matte-black);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 20px rgba(221, 186, 94, 0.4);
    z-index: 2;
}

/* Vehicle Content */
.vehicle-content {
    padding: 35px;
    position: relative;
    z-index: 2;
}

.vehicle-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.vehicle-card:hover .vehicle-name {
    color: var(--gold-accent);
}

/* Vehicle Specifications */
.vehicle-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.vehicle-spec {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.9rem;
    background: rgba(221, 186, 94, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(221, 186, 94, 0.2);
    transition: all 0.3s ease;
}

.vehicle-spec i {
    color: var(--gold-accent);
    font-size: 0.85rem;
}

.vehicle-card:hover .vehicle-spec {
    background: rgba(221, 186, 94, 0.15);
    border-color: rgba(221, 186, 94, 0.4);
}

/* Vehicle Description */
.vehicle-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

/* Vehicle Footer */
.vehicle-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid rgba(221, 186, 94, 0.2);
}

.vehicle-price {
    font-size: 1.1rem;
    color: var(--white);
}

.vehicle-price strong {
    font-size: 1.4rem;
    color: var(--gold-accent);
    font-weight: 700;
}

/* Vehicle Button */
.vehicle-btn {
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-dark));
    color: var(--matte-black);
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(221, 186, 94, 0.3);
}

.vehicle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(221, 186, 94, 0.4);
    background: linear-gradient(135deg, var(--gold-light), var(--gold-accent));
}

/* Fleet Features */
.fleet-features {
    margin-bottom: 25px;
}

.fleet-features h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--white);
}

.fleet-feature-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fleet-feature-list li {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-accent);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Fleet Action */
.fleet-action {
    display: flex;
    gap: 15px;
    align-items: center;
}

.fleet-cta {
    flex: 1;
}

.fleet-view-details {
    color: var(--gold-accent);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.fleet-view-details:hover {
    color: var(--gold-light);
    transform: translateX(5px);
}

/* Fleet CTA Section */
.fleet-cta-section {
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-dark));
    color: var(--matte-black);
    padding: 80px 0;
    text-align: center;
    margin: 80px 0;
    border-radius: 20px;
}

.fleet-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.fleet-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.fleet-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.fleet-cta-buttons .btn {
    min-width: 200px;
}

.fleet-cta-buttons .btn-secondary {
    background: transparent;
    color: var(--matte-black);
    border: 2px solid var(--matte-black);
}

.fleet-cta-buttons .btn-secondary:hover {
    background: var(--matte-black);
    color: var(--gold-accent);
}

/* CTA Banner */
.cta-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D4AF37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
}

.cta-title span {
    color: var(--gold-accent);
    position: relative;
}

.cta-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-accent);
    opacity: 0.5;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-banner .btn {
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.cta-banner .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* Responsive Design */
@media (max-width: 968px) {
    .fleet-grid {
        grid-template-columns: repeat(2, 350px);
        gap: 30px;
    }
    
    .vehicle-card {
        max-width: 350px;
    }
    
    .vehicle-specs {
        gap: 15px;
    }
    
    .vehicle-spec {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
}

@media (max-width: 768px) {
    .fleet-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .vehicle-card {
        max-width: 100%;
    }
    
    .vehicle-image {
        height: 240px;
    }
    
    .vehicle-content {
        padding: 30px;
    }
    
    .vehicle-name {
        font-size: 1.6rem;
    }
    
    .vehicle-specs {
        flex-direction: column;
        gap: 12px;
    }
    
    .vehicle-footer {
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }
    
    .vehicle-btn {
        width: 100%;
        padding: 14px 24px;
    }
    
    .vehicle-price {
        text-align: center;
    }
    
    .vehicle-badge {
        font-size: 0.7rem;
        padding: 8px 14px;
    }
    
    .fleet-cta-section {
        padding: 60px 30px;
        margin: 60px 0;
    }
    
    .fleet-cta-content h2 {
        font-size: 2rem;
    }
    
    .fleet-cta-content p {
        font-size: 1.1rem;
    }
    
    .fleet-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .fleet-cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-banner {
        padding: 70px 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .cta-banner .btn {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .vehicle-content {
        padding: 25px;
    }
    
    .vehicle-name {
        font-size: 1.5rem;
    }
    
    .vehicle-desc {
        font-size: 0.9rem;
    }
    
    .vehicle-price {
        font-size: 1rem;
    }
    
    .vehicle-price strong {
        font-size: 1.3rem;
    }
    
    .cta-banner {
        padding: 50px 0;
    }
    
    .cta-title {
        font-size: 1.75rem;
        margin-bottom: 15px;
    }
    
    .cta-text {
        font-size: 0.95rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .cta-banner .btn {
        padding: 14px 30px;
        font-size: 0.95rem;
    }
}
