/* Fleet Card Styles */
.fleet-browse__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
}

.fleet-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.fleet-card__image-container {
    position: relative;
    width: 100%;
    padding-top: 66.66%; /* 3:2 aspect ratio */
    overflow: hidden;
}

.fleet-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fleet-card:hover .fleet-card__image {
    transform: scale(1.05);
}

.fleet-card__badge--combo {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff6b6b;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.fleet-card__content {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    flex-grow: 1;
}

.fleet-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.fleet-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.fleet-card__quick-tags {
    display: flex;
    gap: 0.5rem;
}

.quick-tag {
    background-color: #f4f4f4;
    color: #666;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.fleet-card__pricing-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.pricing-compact-item {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    padding: 5px 10px;
    border-radius: 4px;
}

.pricing-compact-item .duration {
    font-size: 0.8rem;
    color: #666;
    margin-right: 0.5rem;
}

.pricing-compact-item .price {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.fleet-card__actions {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
}

.btn-primary {
    background-color: #1565c0; /* Deep ocean blue */
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg, 
        transparent, 
        rgba(255,255,255,0.3), 
        transparent
    );
    transition: all 0.5s ease;
}

.btn-primary:hover {
    background-color: #0d47a1; /* Darker ocean blue */
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(3px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .fleet-browse__grid {
        grid-template-columns: 1fr;
    }
}

/* Section Header Styles */
.section-header {
    position: relative;
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 0 15px;
}

.section-tag-container {
    display: flex;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #1565c0; /* Deep ocean blue */
    position: relative;
    padding: 5px 10px;
    border-radius: 4px;
    background-color: rgba(21, 101, 192, 0.1); /* Soft blue background */
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0d47a1; /* Darker ocean blue */
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.section-line {
    width: 80px;
    height: 4px;
    background-color: #1565c0; /* Deep ocean blue */
    margin: 1rem auto;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.section-line::before,
.section-line::after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 20px;
    background-color: #1565c0; /* Deep ocean blue */
    border-radius: 2px;
    transition: all 0.3s ease;
}

.section-line::before {
    left: -30px;
    transform: skew(-30deg);
}

.section-line::after {
    right: -30px;
    transform: skew(30deg);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-line {
        width: 60px;
    }
} 