/* Fleet Section Stilleri */
.fleet {
    background: #fefefe;
}

.fleet-subtitle {
    text-align: center;
    color: #4c9fd4;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.yacht-card {
    background: #fefefe;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 36, 79, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #e8f0f7;
    position: relative;
}

.yacht-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4c9fd4, #00244f);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.yacht-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 36, 79, 0.15);
    border-color: transparent;
}

.yacht-card:hover::before {
    opacity: 1;
}

.yacht-image {
    height: 300px;
    overflow: hidden;
    background: #e8f0f7;
}

.yacht-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.yacht-card:hover .yacht-image img {
    transform: scale(1.08);
}

.yacht-info {
    padding: 1rem;
}

.yacht-info h3 {
    font-size: 1rem;
    color: #00244f;
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.yacht-category {
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 0.8rem;
}

.yacht-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.3rem 0.5rem;
    margin-bottom: 0.8rem;
    padding: 0.7rem 0;
    border-top: 1px solid #e8f0f7;
    border-bottom: 1px solid #e8f0f7;
}

.yacht-spec-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    color: #555;
}

.yacht-spec-item span {
    font-weight: 500;
}

.yacht-contact {
    font-size: 0.95rem;
    font-weight: 700;
    color: #00244f;
    margin-bottom: 0.7rem;
}

.yacht-buttons {
    display: flex;
    gap: 0.5rem;
}

.yacht-btn-detail {
    background: #00244f;
    color: #fefefe;
    padding: 0.45rem 0;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
    display: block;
}

.yacht-btn-detail:hover {
    background: #4c9fd4;
}

.yacht-btn-whatsapp {
    background: #4c9fd4;
    color: #fff;
    padding: 0.45rem 0;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1.6;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yacht-btn-whatsapp:hover {
    background: #3a8ec0;
}

.yacht-hidden {
    display: none;
}

.fleet-more {
    text-align: center;
    margin-top: 2.5rem;
}

.fleet-more-btn {
    background: #00244f;
    color: #fefefe;
    padding: 0.8rem 2.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    border: none;
}

.fleet-more-btn:hover {
    background: #4c9fd4;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(76, 159, 212, 0.4);
}

/* Responsive */
@media (max-width: 1200px) {
    .fleet-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .yacht-image {
        height: 220px;
    }

    .yacht-info {
        padding: 1rem;
    }

    .yacht-info h3 {
        font-size: 1rem;
    }

    .yacht-contact {
        font-size: 0.95rem;
        margin-bottom: 0.7rem;
    }

    .yacht-btn-detail,
    .yacht-btn-whatsapp {
        font-size: 0.8rem;
        padding: 0.45rem 0;
    }
}

@media (max-width: 480px) {
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .yacht-image {
        height: 200px;
    }
}
